mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 12:45:00 +00:00
enhance: enable --index
option in git stash pop
command by default (#903)
This commit is contained in:
parent
cc5f3ebfa5
commit
6f407fb086
1 changed files with 2 additions and 2 deletions
|
@ -75,13 +75,13 @@ namespace SourceGit.Commands
|
|||
|
||||
public bool Apply(string name)
|
||||
{
|
||||
Args = $"stash apply -q {name}";
|
||||
Args = $"stash apply --index -q {name}";
|
||||
return Exec();
|
||||
}
|
||||
|
||||
public bool Pop(string name)
|
||||
{
|
||||
Args = $"stash pop -q {name}";
|
||||
Args = $"stash pop --index -q {name}";
|
||||
return Exec();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue