I have dev-master branch & I have created new branch - feature_10 and started working on it for a feature. I have completed my task and then executed below command -
git add *.java
git commit -m "comment"
git checkout dev-master
git merge feature_10
git push origin feature_10
This commit is visible on repository (web) but I am not able to raise NEW MERGE REQUEST on web as the feature_10 branch is not listing in branch drop-down box.
I have executed wrong command steps, I should have 1st pushed the branch and then should executed merge command.
Now how to correct it ? Please advise ?