various bugfixes

This commit is contained in:
Moreno Razzoli 2021-10-07 20:48:24 +02:00
parent 93b2a726bb
commit e57dfca6db
4 changed files with 7 additions and 7 deletions

View file

@ -77,7 +77,7 @@ git checkout --detach main
[win]
# 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]

View file

@ -38,7 +38,7 @@ echo "Ti sei appena svegliato.
Non indossi biancheria intima.
Indossi pantaloni
Indossi pantaloni.
Non indossi la maglia.

View file

@ -72,7 +72,7 @@ git branch -D main
[win]
# 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.
test "$(git log --pretty=%P -n 1 HEAD | wc -w)" -ge 2

View file

@ -3,7 +3,7 @@ cards = revert push
[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]
@ -15,7 +15,7 @@ echo "questo va bene
?" > text
git add .
git commit -m fine
git commit -m bene
echo "questo va bene
anche questo va bene
@ -49,6 +49,6 @@ git branch -u team/main main
[win team]
# 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.
git show main^:text | grep -q "veramente sbaglaito"
git show main^:text | grep -q "veramente sbagliato"