@@ -43,14 +43,14 @@ public static Tag ApplyTag(this IRepository repository, string tagName)
43
43
}
44
44
45
45
/// <summary>
46
- /// Creates a lightweight tag with the specified name. This tag will point at the <paramref name = "target " />.
46
+ /// Creates a lightweight tag with the specified name. This tag will point at the <paramref name = "objectish " />.
47
47
/// </summary>
48
48
/// <param name = "repository">The <see cref = "Repository" /> being worked with.</param>
49
49
/// <param name = "tagName">The name of the tag to create.</param>
50
- /// <param name = "target ">The canonical reference name or sha which should be pointed at by the Tag .</param>
51
- public static Tag ApplyTag ( this IRepository repository , string tagName , string target )
50
+ /// <param name = "objectish ">The revparse spec for the target object .</param>
51
+ public static Tag ApplyTag ( this IRepository repository , string tagName , string objectish )
52
52
{
53
- return repository . Tags . Add ( tagName , target ) ;
53
+ return repository . Tags . Add ( tagName , objectish ) ;
54
54
}
55
55
56
56
/// <summary>
@@ -66,16 +66,16 @@ public static Tag ApplyTag(this IRepository repository, string tagName, Signatur
66
66
}
67
67
68
68
/// <summary>
69
- /// Creates an annotated tag with the specified name. This tag will point at the <paramref name = "target " />.
69
+ /// Creates an annotated tag with the specified name. This tag will point at the <paramref name = "objectish " />.
70
70
/// </summary>
71
71
/// <param name = "repository">The <see cref = "Repository" /> being worked with.</param>
72
72
/// <param name = "tagName">The name of the tag to create.</param>
73
- /// <param name = "target ">The canonical reference name or sha which should be pointed at by the Tag .</param>
73
+ /// <param name = "objectish ">The revparse spec for the target object .</param>
74
74
/// <param name = "tagger">The identity of the creator of this tag.</param>
75
75
/// <param name = "message">The annotation message.</param>
76
- public static Tag ApplyTag ( this IRepository repository , string tagName , string target , Signature tagger , string message )
76
+ public static Tag ApplyTag ( this IRepository repository , string tagName , string objectish , Signature tagger , string message )
77
77
{
78
- return repository . Tags . Add ( tagName , target , tagger , message ) ;
78
+ return repository . Tags . Add ( tagName , objectish , tagger , message ) ;
79
79
}
80
80
81
81
/// <summary>
@@ -104,10 +104,10 @@ public static Branch CreateBranch(this IRepository repository, string branchName
104
104
/// </summary>
105
105
/// <param name = "repository">The <see cref = "Repository" /> being worked with.</param>
106
106
/// <param name = "branchName">The name of the branch to create.</param>
107
- /// <param name = "target ">The canonical reference name or sha which should be pointed at by the Branch .</param>
108
- public static Branch CreateBranch ( this IRepository repository , string branchName , string target )
107
+ /// <param name = "commitish ">The revparse spec for the target commit .</param>
108
+ public static Branch CreateBranch ( this IRepository repository , string branchName , string commitish )
109
109
{
110
- return repository . Branches . Add ( branchName , target ) ;
110
+ return repository . Branches . Add ( branchName , commitish ) ;
111
111
}
112
112
113
113
/// <summary>
0 commit comments