2021-09-13 17:54:39 +02:00
|
|
|
title = Pop dalla 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
|
|
|
Quando hai nascosto le tue modifiche e vuoi riapplicarle nella tua directory di lavoro, puoi usare
|
2021-01-05 16:44:17 +01:00
|
|
|
git stash pop
|
2021-09-13 17:54:39 +02:00
|
|
|
Questo rimuoverà i cambiamenti dalla pila di scorta. Se voui anche mantenere le modifiche della pila di scorta usa
|
2021-01-05 16:44:17 +01:00
|
|
|
git stash apply
|
|
|
|
|
|
|
|
---
|
|
|
|
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
|
|
|
|
git checkout main
|
|
|
|
|
|
|
|
[win]
|
|
|
|
|
2021-09-13 17:54:39 +02:00
|
|
|
# Hai pop i cambiamenti dalla 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
|
|
|
Yay, hai riavuto i tuoi cambiamenti in dietro! :)
|