How would you get a count of all the files currently in a git repository?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can get a count of all tracked files in a git respository by using the following command:
Command Breakdown:
Note: This returns a count of only the tracked files in the repository meaning that any ignored files or new & uncommitted files will not be counted. |
||||
|
|