作者回复: 👍
作者回复: 我看也是这个规律
作者回复: 我之前也遇到了,其实是那个路径下缺少git-doc 文件夹。我根据 https://stackoverflow.com/questions/8709383/installing-git-html-help-on-osx 搞定了。
作者回复: 为了简便。只要能够唯一标识commit即可。
作者回复: $ git log --pretty="%H" --committer="su_l" --after="2020-01-01" --before="2020-12-30" --branches=*dev | while read commit_hash; do git show --oneline --name-only $commit_hash | tail -n+2; done | sort | uniq 另外,可参阅 https://stackoverflow.com/questions/6349139/can-i-get-git-to-tell-me-all-the-files-one-user-has-modified
作者回复: 赞
作者回复: 👍,感谢分享
作者回复: -a 就是只要已经在git库里的文件,不管当下在工作区还是暂存区发生了变化,一律体现在下一个commit中。
作者回复: 👍
作者回复: 嗯,就是还得安装