How can I get the total commits from Bitbucket private repo?
You could use the Bitbucket API, the endpoint below returns the 15 most recent changesets, but also returns a count which is the total number of changesets.
https://bitbucket.org/api/1.0/repositories/{accountname}/{repo_slug}/changesets/
Check out the REST API Console (http://restbrowser.bitbucket.org/) to play with the API.
You can also simply clone the repository and run the following command in GitBash or OSX terminal:
git log --oneline --all | wc -l
This will output every commit in the repository, one per line, then count all the lines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Wow, awesome.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is out of date, please remove or update with API 2.0 methods. API 1.0 methods are no longer allowed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
how to get this in API 2.0?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.