我正在尝试使用空格来获取上次提交的日期时间:
git log -n 1 --pretty=format:%cd --date=format:%d %b %Y
例外是:
fatal: ambiguous argument '%b': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'
答案 0 :(得分:1)
似乎使用双引号(使用git版本2.13.1.windows.1):
vonc@VONCAVN7 D:\git\git
> git log -n 1 --pretty=format:%cd --date=format:"%d %b %Y"
15 Jun 2017
它也适用于bash:
vonc@voncavn7 MINGW64 /d/git/git (master)
$ git log -n 1 --pretty=format:%cd --date=format:"%d %b %Y"
15 Jun 2017
答案 1 :(得分:0)