$ git switch main
$ git pull
$ git switch -c ブランチ名
今いるブランチの確認
git branch
ブランチの変更
git switch (ブランチ名)
ブランチの作成と移動
git switch -c (ブランチ名)
コミットするファイルを追加(ファイル名に . で一括追加)
git add (ファイル名)
コミット
git commit -m "(コミットメッセージ)"
コミットしたファイルをpush
git push origin (ブランチ名)
ローカルのコードを最新にする(mainブランチで)
git pull