Git 備忘録
ローカルファイルをGitHubにアップロードする リモートリポジトリの作成 Github WebでNew -> ... 例)リモートurl https://github.com/lovefool/Serial_bridge_SoftwareSerilal_ESP32_for_E220_JP.git ローカルリポジトリの作成 >git init >git add . >git commit -m"Initial commit" コマンドでローカルリポジトリとリモートリポジトリを紐付け >git remote add origin (リモートurl)」 >git remote add origin https://github.com/lovefool/Serial_bridge_SoftwareSerilal_ESP32_for_E220_JP.git ローカルリポジトリをリモートリポジトリへpush >git push origin master リポジトリーのブランチ master? main? git branch で調べる .gitignoreが反映されない時(現在これをやってもダメ~) # ファイル名を指定してインデックスから削除 git rm --cached < ファイル名 > # または、すべてのファイルをインデックスから削除(ファイルが複数ある場合はこれでもOK) git rm -r --cached . # あらためて add git add . # コミット git commit -m "除外設定を変更"