How can Git export qualified files at once
曾经蜡笔没有小新
曾经蜡笔没有小新 2017-05-02 09:47:24
0
1
590

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?

曾经蜡笔没有小新
曾经蜡笔没有小新

reply all(1)
小葫芦

git log --no-merges --author="张三" --name-only --pretty=format:"" | sort -u
git log --oneline | grep '张三'

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template