美文网首页
git 分支管理

git 分支管理

作者: chanyi | 来源:发表于2020-04-21 14:43 被阅读0次

    新建分支v1.0.0

    git branch v1.0.0// 分支建立在本地
    git push origin v1.0.0//分支推到远程
    

    查看分支

    git branch // 查看本地分支
    git branch -a // 查看所有分支(远程和本地)
    

    删除分支

    git branch -r -d v1.0.0 // -r远程 -d删除
    或者使用
    git push origin --delete v1.0.0
    

    切换分支

    git checkout v1.0.0
    

    相关文章

      网友评论

          本文标题:git 分支管理

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