mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
9 lines
143 B
C#
9 lines
143 B
C#
namespace SourceGit.Models
|
|
{
|
|
public enum DealWithLocalChanges
|
|
{
|
|
DoNothing,
|
|
StashAndReaply,
|
|
Discard,
|
|
}
|
|
}
|