I want to see the date of git creation (date of first commit where they were added) of all the files on a specified directory.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I'll break my solution into steps. Get a list of all files in the repository
This returns a list of relative paths of all files in the repository. Get the SHA-1 of the first commit of a given file:
This will return a list of all parentless commits for a given file, in reverse chronological order. The last one is the SHA-1 hash of the first commit for the given file. You can verify this by running
Show the date of a given commit
Bringing it all together in a bash script:
|
||||
|
|
|
Well, i devised a solution which is not elegant but sort of works:
it works by running |
|||||||||||||||
|
git logyou can see the date of all past commits. That alone is a decent starting point, there's plenty to try. – David Cain Jun 11 '12 at 6:56