Fix stash pop

This commit is contained in:
Krzysztof Cieślak
2017-06-20 23:11:47 +02:00
parent 13484ae98d
commit b5bf3535ef
2 changed files with 3 additions and 3 deletions

View File

@@ -849,7 +849,7 @@ export class Repository {
if (pop) {
args.push('pop');
if (index) {
args.push(`"stash{${index}}"`);
args.push(`stash@{${index}}`);
}
}