I am trying to get number of commits of my master branch bitbucket-pipelines.yml file
and I use the command below
git rev-list --first-parent --count origin/master
But it started not counting after 50th commit and it keeps returning 50 everytime I push a new commit.
What is the reason for that and how can I fix that issue?
Any help would be appreciated.
Hello Mustafa,
By default, Pipelines uses a shallow clone when cloning the repository.
If you'd like the entire Git history. Please set the clone depth to be full with the configuration here: https://confluence.atlassian.com/bitbucket/configure-bitbucket-pipelines-yml-792298910.html#Configurebitbucket-pipelines.yml-ci_depthdepth
Thanks,
Phil
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.