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?
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?
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