mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
9 lines
143 B
C#
9 lines
143 B
C#
namespace SourceGit.Models
|
|
{
|
|
public enum DealWithLocalChanges
|
|
{
|
|
DoNothing,
|
|
StashAndReaply,
|
|
Discard,
|
|
}
|
|
}
|