Procházet zdrojové kódy

update g command

pull/1/head
10sr před 11 roky
rodič
revize
6c98c6efb7
1 změnil soubory, kde provedl 8 přidání a 1 odebrání
  1. +8
    -1
      bashrc

+ 8
- 1
bashrc Zobrazit soubor

@@ -217,7 +217,14 @@ if iscygwin; then
alias ls="ls -CFG $(iswindows || test "$TERM" = dumb || echo --color=auto)"
fi

alias g=git
g(){
if test $# -eq 0 && null type git-info
then
git info
else
git "$@"
fi
}
if null type _git
then
# enable programmable completion for g


Načítá se…
Zrušit
Uložit