Open4
GitHub勉強

変更をGitHubに上げるコード
git status
git add .
git commit -m"コミットメッセージ"
git push

リモートレポジトリから変更をプル
git pull origin main

ブランチを作成
git branch branch-name
ブランチを切り替える
git checkout branch-name
ブランチを作成+ブランチを切り替え
git checkout -b branch-name

ブランチをマージする
git merge branch-name