Merge conflict level

This commit is contained in:
Sebastian Morr 2020-09-15 09:55:09 +02:00
parent 7df489baf8
commit d71acccb38
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,3 @@
Try merging the two branches together!
git merge <otherbranch>

12
levels/conflict/start Normal file
View file

@ -0,0 +1,12 @@
echo ? > bikeshed_color
git add .
git commit -m "Initial commit"
echo green > bikeshed_color
git commit -a -m "My suggestion"
git switch -c alternative HEAD^
echo blue > bikeshed_color
git commit -a -m "This is way better"
git switch main