You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name = "relativePath">The relative path to the <see cref = "TreeEntry" /> from the <see cref = "Tip" /> working directory.</param>
49
55
/// <returns><c>null</c> if nothing has been found, the <see cref = "TreeEntry" /> otherwise.</returns>
50
-
publicTreeEntrythis[stringrelativePath]
56
+
publicvirtualTreeEntrythis[stringrelativePath]
51
57
{
52
58
get
53
59
{
@@ -74,31 +80,31 @@ public virtual bool IsRemote
74
80
/// <summary>
75
81
/// Gets the remote branch which is connected to this local one.
76
82
/// </summary>
77
-
publicBranchTrackedBranch
83
+
publicvirtualBranchTrackedBranch
78
84
{
79
85
get{returntrackedBranch.Value;}
80
86
}
81
87
82
88
/// <summary>
83
89
/// Determines if this local branch is connected to a remote one.
84
90
/// </summary>
85
-
publicboolIsTracking
91
+
publicvirtualboolIsTracking
86
92
{
87
93
get{returnTrackedBranch!=null;}
88
94
}
89
95
90
96
/// <summary>
91
97
/// Gets the number of commits, starting from the <see cref="Tip"/>, that have been performed on this local branch and aren't known from the remote one.
0 commit comments