mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-21 13:20:30 +08:00
fix: missing .Quoted() for stash message
Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
@@ -32,7 +32,7 @@ namespace SourceGit.Commands
|
||||
builder.Append("stash push --include-untracked ");
|
||||
if (keepIndex)
|
||||
builder.Append("--keep-index ");
|
||||
builder.Append("-m ").Append(message).Append(" -- ");
|
||||
builder.Append("-m ").Append(message.Quoted()).Append(" -- ");
|
||||
|
||||
foreach (var c in changes)
|
||||
builder.Append(c.Path.Quoted()).Append(' ');
|
||||
|
||||
Reference in New Issue
Block a user