mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-12-22 20:32:38 +01:00
various bugfixes
This commit is contained in:
parent
93b2a726bb
commit
e57dfca6db
4 changed files with 7 additions and 7 deletions
|
@ -77,7 +77,7 @@ git checkout --detach main
|
||||||
[win]
|
[win]
|
||||||
|
|
||||||
# Ordina le tre ramificazioni in una e muovi il riferimento al ramo principale
|
# Ordina le tre ramificazioni in una e muovi il riferimento al ramo principale
|
||||||
{ git show main:you | grep "Mangi.*baguette"; } && { git show main:you | grep "Bevuto.*caffe"; } && { git show main:you | grep "Mangi.*ciambella"; } && { test "$(git log main --oneline | wc -l)" -eq 7; }
|
{ git show main:you | grep "Mangi.*baguette"; } && { git show main:you | grep "bevuto.*caffe"; } && { git show main:you | grep "Mangi.*ciambella"; } && { test "$(git log main --oneline | wc -l)" -eq 7; }
|
||||||
|
|
||||||
[congrats]
|
[congrats]
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ echo "Ti sei appena svegliato.
|
||||||
|
|
||||||
Non indossi biancheria intima.
|
Non indossi biancheria intima.
|
||||||
|
|
||||||
Indossi pantaloni
|
Indossi pantaloni.
|
||||||
|
|
||||||
Non indossi la maglia.
|
Non indossi la maglia.
|
||||||
|
|
||||||
|
|
|
@ -72,7 +72,7 @@ git branch -D main
|
||||||
[win]
|
[win]
|
||||||
|
|
||||||
# Crea una situazione dove consumi una baguette, un caffe e una ciambella.
|
# Crea una situazione dove consumi una baguette, un caffe e una ciambella.
|
||||||
{ git show HEAD:you | grep "Mangi.*baguette"; } && { git show HEAD:you | grep "Bevi.*coffe"; } && { git show HEAD:you | grep "Mangi.*donut"; }
|
{ git show HEAD:you | grep "Mangi.*baguette"; } && { git show HEAD:you | grep "Bevi.*caffe"; } && { git show HEAD:you | grep "Mangi.*ciambella"; }
|
||||||
|
|
||||||
# Crea (e spostati su) un commit di unione.
|
# Crea (e spostati su) un commit di unione.
|
||||||
test "$(git log --pretty=%P -n 1 HEAD | wc -w)" -ge 2
|
test "$(git log --pretty=%P -n 1 HEAD | wc -w)" -ge 2
|
||||||
|
|
|
@ -3,7 +3,7 @@ cards = revert push
|
||||||
|
|
||||||
[description]
|
[description]
|
||||||
|
|
||||||
Stavamo parlato di come annulare un commit e correggerlo. Questo ci aiuta solo quando non lo abbiamo già inviato al server remoto. Quando questo succede e vuoi annullare completamente l'effetto del commit la tua migliore opzione è `git revert`
|
Stavamo parlando di come annulare un commit e correggerlo. Questo ci aiuta solo quando non lo abbiamo già inviato al server remoto. Quando questo succede e vuoi annullare completamente l'effetto del commit la tua migliore opzione è `git revert`
|
||||||
|
|
||||||
[setup]
|
[setup]
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ echo "questo va bene
|
||||||
|
|
||||||
?" > text
|
?" > text
|
||||||
git add .
|
git add .
|
||||||
git commit -m fine
|
git commit -m bene
|
||||||
echo "questo va bene
|
echo "questo va bene
|
||||||
|
|
||||||
anche questo va bene
|
anche questo va bene
|
||||||
|
@ -49,6 +49,6 @@ git branch -u team/main main
|
||||||
[win team]
|
[win team]
|
||||||
|
|
||||||
# Il ramo main del Team non contiene più niente di sbagliato.
|
# Il ramo main del Team non contiene più niente di sbagliato.
|
||||||
! { git show main:text | grep -q "veramente sbaglaito"; }
|
! { git show main:text | grep -q "veramente sbagliato"; }
|
||||||
# e la cronologia non è stata modificata.
|
# e la cronologia non è stata modificata.
|
||||||
git show main^:text | grep -q "veramente sbaglaito"
|
git show main^:text | grep -q "veramente sbagliato"
|
||||||
|
|
Loading…
Reference in a new issue