I am getting error as "Merge Conflicts" while trying to merge my development branch with master branch and my master branch is showing 38 commits behind development branch.
How to resolve this issue in GIT
I am getting error as "Merge Conflicts" while trying to merge my development branch with master branch and my master branch is showing 38 commits behind development branch.
How to resolve this issue in GIT
If you're alone and sure that's you won't lose anything important on master, try:
$ git checkout master
$ git pull origin
$ git merge -X theirs <developing-branch-name>