2021-09-14 17:03:17 +02:00
|
|
|
title = Problemi
|
2021-01-14 11:44:23 +01:00
|
|
|
cards = checkout add pull push commit-auto merge
|
2021-01-07 15:23:14 +01:00
|
|
|
|
|
|
|
[description]
|
|
|
|
|
2021-09-24 20:54:49 +02:00
|
|
|
Entrambi, tu ed il tuo amico, avete lavorato sullo stesso file e volete sincronizare!
|
2021-01-07 15:23:14 +01:00
|
|
|
|
|
|
|
[setup yours]
|
|
|
|
|
2021-09-14 17:03:17 +02:00
|
|
|
echo "Il capannone delle bici dovrebbe essere ???" > file
|
2021-01-07 15:23:14 +01:00
|
|
|
git add .
|
2021-09-14 17:03:17 +02:00
|
|
|
git commit -m "inizio"
|
2021-01-07 15:23:14 +01:00
|
|
|
|
|
|
|
git push -u friend main
|
|
|
|
|
2021-09-14 17:03:17 +02:00
|
|
|
echo "Il capannone delle bici dovrebbe essere verde" > file
|
2021-01-07 15:23:14 +01:00
|
|
|
|
|
|
|
[setup friend]
|
|
|
|
|
|
|
|
git checkout main
|
|
|
|
|
2021-09-24 20:54:49 +02:00
|
|
|
echo "Il capannone delle bici dovrebbe essere blu" > file
|
2021-09-14 17:03:17 +02:00
|
|
|
git commit -a -m "versione dell'amico"
|
2021-01-07 15:23:14 +01:00
|
|
|
|
|
|
|
[win]
|
|
|
|
|
2021-09-24 20:54:49 +02:00
|
|
|
# Fai il commit delle tue modifiche locali.
|
2021-01-07 15:23:14 +01:00
|
|
|
test "$(git status -s)" = ""
|
|
|
|
|
|
|
|
[win friend]
|
|
|
|
|
2021-09-24 20:54:49 +02:00
|
|
|
# Quarda il suggerimento dell'amico, trova un compromesso e rimandalo in dietro.
|
2021-04-12 16:23:10 +02:00
|
|
|
git rev-parse main^ && test "$(git rev-parse main^1^)" = "$(git rev-parse main^2^)"
|