mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
Git Stash notes
This commit is contained in:
parent
65ab503474
commit
665b3d1c94
1 changed files with 9 additions and 3 deletions
12
Git/git.md
12
Git/git.md
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue