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
nulltoken edited this page May 17, 2011
·
14 revisions
git-log
Show HEAD commit logs
Limits the number of commits to show
Git
$ git log -15
LibGit2Sharp
using(varrepo=newRepository("path/to/your/repo")){foreach(varcommitinrepo.Commits.Take(15)){Console.WriteLine(commit.Id);// Of course the output can be prettified ;-)}}