我正在使用 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"
有人知道错误吗?