Is there a command that shows how many commit was made in the branch?

0

I've always been curious about these things, is there any command in git that shows how many files the branch owner uploaded to the repository?

    
asked by anonymous 21.12.2018 / 16:21

1 answer

0

There is, I think the command you want is the following:

git rev-list --count <branch-name>
  • rev-list lists confirmation objects in reverse chronological order

  • --count counts these objects

More information: here

Source: git documentation

    
21.12.2018 / 16:28