Branch

作者: OoYoO | 来源:发表于2019-07-12 09:31 被阅读0次

    Branch 的使用

    $ git branch #查看本地分支
    $ git branch -r #查看远程分支
    $ git branch -a #查看所有分支
    $ git branch -vv #查看本地分支关联的远程分支

    $ git branch br_name #创建本地分支
    $ git branch -d br_name #删除本地分支
    $ git push --delete origin br_name删除远程分支

    $ git checkout -b branch_name origin/br_name创建对应远程分支的本地分支

    $ git branch -m old_branch new_branch # 重命名分支

    *重命名远程分支,就是先删除远程分支,再重命名本地分支,最后提交一个远程分支

    $ git push --set-upstream origin new_branchgit push -u origin new_branch 创建新的远程分支,并将本地分支与远程分支建立关联(To push the current branch and set the remote as upstream)

    remote命令跟踪多个远程分支
    重新跟踪远程文件直接修改
    $ git remote origin set-url URL
    先删除再添加
    删除 $ git remote rm origin

    前面带*号的代表你当前工作目录所处的分支

    相关文章

      网友评论

          本文标题:Branch

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