美文网首页
git分支管理

git分支管理

作者: 编程小火鸡 | 来源:发表于2018-11-14 08:58 被阅读0次

    1.新建本地分支

    $ git branch newbranch
    

    2.查看分支

    $ git branch
    

    输出:

    * master
      newbranch
    

    *代表当前所在的分支
    3.创建远程分支

    $ git push origin iss53
    

    4.删除本地分支

    $ git branch -d iss53
    
    1. 删除远程分支
    git push origin --delete [branchname]
    

    相关文章

      网友评论

          本文标题:git分支管理

          本文链接:https://www.haomeiwen.com/subject/dhmlfqtx.html