由于项目时间线比较长 git clone http://github.com/large-repository --depth 1克隆时只下载一条解决方案
当前分支无用 需要删除远端分支 保持远端结构清晰// 删除远程分支 git push origin --delete remoteBranchName参考》》》
首先查看远端分支有哪些git branch -a # 返回本地加远程的 远程别名默认为remote返回如下,[root@ecs-71300 shishai_admin_fe]# git branch -a * master remotes/origin/HEAD -> origin/master remotes/origin/demo remotes/origin/mastergit checkout -b 本地分支名 origin/远程分支名git fetch <远端仓库名> git checkout -b <本地分支名> <远端仓库名>/<分支名>参考文章 >>>
风里来
最后,我终于解放了我自己……