常用git 指令集

從本地建立一個新的分支並且切換過去
git checkout -b <new_branch_name> (<from_branch_name>)

建立一個新的 local branch,加上 --track 表示之後還會執行pull、push,Git 會記住和遠端分支對應關係
git checkout --track -b foobar origin/foobar

若已經建立好本地分支(使用git branch foobar), 要將此分支和遠端分支建立關聯 :
git branch -u origin/foobar foobar
成功的話會看到此訊息
Branch foobar set up to track remote branch foobar from origin.

刪除本地分支
git branch -d branch_name

修改commit訊息
git commit --amend

留言