我第一次做git rebase branchname
时,会得到一个包含冲突的文件列表。
然后我输入一些其他命令,它会输出很多输出,滚动我的输出。
我现在如何重现冲突文件列表?
我已尝试git rebase
和git 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
答案 0 :(得分:2)
当在rebase中间时,您可以运行git status
来查看所有文件的当前状态,包括有冲突的文件。