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

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -