Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 1155bda

Browse files
Reordering some fields
1 parent 9e9dcd1 commit 1155bda

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/GitHub.Api/Git/IRepository.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,15 @@ public interface IRepository : IEquatable<IRepository>
5757
/// Gets the current branch of the repository.
5858
/// </summary>
5959
GitBranch? CurrentBranch { get; }
60-
// GitStatus CurrentStatus { get; }
60+
int CurrentAhead { get; }
61+
int CurrentBehind { get; }
62+
List<GitStatusEntry> CurrentChanges { get; }
6163
GitRemote[] Remotes { get; }
6264
GitBranch[] LocalBranches { get; }
6365
GitBranch[] RemoteBranches { get; }
6466
List<GitLock> CurrentLocks { get; }
6567
string CurrentBranchName { get; }
6668
List<GitLogEntry> CurrentLog { get; }
67-
int CurrentAhead { get; }
68-
int CurrentBehind { get; }
69-
List<GitStatusEntry> CurrentChanges { get; }
7069

7170
event Action<CacheUpdateEvent> LogChanged;
7271
event Action<CacheUpdateEvent> StatusChanged;

0 commit comments

Comments
 (0)