mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00
9 lines
143 B
C#
9 lines
143 B
C#
namespace SourceGit.Models
|
|
{
|
|
public enum DealWithLocalChanges
|
|
{
|
|
DoNothing,
|
|
StashAndReaply,
|
|
Discard,
|
|
}
|
|
}
|