# git-file-creators **Repository Path**: mirrors_mo/git-file-creators ## Basic Information - **Project Name**: git-file-creators - **Description**: List files in GIT along with the author that first added the file - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # git-file-creators Small Python2 script that lists files in GIT along with the author who created each file. Pass --show-deleted to include files that no longer exists in the working directory (typically because they were deleted in some pre-HEAD revision). ## Usage ```shell # Run in the root of a git repo to list all files along with author who added them. $ git-file-creators # Same as above but only for files inside "foo" directory. $ cd foo $ git-file-creators -- . # Same as above but also show deleted files. $ git-file-creators --show-deleted -- . ``` ## License MIT