-
ファイルをステージングエリアに追加
git add ファイル名
-
ファイルをコミット
git commit -m "コミットメッセージ" -
ファイルをプッシュ
git push origin <branch-name>
Warning
現在いるブランチを確認してからやること!
git pullOR
git pull origin <branch-name>git fetchgit branchgit switch <branch-name>移動もする
git switch -c <branch-name>OR
移動しない
git branch <branch-name>