mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
47 lines
862 B
Text
47 lines
862 B
Text
title = Ramo dalla scorta
|
|
cards = checkout commit-auto merge reset-hard
|
|
|
|
[description]
|
|
|
|
Se vuoi matenere tutte le modifiche ma non appartengono al ramo principale, puoi facilemnte creare un nuovo ramo dai cambiamenti dalle modifiche nascoste. Usando
|
|
git stash branch <branchname> <stash>
|
|
Se vuoi solo usare l'ultimo elemento della scorta puoi lasciare vuota l'opzione <stash>.
|
|
|
|
Crea un nuovo ramo dalle modifiche nascoste!!
|
|
|
|
---
|
|
tipp1
|
|
---
|
|
tipp2
|
|
---
|
|
tipp3
|
|
|
|
[setup]
|
|
|
|
echo "Torta di mele:" > recipe
|
|
|
|
git add .
|
|
git commit -m "creata una ricetta"
|
|
|
|
echo "- 4 Mele" >> recipe
|
|
|
|
git add .
|
|
git commit -m "Aggiunto ingredienti"
|
|
|
|
echo "- 500g Farina" >> recipe
|
|
git stash push
|
|
|
|
git checkout main
|
|
|
|
[win]
|
|
|
|
# Hai creato un nuovo ramo dai cambiamenti nascosti?
|
|
test "$(git branch --list| wc -l)" -ge 2
|
|
|
|
[actions]
|
|
|
|
|
|
|
|
[congrats]
|
|
|
|
I cambiamenti nascosti sono nel nuovo ramo! :)
|