建立于: 1年前 ( 更新: 1年前 )
如何透过git命令显示自己的版控?
这些命令仅供参考,至少应该改一下作者名称哦。
--author的参数,也可以是信箱
单行日期区间
git log --pretty=oneline --since="2022-12-17" --until="2022-12-18" --author="devin"
格式化
git log --pretty=format:"%an --- %s" --since="2022-12-10" --until="2022-12-18" --author="devin"
查7天内自己的所有版控 (我们可以写成别名,运行就会列出来很方便)
git log --pretty="format:%h %s -- %aD %cn" --since="7 days ago" --author=devin --stat
参数 | 说明 |
---|---|
--pretty | 可用的值: oneline, short, medium, full, fuller, email, raw, format |
format: "下方格式" %an 作者的名字 %H full SHA-1 hash 其他 %h abbreviated commit hash, %ae 作者信箱 %cn committer name, %ce commiter email, %cd 提交日期(committer date) %e encoding %s subject %n newline | |
--since | "yyyy-mm-dd" 开始日期 |
--until | "yyyy-mm-dd" 完成日期 |
--author | "John Doe" 作者名称 |
No Comment
Post your comment