摘要: 用git pull来更新代码的时候,遇到了下面的问题: 1 2 3 4 error: Your local changes to the following files would be overwritten by merge: xxx/xxx/xxx.php Please, commit you 阅读全文
posted @ 2020-09-08 13:14 void9main 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 远程仓库 git clone 下来,当你执行 git branch,你只会看到 * master 并不会看到其他分支,即便远程仓库上有其他分支,使用 git branch -va 可以查看本地+远程分支列表 * master 0840594 merge master and 1.0.0 remote 阅读全文
posted @ 2020-09-08 13:13 void9main 阅读(1465) 评论(0) 推荐(0) 编辑
摘要: 1 现象 自己git merge --no-ff feature1.3.0 无法合并代码到develop,代码还是停留在feature1.3.0的分支 并提示一下错误 warning: refname 'feature1.3.0' is ambiguous. 2 解决方案 改个名字 git bran 阅读全文
posted @ 2020-09-08 13:12 void9main 阅读(546) 评论(0) 推荐(0) 编辑