1

我已经设置了一个自定义 git 别名,以便在我的~/.gitconfig

[alias]
   l = "!source ~/.githelpers && git_pretty_log"

我的~/.githelpers文件包含以下内容:

#!/bin/bash

HASH="%C(yellow)%h%C(reset)"
RELATIVE_TIME="%C(green)%ar%C(reset)"
AUTHOR="%C(bold blue)%an%C(reset)"
REFS="%C(red)%d%C(reset)"
SUBJECT="%s"

FORMAT="$HASH{$RELATIVE_TIME{$AUTHOR{$REFS $SUBJECT"

function git_pretty_log() {
    git log --graph --pretty="tformat:$FORMAT" $* |
    column -t -s '{' |
    less -FXRS
}

但是当我git l在任何回购中做时,我得到:

$ git l
source ~/.githelpers && git_pretty_log: 1: source ~/.githelpers && git_pretty_log: source: not found
fatal: While expanding alias 'l': 'source ~/.githelpers && git_pretty_log': Aucun fichier ou dossier de ce type

有任何想法吗?

4

2 回答 2

3

错误似乎source不是外部二进制文件,而是内置的 bash。

$ git config alias.foo '!source .gitfoo'
$ git foo
source .gitfoo: 1: source .gitfoo: source: not found

用 a 包装所有这些可以bash -c解决问题。

$ git config alias.foo '!'"bash -c 'source .gitfoo && gitfoobar'"
$ echo 'function gitfoobar() { echo foo bar; }' >.gitfoo
$ git foo
foo bar

对于您的情况:

git config --global alias.l '!'"bash -c 'source ~/.githelpers && git_pretty_log'"
于 2013-09-30T19:20:44.603 回答
-1

去掉引号;它应该是:

[alias]
    l = !source ~/.githelpers && git_pretty_log

否则,您将尝试运行一个不存在的长命令,就像错误消息告诉您的那样。

于 2013-09-30T19:17:01.317 回答