美文网首页
git的本地与远程操作

git的本地与远程操作

作者: gogoforit | 来源:发表于2017-04-29 19:00 被阅读0次

    删除本地分支

    git branch -d <branch-name>
    

    删除远程分支

    git push origin --delete <branch-name>
    

    打本地标签

    git tag <tag-name>
    

    将本地标签push到远程

    git push origin --tag
    

    把本地分支push到远程

    git push origin local-branch-name:remote-branch-name
    

    创建一个分支

    git branch son-branch mother-branch
    

    相关文章

      网友评论

          本文标题:git的本地与远程操作

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