1、git创建本地分支:git branch [name]
2、git删除本地分支:git branch -d [name]
3、git切换分支:git checkout [name]
4、git创建并切换到新的本地分支:git checkout -b [name]
5、git查看所有分支信息:git branch -a
1 | *master :本地分支, * 当前所在分支 |
6、git创建远程分支:git push origin [name]
(将本地新建的分支推送到远程)
7、git删除远程分支:git push origin --delete [name]
8、本地分支与远程分支建立关联:git branch --set-upstream-to remotes/origin/hexo
实例:将本地hexo分支的内容推送到远程hexo分支
1、新建并切换到本地hexo分支 :git branch hexo
2、将本地分支推送到远程分支:git push origin hexo
3、本地分支与远程分支关联: git branch --set-upstream-to remotes/origin/hexo
4、本地代码提交到版本库:git add . git commit -m "message"
5、拉取远程分支内容:git pull origin hexo
6、本地代码提交到远程分支:git push origin hexo
- 本文作者: Tsailor
- 本文链接: http://tsailor.github.io/2020/07/23/Git分支管理/
- 版权声明: 本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!