mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 20:24:59 +00:00
19 lines
415 B
C#
19 lines
415 B
C#
namespace SourceGit.ViewModels
|
|
{
|
|
public class ConfirmCommitWithoutFiles
|
|
{
|
|
public ConfirmCommitWithoutFiles(WorkingCopy wc, bool autoPush)
|
|
{
|
|
_wc = wc;
|
|
_autoPush = autoPush;
|
|
}
|
|
|
|
public void Continue()
|
|
{
|
|
_wc.CommitWithoutFiles(_autoPush);
|
|
}
|
|
|
|
private readonly WorkingCopy _wc;
|
|
private bool _autoPush;
|
|
}
|
|
}
|