I am trying to simulate a simple merge conflict, having read about similar tasks on the website, my situation is slightly different.
Here are the steps that i am taking.
I have the develop branch
create Branch1 from develop branch
create Branch2 from develop branch
made changes on Branch1, stage and commit changes.
made changes on Branch2, stage and commit changes.
whilst checked out of Branch1, run the command git merge origin/Branch1 I get the message
git merge origin/feature/Branch1
Already up to date.
I am unsure as to what I am doing incorrectly here, the way the develop branch is setup, commits can only be made via a pull request, if i can illustrate a git conflict without the need for a pull request, that would be much simpler.