소스 검색

update g command

pull/1/head
10sr 11 년 전
부모
커밋
6c98c6efb7
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. +8
    -1
      bashrc

+ 8
- 1
bashrc 파일 보기

@@ -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


불러오는 중...
취소
저장