I’m stuck . I don’t know what to do? Does it really take this long to rebase? git rebase --continue doesn’t do anything. I don’t have anything in git status… I’m just waiting for the rebase. Here is the output No commands done.
Next commands to do (3 remaining commands):
pick d4cb07a4 RESTWS-802:Collapsible if statements should be merged (#465)
squash b25eab57 RESTWS-798:Parameterized messages should be used for logging (#466)
(use “git rebase --edit-todo” to view and edit)
You are currently editing a commit while rebasing branch ‘RESTWS-795’ on ‘55692106’.
(use “git commit --amend” to amend the current commit)
(use “git rebase --continue” once you are satisfied with your changes)
nothing to commit, working tree clean
What can I do?
@kdaud you are having two processes running concurrently basing on what am seeing on the logs. What if you first amend the commit by running git commit --amend then run git rebase --continue to proceed with squashing? Alternatively run git rebase --abort to to completely undo the rebase and begin the process a fresh.