mirror of
https://github.com/namibia/tips.git
synced 2025-02-02 19:48:24 +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
|
## Saving current state including untracked files
|
||||||
```sh
|
```sh
|
||||||
git stash save -u
|
git stash -u
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
__Alternatives:__
|
__Alternatives:__
|
||||||
|
```sh
|
||||||
|
git stash save -u
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git stash save --include-untracked
|
git stash save --include-untracked
|
||||||
```
|
```
|
||||||
|
@ -126,8 +126,8 @@
|
|||||||
"alternatives": ["git stash --keep-index", "git stash save --keep-index"]
|
"alternatives": ["git stash --keep-index", "git stash save --keep-index"]
|
||||||
}, {
|
}, {
|
||||||
"title": "Saving current state including untracked files",
|
"title": "Saving current state including untracked files",
|
||||||
"tip": "git stash save -u",
|
"tip": "git stash -u",
|
||||||
"alternatives": ["git stash save --include-untracked"]
|
"alternatives": ["git stash save -u", "git stash save --include-untracked"]
|
||||||
}, {
|
}, {
|
||||||
"title": "Saving current state with message",
|
"title": "Saving current state with message",
|
||||||
"tip": "git stash save <message>"
|
"tip": "git stash save <message>"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user