mirror of
https://github.com/namibia/tips.git
synced 2024-11-15 17:47:12 +00:00
No need for git stash save
This commit is contained in:
parent
3fe8a233c0
commit
e849a6f24a
@ -426,11 +426,16 @@ git stash save --keep-index
|
||||
|
||||
## Saving current state including untracked files
|
||||
```sh
|
||||
git stash save -u
|
||||
git stash -u
|
||||
```
|
||||
|
||||
|
||||
__Alternatives:__
|
||||
```sh
|
||||
git stash save -u
|
||||
```
|
||||
|
||||
|
||||
```sh
|
||||
git stash save --include-untracked
|
||||
```
|
||||
|
@ -126,8 +126,8 @@
|
||||
"alternatives": ["git stash --keep-index", "git stash save --keep-index"]
|
||||
}, {
|
||||
"title": "Saving current state including untracked files",
|
||||
"tip": "git stash save -u",
|
||||
"alternatives": ["git stash save --include-untracked"]
|
||||
"tip": "git stash -u",
|
||||
"alternatives": ["git stash save -u", "git stash save --include-untracked"]
|
||||
}, {
|
||||
"title": "Saving current state with message",
|
||||
"tip": "git stash save <message>"
|
||||
|
Loading…
Reference in New Issue
Block a user