I am currently working on a branch and want to update it with master. So I tried doing a rebase.
current branch that I am workin on : crtdev
I tried doing rebase like,
git checkout crtdev
git rebase master
// used diff mergetool to solve merge issues
git rebase --continue
Now is says, Applying: "all commit messages that I have done in that branch"
But after that what needs to be done?
I checked the repo and there are no changes and when I said git status
, I see merged files appearing with filename.html.orig
-- edit
When I run a git rebase --continue
I get this message No rebase in progress?
By running Git status
I see this message
# On branch crtdev
# Your branch and 'origin/crtdev' have diverged,
# and have 33 and 8 different commits each, respectively.
# (use "git pull" to merge the remote branch into yours)
To complete the rebase, what needs to be done?