如何将这个单行脚本转换为git别名

时间:2014-02-09 03:22:37

标签: git

我做了各种不成功的尝试,将以下单行脚本变成了“正确的”git别名:

#!/bin/zsh
git add -u "$@" | perl -lpe 's/^add(?=\s)/stage/'

E.g。

[alias]
    stage = !zsh -c 'git add -u "$@" | perl -lpe \'s/^add(?= )/stage/\''

...但

% git stage .

...因fatal: bad config file...错误而失败。

0 个答案:

没有答案