GitAliases.

GitLogTag(ICakeContext, DirectoryPath, string) Method

Summary

Get commits after a certain tag
Assembly
Cake.Git.dll
Namespace
Cake.Git
Containing Type
GitAliases

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