File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 131
131
}, {
132
132
"title" : " Saving current state of tracked files without commiting" ,
133
133
"tip" : " git stash" ,
134
- "alternatives" : [" git stash save " ]
134
+ "alternatives" : [" git stash push " ]
135
135
}, {
136
136
"title" : " Saving current state of unstaged changes to tracked files" ,
137
137
"tip" : " git stash -k" ,
138
- "alternatives" : [" git stash --keep-index" , " git stash save --keep-index" ]
138
+ "alternatives" : [" git stash --keep-index" , " git stash push --keep-index" ]
139
139
}, {
140
140
"title" : " Saving current state including untracked files" ,
141
141
"tip" : " git stash -u" ,
142
- "alternatives" : [" git stash save -u" , " git stash save --include-untracked" ]
142
+ "alternatives" : [" git stash push -u" , " git stash push --include-untracked" ]
143
143
}, {
144
144
"title" : " Saving current state with message" ,
145
- "tip" : " git stash save <message>"
145
+ "tip" : " git stash push -m <message>" ,
146
+ "alternatives" : [" git stash push --message <message>" ]
146
147
}, {
147
148
"title" : " Saving current state of all files (ignored, untracked, and tracked)" ,
148
149
"tip" : " git stash -a" ,
149
- "alternatives" : [" git stash --all" , " git stash save --all" ]
150
+ "alternatives" : [" git stash --all" , " git stash push --all" ]
150
151
}, {
151
152
"title" : " Show list of all saved stashes" ,
152
153
"tip" : " git stash list"
You can’t perform that action at this time.
0 commit comments