-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
31 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,16 @@ | ||
namespace RepoM.Api.Git; | ||
|
||
public class StatusCharacterMap | ||
public static class StatusCharacterMap | ||
{ | ||
private StatusCharacterMap() | ||
{ | ||
} | ||
public static string IdenticalSign => "\u2261"; | ||
|
||
public static StatusCharacterMap Instance { get; } = new StatusCharacterMap(); | ||
public static string NoUpstreamSign => "\u2302"; | ||
|
||
public string IdenticalSign => "\u2261"; | ||
public static string ArrowUpSign => "\u2191"; | ||
|
||
public string NoUpstreamSign => "\u2302"; | ||
public static string ArrowDownSign => "\u2193"; | ||
|
||
public string ArrowUpSign => "\u2191"; | ||
public static string EllipsesSign => "\u2026"; | ||
|
||
public string ArrowDownSign => "\u2193"; | ||
|
||
public string EllipsesSign => "\u2026"; | ||
|
||
public string StashSign => "\u205E"; | ||
public static string StashSign => "\u205E"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters