Skip to content

Git 分支系列指令

tags: Git

新增分支

bash
git branch <XXXX>
git checkout -b <XXXX>

切換分支

bash
git checkout <XXXX>

刪除分支

bash
git branch -d <XXXX>

可參考:https://gitbook.tw/chapters/branch/using-branch.html