Git 分支描述
注意
本文最后更新于 2023-11-13,文中内容可能已过时。
- 创建分支:
git branch [name]
- 切换分支:
git checkout <branch>
- 列出所有分支:
git branch -a
- 删除某个本地分支:
git branch -d [name]
- 提交分支到远端
git push –set-upstream origin <branch>
- 删除远程分支:
git push origin –delete <branch>
- 合并分支:
git checkout master; git merge fix1;
# 将 fix1 分支合并到 master 分支上