I have two branches: develop and master. I want to merge develop into master. When I follow
git checkout develop
git pull origin develop
git checkout master
git merge develop
git push origin master
Git spits error messages like
CONFLICT (content): Merge conflict in CHANGELOG.TXT
How to tell git to just put all the stuff from develop to master ignoring all conflicts?