2021-09-13 17:54:39 +02:00
|
|
|
title = Pulire la scorta
|
2021-01-05 16:44:17 +01:00
|
|
|
cards = checkout commit-auto merge reset-hard
|
|
|
|
|
|
|
|
[description]
|
|
|
|
|
2021-09-13 17:54:39 +02:00
|
|
|
Se vuoi controllare la tua scorta, usa il comando
|
2021-01-05 16:44:17 +01:00
|
|
|
git stash list
|
2021-09-13 17:54:39 +02:00
|
|
|
|
|
|
|
Oh, non vuoi mantenere i tuoi cambiamenti nella scorta? C'è un modo per farlo? Poi vai avanti e pulisci la scorta con
|
2021-01-05 16:44:17 +01:00
|
|
|
git stash clear
|
2021-09-13 17:54:39 +02:00
|
|
|
Se vuoi solo scartare un certo elemento dalla scorta, puoi usare
|
2021-01-05 16:44:17 +01:00
|
|
|
git stash drop <stash>
|
|
|
|
|
2021-09-13 17:54:39 +02:00
|
|
|
Pulisci la tua pila di scorta!
|
2021-01-05 16:44:17 +01:00
|
|
|
|
|
|
|
---
|
|
|
|
tipp1
|
|
|
|
---
|
|
|
|
tipp2
|
|
|
|
---
|
|
|
|
tipp3
|
|
|
|
|
|
|
|
[setup]
|
|
|
|
|
2021-09-13 17:54:39 +02:00
|
|
|
echo "Torta di mele:" > recipe
|
2021-01-05 16:44:17 +01:00
|
|
|
|
|
|
|
git add .
|
2021-09-13 17:54:39 +02:00
|
|
|
git commit -m "creata una ricetta"
|
2021-01-05 16:44:17 +01:00
|
|
|
|
2021-09-13 17:54:39 +02:00
|
|
|
echo "- 4 Mele" >> recipe
|
2021-01-05 16:44:17 +01:00
|
|
|
|
|
|
|
git add .
|
2021-09-13 17:54:39 +02:00
|
|
|
git commit -m "Aggiunto ingredienti"
|
2021-01-05 16:44:17 +01:00
|
|
|
|
2021-09-13 17:54:39 +02:00
|
|
|
echo "- 500g Farina" >> recipe
|
2021-01-05 16:44:17 +01:00
|
|
|
git stash push
|
|
|
|
|
2021-09-13 17:54:39 +02:00
|
|
|
echo "- 200g Zucchero" >> recipe
|
2021-01-05 16:44:17 +01:00
|
|
|
git stash push
|
|
|
|
|
2021-09-13 17:54:39 +02:00
|
|
|
echo "- Pizzico di sale" >> recipe
|
2021-01-05 16:44:17 +01:00
|
|
|
git stash push
|
|
|
|
|
|
|
|
git checkout main
|
|
|
|
|
|
|
|
[win]
|
|
|
|
|
2021-09-13 17:54:39 +02:00
|
|
|
# Hai pulito la tua pila di scorta?
|
2021-01-05 16:44:17 +01:00
|
|
|
test "$(git stash list | wc -l)" -eq 0
|
|
|
|
|
|
|
|
[actions]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[congrats]
|
|
|
|
|
2021-09-13 17:54:39 +02:00
|
|
|
Pulito tutto! :)
|