我正在使用Git命令根据文件名
过滤作者姓名所以,当我输入以下两个命令时,
gh@ubuntu:~$ cd git
gh@ubuntu:~/git$ git log --pretty="format:%an" t/t0030-stripspace.sh
效果很好,并提供了我的作者列表。
但是,我需要使用以下命令执行相同的操作:
gh@ubuntu:~$ git --git-dir=/home/ghadeer/git/.git --work-tree=/home/ghadeer/git log --pretty="format:%an" t/t0030-stripspace.sh
但它显示以下错误:
fatal: ambiguous argument 't/t0030-stripspace.sh': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions"
有人知道错误吗?
答案 0 :(得分:1)
正如错误消息所示,您可以通过在文件路径前放置--
来解决此问题:
git --git-dir=... --work-tree=... log --pretty="format:%an" -- t/t0030-stripspace.sh