2

Is it able to show only changed File of each Author with git log

Example Output:

user1
file1.txt
file3.txt
file2.txt

user2
file1.txt
file4.txt
fil6.txt
sarikaya
  • 301
  • 4
  • 12

1 Answers1

1
git log --format=%an | sort -u | while read line; do echo $line;git log --author="$line" --pretty='/ %h' --name-only | grep -v ^/ | grep -v ^$ | sort -u;echo ""; done
ElpieKay
  • 27,194
  • 6
  • 32
  • 53