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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -