mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
enhance: reset commit message after a merge request has been aborted
This commit is contained in:
parent
1509b8ab70
commit
df66bacbd2
2 changed files with 7 additions and 3 deletions
|
@ -22,9 +22,9 @@ namespace SourceGit.ViewModels
|
||||||
Cmd = cmd;
|
Cmd = cmd;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Abort()
|
public bool Abort()
|
||||||
{
|
{
|
||||||
new Commands.Command()
|
return new Commands.Command()
|
||||||
{
|
{
|
||||||
WorkingDirectory = Repository,
|
WorkingDirectory = Repository,
|
||||||
Context = Repository,
|
Context = Repository,
|
||||||
|
|
|
@ -511,7 +511,11 @@ namespace SourceGit.ViewModels
|
||||||
if (_inProgressContext != null)
|
if (_inProgressContext != null)
|
||||||
{
|
{
|
||||||
SetWatcherEnabled(false);
|
SetWatcherEnabled(false);
|
||||||
await Task.Run(_inProgressContext.Abort);
|
var succ = await Task.Run(_inProgressContext.Abort);
|
||||||
|
if (succ && _workingCopy != null)
|
||||||
|
{
|
||||||
|
_workingCopy.CommitMessage = string.Empty;
|
||||||
|
}
|
||||||
SetWatcherEnabled(true);
|
SetWatcherEnabled(true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue