This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.Git.
Summary
Get commits after a certain tag
Syntax
public static ICollection<GitCommit> GitLogTag(this ICakeContext context, DirectoryPath repositoryDirectoryPath, string sinceTag)
Examples
var result = GitLogTag("c:/temp/cake", "since tag");
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
CakeAliasCategoryAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
repositoryDirectoryPath |
DirectoryPath |
Path to repository. |
sinceTag |
string |
Tag to start fetching from. |
Return Value
Type |
Description |
ICollection<GitCommit> |
Commits since the tag passed with sinceTag |