log.date config variable sets a default value for the log command’s --date option. By default, dates are shown in the original time zone (either committer’s or author’s). If -local is appended to the format (e.g., iso-local), the user’s local time zone is used instead. --...
git log - - commitor=用户名 如:git log - -commitor=CnPeng 就会展示出CnPeng这个用户的提交历史。注意:这里的用户名,是初始化git 时传入的name . 效果图参考上面的author图 git log - -since=时间 如:git log - -since=1days , 表示,展示1天前的提交历史,具体的时间取值,可以有如下格式: xxxdays ...
在显示提交日志信息时,显示注释提交的说明(见git-notes[1])。 这是`git log`、git show`和`git whatchanged`命令的默认设置,当命令行中没有给出--pretty`、--format`或--oneline`选项时。 默认情况下,显示的注释来自于`core.notesRef`和`notes.displayRef`变量(或相应的环境覆盖)中列出的注释参考。更多细节...
%cn: committer name %cN: committer name (respecting .mailmap, see git-shortlog[1] or git-blame[1]) %ce: committer email %cE: committer email (respecting .mailmap, see git-shortlog[1] or git-blame[1]) %cd: committer date (format respects --date= option) %cD: committer date,...
git log AA/ 2.2.3 指定标签之前 通过git log tagName 命令可以查看在打标签位置之前的提交记录。 例如,我想查看标签show 前面的提交记录,只需要输入以下命令: git log show 运行结果如下: 在这里插入图片描述 可以看到,界面中只输出了标签show 及其之前的提交记录。
--committer 仅显示指定提交者相关的提交。 来看一个实际的例子,如果要查看 Git 仓库中,2008 年 10 月期间,Junio Hamano 提交的但未合并的测试脚本(位于项目的 t/ 目录下的文件),可以用下面的查询命令: $ git log --pretty="%h - %s" --author=gitster --since="2008-10-01" \ --before="2008-11...
GIT_COMMITTER_EMAIL GIT_COMMITTER_DATE 其中,作者和提交者的名称通常是某种形式的个人名称(即其他人称呼你的方式),尽管Git不强制或要求任何特定格式。可以使用任意Unicode字符,但受到上述约束的限制。此名称对认证没有影响;有关认证,请参见git-config[1]中的credential.username变量。 如果未设置这些环境变量的某些部...
选项 说明-(n) 仅显示最近的 n 条提交--since,--after仅显示指定时间之后的提交。--until,--before仅显示指定时间之前的提交。--author仅显示指定作者相关的提交。--committer仅显示指定提交者相关的提交。 来看一个实际的例子,如果要查看 Git 仓库中,2008 年 10 月期间,Junio Hamano 提交的但未合并的测试脚本...
$ git log #从log历史记录中查找关键字touchpanel $ git log --grep="touchpanel" #仅显示指定John作者相关的提交 $ git log --author="John" #仅显示指定提交者John相关的提交 $ git log --committer="John" #查看某个时间段的提交记录 $ git log --after="2020-9-23 00:00:00" --before="2020...
git log --author=BeginMan 1. 仅显示指定提交者相关的提交 git log --committer=Jack 1. 仅显示指定关键字的提交 git log --grep=init 1. 显示修改的文件 仅在提交信息后显示已修改的文件清单 git log --name-only git log --name-only --oneline ...