mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
feature<Dashboard>: auto delete .git/rebase-apply when there's no conflicts detected
This commit is contained in:
parent
cbdebee4c2
commit
7fecc471b0
1 changed files with 3 additions and 0 deletions
|
@ -398,6 +398,9 @@ namespace SourceGit.UI {
|
||||||
commits.LoadMergeMessage();
|
commits.LoadMergeMessage();
|
||||||
} else {
|
} else {
|
||||||
abortPanel.Visibility = Visibility.Collapsed;
|
abortPanel.Visibility = Visibility.Collapsed;
|
||||||
|
|
||||||
|
var rebaseApply = Path.Combine(repo.GitDir, "rebase-apply");
|
||||||
|
if (Directory.Exists(rebaseApply)) Directory.Delete(rebaseApply);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue