I get the following on git review
:
git review
You are about to submit multiple commits. This is expected if you are
submitting a commit that is dependent on one or more in-review
commits. Otherwise you should consider squashing your changes into one
commit before submitting.
The outstanding commits are:
2de3eef (HEAD -> AddingReleaseIndex) Adding index page for subrelease projects
d3dbc89 (Addingindex) Add index with submodules
Do you really want to submit the above commits?
Type 'yes' to confirm, other to cancel: no
Aborting.
I have many branches, each of which has a particular feature being implemented on it. I just want to send for review the commit on HEAD (2de3eef) and nothing else.
I found an article which says that I could use git cherry-pick to move a selected commit to another branch and send it for review from another branch. I dont want to send it for review through another branch, I want to send it via the same branch since its about a particular feature.
How do I get around this situation?