码迷,mamicode.com
首页 > 其他好文 > 详细

git创建、删除分支

时间:2019-02-11 13:03:27      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:ranch   checkout   本地   远程分支   style   none   audio   comment   isp   

 

//创建分支

git branch branchname

//创建并切换到新分支

git checkout -b branchname

//远程分支

git push origin branchname

//查看远程分支

git branch -r

//删除本地分支

git branch -d branchname

//删除远程分支

git push origin :branchname

 

git创建、删除分支

标签:ranch   checkout   本地   远程分支   style   none   audio   comment   isp   

原文地址:https://www.cnblogs.com/sea-stream/p/10361273.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!