I have a branch called dev
where I put some code for ejb changes and committed it to github, but the code didnt work, so to preserve the work, I created a branch out of dev
called ejb_change
and pushed to github.
I reverted the code in dev
branch and committed more codes in dev
branch and now I want to merge the ejb_change
branch to dev
branch.
But when I do a git merge ejb_change
/ raise Pull Request, git is telling there are no change to merge. I am not able to understand
How do I put the ejb_change
changes on top of current dev
branch