摘要: Git: There is no tracking information for the current branch. 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/sinat_36246371/article/details/79738782 阅读全文
posted @ 2019-02-19 17:45 wjj1013 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 如果要把当前分支合并到其他分支master 1.把当前自己分支的东西提交上去 git status git add -A git commit -m '注释' git push 2.首先要知道当前分支是谁 git branch -a 3.切换分支到master git checkout master 阅读全文
posted @ 2019-02-19 11:46 wjj1013 阅读(1996) 评论(0) 推荐(0) 编辑
摘要: 【Git】master合并分支时提示“Already up-to-date” 在使用Git把当前分支合并到master提示“Already up-to-date”,但当前分支和 master 分支代码不同步。 假设当前分支是:dev,主分支是:master。 解决方法: git checkout m 阅读全文
posted @ 2019-02-19 11:41 wjj1013 阅读(520) 评论(0) 推荐(0) 编辑