Total Count of Change Sets for Mercurial and Git -
is possible count number of mercurial/git change sets simple command line arguments?
for git
:
git log --pretty=oneline | wc -l
will give count of commits on current branch original commit.
to count of commits on branches:
git log --pretty=oneline --all | wc -l
Comments
Post a Comment