Created
February 3, 2017 08:23
-
-
Save chalstrick/90950f6f90a3ac70e1948aa77a71ab0b to your computer and use it in GitHub Desktop.
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
touch a b c | |
git add a b c | |
git commit -m init | |
git branch side | |
echo master >a | |
git commit -a -m m1 | |
git checkout side | |
echo side >b | |
git commit -a -m s1 | |
git merge --no-commit master | |
echo merge >c | |
git commit -a -m merge | |
git show |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment