我怎样才能编写一个以字符串作为参数的git别名

时间:2018-03-01 00:08:46

标签: git zsh git-alias git-grep

我想写一个git别名:

git log --all --grep='Big boi'

到目前为止我所拥有的是:

[alias]
    search = "!f() { str=${@}; echo $str; git log --all --grep=$str; }; f"

哪个回声字符串完全正常但是给出了错误,我似乎无法弄清楚如何将字符串传递给grep标志。

$ user in ~/src/repo on master λ git search 'Big boi'
Big boi
fatal: ambiguous argument 'boi': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'

如果它有任何区别,我会使用zsh。 。

1 个答案:

答案 0 :(得分:3)

如果您使用双引号,该别名似乎有效:

git search "Big boi"

我还使用--grep=\"$str\"(并且仍然使用双引号)

OP joshuatvernon添加in the comments

  

我将其修改为

search = "!f() { str="$*"; echo "$str"; git log --all --grep=\"$str\"; }; f"
  

它适用于单引号,双引号或无引号。