git :
查询版本记录:
git log --pretty=oneline
git log --graph --oneline
查询指定人指定日期段提交记录:
git log --author=wjm --pretty=format:"%h - %an, %ar : %s" --since=1.weeks
git log --pretty="%ad - %s" --author=wjm --after="2018-09-18" --before="2018-09-20" --date=short