mirror of
https://github.com/meineerde/dotfiles.git
synced 2025-10-17 19:41:01 +00:00
Use gittower in preference to GitX for gitx alias
This commit is contained in:
parent
bf9cc0d7af
commit
ef3a6f2644
8
.bashrc
8
.bashrc
@ -73,7 +73,13 @@ case `uname` in
|
|||||||
|
|
||||||
export PG_DATA=/usr/local/var/postgres
|
export PG_DATA=/usr/local/var/postgres
|
||||||
|
|
||||||
gitx() { open -a GitX $@; }
|
gitx() {
|
||||||
|
if [ -x /usr/local/bin/gittower ]; then
|
||||||
|
/usr/local/bin/gittower $@
|
||||||
|
else
|
||||||
|
open -a GitX $@
|
||||||
|
fi
|
||||||
|
}
|
||||||
alias gx=gitx
|
alias gx=gitx
|
||||||
pdfman() { man -t $1 | open -a /Applications/Skim.app -f; }
|
pdfman() { man -t $1 | open -a /Applications/Skim.app -f; }
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user