logging - Git - List files created by author -
is there way list files created specific author using git? need filter these results, either filename (regex/pattern) or folder created.
so i'm looking list of created (not updated) files author without filename duplication , without commit messages.
list commits adding files, showing commit author , added files; paste author front of each file listed:
# add `--author=pattern` log arguments restrict author # add `--format=` template # add restrictions `/^a\t/` selector in awk, # ... /^a\t/ && /\.c$/ { etc. git log --name-status --diff-filter=a --format='> %an' \ | awk '/^>/ {tagline=$0} /^a\t/ {print tagline "\t" $0}'
Comments
Post a Comment