mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
Fix line endings
This commit is contained in:
parent
0945c63ffa
commit
3e66852ee4
1 changed files with 6 additions and 6 deletions
12
Git/git.md
12
Git/git.md
|
@ -116,12 +116,12 @@ def load_reference(name_or_id):
|
|||
|
||||
### 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
|
||||
`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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue