当我跑:
git status
Run Code Online (Sandbox Code Playgroud)
我看到了这个:
rebase in progress; onto 9c168a5
You are currently rebasing branch 'master' on '9c168a5'.
(all conflicts fixed: run "git rebase --continue")
nothing to commit, working directory clean
Run Code Online (Sandbox Code Playgroud)
当我做:
ls `git rev-parse --git-dir` | grep rebase || echo no rebase
Run Code Online (Sandbox Code Playgroud)
我明白了:rebase-apply
我不能承诺起源.
git branch
Run Code Online (Sandbox Code Playgroud)
显示:
* (no branch, rebasing master)
develop
master
Run Code Online (Sandbox Code Playgroud)
我被卡住了.我不知道该怎么办?是否真的需要这么长时间才能改变?git rebase --continue什么都不做 我没有任何git状态..我只是在等待rebase.我能做什么?
UDATE:这是输出:git rebase --continue
Applying: no message
No changes - did you forget to use 'git add'?
If there is nothing …Run Code Online (Sandbox Code Playgroud)