File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ internal BranchTrackingDetails(Repository repo, Branch branch)
31
31
/// <summary>
32
32
/// Gets the number of commits that exist in this local branch but don't exist in the tracked one.
33
33
/// <para>
34
- /// This property will return null if there is no tracked branch linked to this local branch.
34
+ /// This property will return <c>null</c> if this local branch has no upstream configuration
35
+ /// or if the upstream branch does not exist
35
36
/// </para>
36
37
/// </summary>
37
38
public virtual int ? AheadBy
@@ -42,7 +43,8 @@ public virtual int? AheadBy
42
43
/// <summary>
43
44
/// Gets the number of commits that exist in the tracked branch but don't exist in this local one.
44
45
/// <para>
45
- /// This property will return null if there is no tracked branch linked to this local branch.
46
+ /// This property will return <c>null</c> if this local branch has no upstream configuration
47
+ /// or if the upstream branch does not exist
46
48
/// </para>
47
49
/// </summary>
48
50
public virtual int ? BehindBy
@@ -53,8 +55,8 @@ public virtual int? BehindBy
53
55
/// <summary>
54
56
/// Gets the common ancestor of the local branch and its tracked remote branch.
55
57
/// <para>
56
- /// This property will return null if there is no tracked branch linked to this local branch ,
57
- /// or if either branch is an orphan.
58
+ /// This property will return <c> null</c> if this local branch has no upstream configuration ,
59
+ /// the upstream branch does not exist, or either branch is an orphan.
58
60
/// </para>
59
61
/// </summary>
60
62
public virtual Commit CommonAncestor
You can’t perform that action at this time.
0 commit comments