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 commit log.
Syntax
public static ICollection<GitCommit> GitLog(this ICakeContext context, DirectoryPath repositoryDirectoryPath, int count)
Examples
var result = GitLog("c:/temp/cake", 5);
Attributes
| Type |
Description |
| CakeMethodAliasAttribute |
|
| CakeAliasCategoryAttribute |
|
Parameters
| Name |
Type |
Description |
| context |
ICakeContext |
The context. |
| repositoryDirectoryPath |
DirectoryPath |
Path to repository. |
| count |
int |
Number of commits to fetch. |
Return Value
| Type |
Description |
| ICollection<GitCommit> |
Commits in the repository passed in repositoryDirectoryPath. |