神代レポート

Unity Xcode Android 関連のEtc...

2019-11-01から1ヶ月間の記事一覧

ListenAndServe(): listen tcp :8080: bind: address already in use. ~ Go httpサーバーを停止する方法 ~

Error内容 ListenAndServe(): listen tcp :8080: bind: address already in use 解決方法 1:以下のコマンドで8080ポートを使用しているプロセスを探しますlsof -iTCP:8080 -sTCP:LISTEN結果例:COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME__debug_…

自分用 Gitコマンド早見表

全追加・コミット・プッシュ git add --all git commit -m "comment" git push -u origin master 直前のコミット取り消し git reset --hard HEAD^ --hard:コミット取り消した上でワークディレクトリの内容も書き換えたい場合 --soft:ワークディレクトリの…

error: src refspec master does not match any【解決策】

Error内容 error: src refspec master does not match any error: failed to push some refs to 'https://source.developers.google.com/p/*****/r/*****' 解決方法 以下のコマンドを実行することで解決します! touch initial git add initial git commit -…

java.lang.RuntimeException: Unable to get provider android.support.v4.content.FileProvider【 解決方法 】

Error内容 java.lang.RuntimeException: Unable to get provider android.support.v4.content.FileProvider: java.lang.ClassNotFoundException: Didn't find class "android.support.v4.content.FileProvider" 解決方法 1 : paths.xmlを作成2 : AndroidM…