I am using VSTS GIT source control repository and splitting my development into two branches, develop for on-going development, and then a master branch to release from.
Everything is going great except when I want to merge my develop branch into master, the pull-request completes, but it leaves the master branch '1 ahead' of the develop branch, and the VSTS GUI keeps prompting me to create a pull request from master back into develop. When I compare the branches there are of course no differences.
How can I merge my develop branch into master without GIT thinking master is now 1 ahead and making it look like everything is out of sync?
Thank you!
keeps prompting me to create a pull request from master into main
- you mean from develop into master? - mkrieger1