Created
August 31, 2020 10:37
-
-
Save eromatiya/69906ab68b04642b1e2f713a87f589f6 to your computer and use it in GitHub Desktop.
Create git merge conflict
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
mkdir git-repo | |
cd git-repo | |
git init | |
touch my_code.sh | |
git add my_code.sh | |
echo "echo Hello" > my_code.sh | |
git commit -am 'initial' | |
git checkout -b new_branch | |
echo "echo \"Hello World\"" > my_code.sh | |
git commit -am 'first commit on new_branch' | |
git checkout master | |
echo "echo \"Hello World!\"" > my_code.sh | |
git commit -am 'second commit on master' | |
git merge new_branch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment