We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9c4468 commit d161084Copy full SHA for d161084
src/git/git.ts
@@ -348,7 +348,7 @@ export class Git {
348
}
349
350
static stash_push(repoPath: string, pathspecs: string[], message?: string) {
351
- const params = [`stash`, `push`];
+ const params = [`stash`, `push`, `-u`];
352
if (message) {
353
params.push(`-m`);
354
params.push(message);
@@ -358,7 +358,7 @@ export class Git {
358
359
360
static stash_save(repoPath: string, message?: string) {
361
- const params = [`stash`, `save`, `--include-untracked`];
+ const params = [`stash`, `save`, `-u`];
362
363
364
0 commit comments