The submission log is as follows:
5ferfsd 张三20170116号提交 fdfds45 李四20170115号提交 4fef457 张三20170114号提交 w554few 张三20170114号提交 x5eqqqe 王五20161228号提交 v25ewew 张三20161226号提交 bou4q45 李六20161226号提交
The first column is the ID generated for each submission, and the second column is the description information of each submission.
Every submission changes a lot of files. How can I export all the files that contain "Zhang San" changes in the description information?
git log --no-merges --author="张三" --name-only --pretty=format:"" | sort -u
git log --oneline | grep '张三'