How to get the list of files committed in all commits git branch?
Answers
Answered by
0
heya mate here is your answer
different. I want to see all files modified for a set of commits and wound up using
git log --until 2013-05-21 --pretty="short" --name-only with a good effect. – Limited Atonement
Dec 12 '13 at 17:40
1 Use this command to get all changes from previous n commits till master :
git diff-tree --name-status -r @{3} master – ako Jun 22 at 13:57
different. I want to see all files modified for a set of commits and wound up using
git log --until 2013-05-21 --pretty="short" --name-only with a good effect. – Limited Atonement
Dec 12 '13 at 17:40
1 Use this command to get all changes from previous n commits till master :
git diff-tree --name-status -r @{3} master – ako Jun 22 at 13:57
Similar questions