I am working in a team where we use feature branch for our work. This is the model
- there is a master branch
- a developer cuts the feature branch from master branch and work on it
- create a pull request(PR) from the feature branch once all changes are done
- once PR is approved, get it merged to master (there is some webUI on this)
I started working on a feature branch by creating it from master around a month ago. In between several developers worked on some feature and those got merged to master. Today when I tried to create the PR, I got an error message to resolve the conflict. This is what I did
1. git rebase origin/master
after I resolved the merge conflicts, this are the commands performed
git add .
Now when I run the command
git status
I see the following (features/branch-name|REBASE 1/1)
I am not sure what I should be doing next since doing git rebase --continue is not helping.
I am still looking for solution but kind of not sure what should be done next. Any pointer will be helpful.