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

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -