Using intelliJ i am working on a feature branch, i wanted to integrate the changes my team did on master into my branch, but i messed it up.
I checked out master, from Git pop up i selected the feature branch and selected 'rebase current onto selected' thinking that this would have added the changes from master on top of feature branch, unfortunately it happened the opposite.
So what i would like to do now is to undo this rebase on master, i would like to bring master back to the latest head commit.
Any advice?
I read that rebasing creates a new commit but i think that that did not go through because i have conflicts, when from git command line i run git status
from master i see:
You are currently rebasing branch 'master' on 'FEATURE/....'.
(fix conflicts and then run "git rebase --continue")
(use "git rebase --skip" to skip this patch)
(use "git rebase --abort" to check out the original branch)
no changes added to commit (use "git add" and/or "git commit -a")