mirror of
https://github.com/sahinakkaya/til.git
synced 2024-11-21 16:19:37 +01:00
TIL: Stashing staged changes
This commit is contained in:
parent
850876aa17
commit
b0115bc2ba
9
git/stashing-staged-changes.md
Normal file
9
git/stashing-staged-changes.md
Normal file
@ -0,0 +1,9 @@
|
||||
As of Git 2.35 you can stash only staged changes with `--staged` option.
|
||||
|
||||
```
|
||||
$ git add foo
|
||||
$ git stash push --staged
|
||||
$ # You can also add a message with `-m`
|
||||
$ git stash push --staged -m "message"
|
||||
|
||||
```
|
Loading…
Reference in New Issue
Block a user