19 lines
450 B
C#
19 lines
450 B
C#
namespace Flawless.Client.Models;
|
|
|
|
public enum RepositoryResetMethod
|
|
{
|
|
/// <summary>
|
|
/// Tracked files will being reset, changes will being keep.
|
|
/// </summary>
|
|
Keep,
|
|
|
|
/// <summary>
|
|
/// Tracked files will being reset, changes will being merged.
|
|
/// </summary>
|
|
Soft,
|
|
|
|
/// <summary>
|
|
/// All files will being reset, changes will being reset, changes list will being cleaned.
|
|
/// </summary>
|
|
Hard,
|
|
} |