Git Stash notes

This commit is contained in:
Marcello Lamonaca 2021-02-06 22:25:45 +01:00
parent 65ab503474
commit 665b3d1c94

View file

@ -100,9 +100,6 @@ def load_reference(name_or_id):
`git add <filename1 filename2 ...>`: add files to the staging area
`git add -p <files>`: interacively stage chuncks of a file
`git stash`: temporarily remove modifications to working directory (must be staged to be stashed)
`git stash pop`: recuperate stashed changes
`git blame <file>`: show who last edited which line
`git commit`: save the snapshot to the project history
@ -117,6 +114,15 @@ def load_reference(name_or_id):
`git bisect`: binary search history (e.g. for regressions)
### Stashes
`git stash [push -m|--message]`: add all changes to the stash (and provide message)
`git stash list` list all stashes
`git stash show [<stash>]`: show changes in the stash
`git stash pop`: restore last stash
`git stash drop [<stash>]`: remove a stash from the list
`git stash clear`: remove all stashes
### Remotes
`git remote`: list remotes