1

我正在使用 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"

有人知道错误吗?

4

1 回答 1

1

正如错误消息所暗示的那样,您可以通过--在文件路径前放置 a 来解决此问题:

git --git-dir=... --work-tree=... log --pretty="format:%an" -- t/t0030-stripspace.sh
于 2012-08-12T02:56:42.600 回答