跟踪远程分支 如果用git push指令时,当前分支没有跟踪远程分支(没有和远程分支建立联系),那么就会git就会报错 There is no tracking information for the current branch. Please specify which branch you want to merge with. 因为当前分支没有追踪远程指定的分支的话,当前分支指定的版本快照不知道要作为服务器哪一个分支的版本快照的子节点.简单来说就是:不知道要推送给哪一个分支.那么如何建立…
2019-05-15 问题现象: 1.GIT本地目录无法pull下远程仓库已新增的内容,一直提示Already up to date 2.git log 命令显示没有远端的tag版本 $git log 3.本地tag数量比远程仓库多git tag 命令查看本地tag数 $git tag 原因分析: (待分析) 2019-05-16 解决方案: 同步远程tag: 1.删除本地全部tag: git tag -l|xargs git tag -d 2.更新下来远程全部tag: git fetch o…