How can I get a list of all files *I* have committed to Git (GitHub repo) after a certain date? -
the list should include creation, modifications, , deleted files.
the closest can come question like
git log --no-merges --stat --author="name" --pretty=format:"%c(yellow)%h%creset - %ad%n"
which show file revision history specific user, grouped commits.
if want see simple name-only list, suggest using h0tw1r3's answer related question: can git tell me files 1 user has modified?
git log --no-merges --stat --author="pattern" --name-only --pretty=format:"" | sort -u
Comments
Post a Comment