0


git创建本地分支并track跟踪远程分支

git创建本地分支并track跟踪远程分支

查看本地分支与远程分支的映射关系:

git branch -vv

查看远程都有什么分支:

git branch -r

在本地自动新建一个xxx分支,且自动track跟踪远程的同名xxx分支:

 git checkout --track origin/xxx

并自动切换到本地分支xxx


也可以直接:

git checkout -b 本地分支名xxx origin/远程分支名xxx

将本地已存在的分支与远程分支绑定、建立映射关系:

git branch --set-upstream-to=origin/xxx xxx

git自动pull同步远程若干分支与本地若干分支_git pull 远程分支和本地分支-CSDN博客文章浏览阅读376次。假设远程代码仓库有100个分支,而本地只有10个本地分支与远程分支一一对应,现在要保持本地的这个10个分支与远程一致,最笨的方法是checkout到每个分支,然后一个一个的 git pull origin。文章浏览阅读334次。git拉取远程所有分支/添加远程仓库。_git pull所有分支代码。git拉取远程所有分支/添加远程仓库_git pull所有分支代码-CSDN博客。_git pull 远程分支和本地分支https://blog.csdn.net/zhangphil/article/details/140296427

git强制删除本地分支 git branch -D_error: the branch 'dlx-test' is not fully merged. -CSDN博客文章浏览阅读722次。git branch -d 可以通过: git branch 查看所有本地分支及其名字,然后删除特定分支。git删除远程remote分支_git remote delete_zhangphil的博客-CSDN博客。git 命令如下:git push origin --delete_git remote delete。git删除本地分支_zhangphil的博客-CSDN博客。_error: the branch 'dlx-test' is not fully merged. if you are sure you want thttps://blog.csdn.net/zhangphil/article/details/132898432

标签: git

本文转载自: https://blog.csdn.net/zhangphil/article/details/141354019
版权归原作者 zhangphil 所有, 如有侵权,请联系我们删除。

“git创建本地分支并track跟踪远程分支”的评论:

还没有评论