git从另一个repo合并更改

时间:2014-11-12 20:11:57

标签: git git-merge git-rebase

我继承了一些非常邋code的代码,所以我创建了一个新的repo并在大部分代码上运行了PHP_Beautifier和php-cs-fixer。我的同事们一直在对我们现有的回购做出自己的改变。现在我需要将这两个repos合并在一起。

我遇到的问题是运行这两个工具的源文件发生了大量更改。我试图将原来的回购改装成我的新回购,但是达到了说不再有冲突了。然而,git rebase - 继续没有做更多的事情,说明:

git rebase --continue
Applying: fixed minor typo
No changes - did you forget to use 'git add'?
If there is nothing left to stage, chances are that something else
already introduced the same changes; you might want to skip this patch.

When you have resolved this problem, run "git rebase --continue".
If you prefer to skip this patch, run "git rebase --skip" instead.
To check out the original branch and stop rebasing, run "git rebase --abort".

如果这是一个重复的问题我很抱歉,但我尝试了相关帖子中提到的各种方法,但没有任何效果。我迷失了采取什么方法。

1 个答案:

答案 0 :(得分:3)

这意味着自从解决冲突以来,Git发现与之前没有任何差异。简单地跳过这个rebase步骤是安全的。

git rebase --skip