this is my issue: I have 2 branch, master and deploy, I want work on master branch and on finish bring my changes to deploy branch and push it to remote repository. I tried this way:
git branch deploy now I have 2 branch, first commit on master branch:
git commit -a -m "first commit" bring the changes to deploy repository:
git merge deploy go to deploy branch:
git checkout deploy push the changes:
git push origin deploy but the merge command does not give me the expected result.
Any advice?
Thanks in advance!