mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-05 19:04:33 +01:00
33 lines
743 B
Text
33 lines
743 B
Text
title = Problemi
|
|
cards = checkout add pull push commit-auto merge
|
|
|
|
[description]
|
|
|
|
Entrambi, tu ed il tuo amicp, avete lavorato sullo stesso file e volete sincronizare!
|
|
|
|
[setup yours]
|
|
|
|
echo "Il capannone delle bici dovrebbe essere ???" > file
|
|
git add .
|
|
git commit -m "inizio"
|
|
|
|
git push -u friend main
|
|
|
|
echo "Il capannone delle bici dovrebbe essere verde" > file
|
|
|
|
[setup friend]
|
|
|
|
git checkout main
|
|
|
|
echo "Il capannone delle bici dovrebbe essere blue" > file
|
|
git commit -a -m "versione dell'amico"
|
|
|
|
[win]
|
|
|
|
# Invia le tue modifiche locali.
|
|
test "$(git status -s)" = ""
|
|
|
|
[win friend]
|
|
|
|
# Quarda il suggerimento dell'amico, fai un compromesso e rimandalo in dietro.
|
|
git rev-parse main^ && test "$(git rev-parse main^1^)" = "$(git rev-parse main^2^)"
|