mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2025-05-05 05:02:02 +02:00
some levels translated
This commit is contained in:
parent
331f08b899
commit
68577813c2
11 changed files with 156 additions and 159 deletions
levels/it_IT/stash
|
@ -1,11 +1,11 @@
|
|||
title = Pop from Stash
|
||||
title = Pop dalla scorta
|
||||
cards = checkout commit-auto merge reset-hard
|
||||
|
||||
[description]
|
||||
|
||||
When you stashed your changes and you want to apply them back to your current working directory, you can use
|
||||
Quando hai nascosto le tue modifiche e vuoi riapplicarle nella tua directory di lavoro, puoi usare
|
||||
git stash pop
|
||||
This will remove the changes from the stash stack. If you also want to keep the changes on the stash stack, use
|
||||
Questo rimuoverà i cambiamenti dalla pila di scorta. Se voui anche mantenere le modifiche della pila di scorta usa
|
||||
git stash apply
|
||||
|
||||
---
|
||||
|
@ -17,24 +17,24 @@ tipp3
|
|||
|
||||
[setup]
|
||||
|
||||
echo "Apple Pie:" > recipe
|
||||
echo "Torta di mele:" > recipe
|
||||
|
||||
git add .
|
||||
git commit -m "creating a recipe"
|
||||
git commit -m "creata una ricetta"
|
||||
|
||||
echo "- 4 Apples" >> recipe
|
||||
echo "- 4 Mele" >> recipe
|
||||
|
||||
git add .
|
||||
git commit -m "Adding ingredients"
|
||||
git commit -m "Aggiunto ingredienti"
|
||||
|
||||
echo "- 500g Flour" >> recipe
|
||||
echo "- 500g Farina" >> recipe
|
||||
|
||||
git stash push
|
||||
git checkout main
|
||||
|
||||
[win]
|
||||
|
||||
# Did you pop the changes from the stash stack?
|
||||
# Hai pop i cambiamenti dalla pila di scorta?
|
||||
test "$(git stash list | wc -l)" -eq 0
|
||||
|
||||
[actions]
|
||||
|
@ -43,4 +43,4 @@ test "$(git stash list | wc -l)" -eq 0
|
|||
|
||||
[congrats]
|
||||
|
||||
Yay, you got your changes back! :)
|
||||
Yay, hai riavuto i tuoi cambiamenti in dietro! :)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue