Various changes

* Add setopt for completion on aliases
* Update vim config sha
* Add grcl for cleaning up local branches based on purged remote branches
* Remove hub alias (it was causing too many issues)
* Updated Golang path
This commit is contained in:
2015-08-03 05:53:46 -04:00
parent 24cf6d0b25
commit 326f13a9ce
5 changed files with 17 additions and 3 deletions

View File

@@ -1 +1,2 @@
alias fcq="fleetctl --endpoint=http://192.168.3.32:4001 "
alias ecq="etcdctl --peers=192.168.3.32:4001 "

View File

@@ -1,4 +1,15 @@
alias ghm='git push heroku master'
function grcl () {
local branch="${1:=master}"
git checkout $branch
git pull
git remote prune origin
git branch -avv | grep "gone]" | awk '{ print $1 }' | xargs git branch -d;
}
compdef _git grcl=git-checkout
# For "hub" http://hub.github.com/
eval "$(hub alias -s)"
# eval "$(hub alias -s)"

View File

@@ -1,2 +1,2 @@
export GOPATH=/Users/tedkulp/go:/Users/tedkulp
export GOPATH=/Users/tedkulp/src/go
export PATH=$PATH:$GOPATH/bin