Tags: #git
# Get File Count Over Time for Git Repository
This command:
```
git rev-list --all --remotes
```
Gives you a list of SHAs for the repository, one on each line of the output.
It could likely be piped into [[Get File Count for Git Repository]] to produce a data set of Commit Date / File Count. This might require the use of a bash script.