Jak skrýt změny git

Příklady kódu

10
0

příkaz git stash clean

git stash clear
8
0

git stash pop jméno

git stash save "my_stash"
// Where "my_stash" is the stash name.

// Some more useful things to know: All the stashes are stored in a stack. Type:
git stash list
// This will list down all your stashes.

// To apply a stash and remove it from the stash stack, type:
git stash pop stash@{n}
5
0

git Zobrazit skrýš

git stash show -p stash@{1}
3
0

skrýš vymazat seznam

git stash clear // to clear the whole list
2
0

git skrýš použít konkrétní skrýš

git stash apply "stash@{n}"
or
git stash apply n
1
0

jak skrýt změny git

$ git stash
Saved working directory and index state WIP on master:
   2dfe283 Implement the new login box
HEAD is now at 2dfe283 Implement the new login box

V jiných jazycích

Tato stránka je v jiných jazycích

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................