Açıklaması şöyle
git stash : Değişiklikleri rafa kaldırır ve saklargit stash apply : Rafa kaldırılan değişiklikleri yeniden uygular
push seçeneği
Add tracked files to stash
push -u
Add tracked and untracked files to stash and perform git clean
push -a
Add tracked, untracked, and ignored files to stash and perform git clean
git stash list
View all stashed data
git stash list -p
View all stashed data with changes
git stash show -p <stashIndex>
View specific stashed data
git stash clear
Delete all stashes
git stash drop <stashIndex>
Delete a specific stash
git stash apply <stashIndex>
Apply a stash into the workspace
git stash pop <stashIndex>
Apply the topmost stash and delete it
git stash branch <branchName> <stashIndex>
Apply stash into a separate branch
Hiç yorum yok:
Yorum Gönder