git x branch - izudon/izudon.github.io GitHub Wiki

リモートブランチの設定

$ git remote add origin ssh://[email protected]:<port>/~/repos/xxxxx.git
$ git push --set-upstream origin main
$ git push

ブランチの確認・作成・移動

$ git branch
* master
$ git checkout -b topic
$ git branch
  master
* topic

マージの本質

git pull --rebase

⚠️ **GitHub.com Fallback** ⚠️