mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
29 lines
595 B
Text
29 lines
595 B
Text
[description]
|
|
|
|
You want to push your new commits to the server, but someone has already pushed their own changes.
|
|
|
|
In this situation, you need to pull first! Try that here - you'll have to resolve a merge conflict. Push your changes afterwards.
|
|
|
|
[congrats]
|
|
|
|
Good job! Here's some additional info: banana!
|
|
|
|
[setup yours]
|
|
|
|
echo fu > file
|
|
git add .
|
|
git commit -m "Initial commit"
|
|
git push -u origin main
|
|
|
|
echo fi > file
|
|
git commit -a -m "Fi is good"
|
|
|
|
[setup origin]
|
|
|
|
echo fa > file
|
|
git add .
|
|
git commit -a -m "Fa is good"
|
|
|
|
[win origin]
|
|
|
|
test "$(git rev-parse HEAD^1^)" = "$(git rev-parse HEAD^2^)"
|