如何让`git rebase`再次列出冲突的文件?

时间:2014-08-12 21:33:28

标签: git

我第一次做git rebase branchname时,会得到一个包含冲突的文件列表。

然后我输入一些其他命令,它会输出很多输出,滚动我的输出。

我现在如何重现冲突文件列表?

我已尝试git rebasegit rebase --continue,但两者都不会再次列出冲突文件。

$ git rebase                                                       
A rebase is in progress, try --continue, --skip or --abort.        
$ git rebase --continue                                            
You must edit all merge conflicts and then                         
mark them as resolved using git add                                
[hq6@rcmaster ramcloud] 2014-08-12 14:30:49                        

1 个答案:

答案 0 :(得分:2)

当在rebase中间时,您可以运行git status来查看所有文件的当前状态,包括有冲突的文件。