New aliases

This commit is contained in:
Michael Campagnaro 2015-03-21 15:13:00 -04:00
parent 64a3a0246b
commit 03aac84592
2 changed files with 10 additions and 2 deletions

View File

@ -151,13 +151,14 @@ alias gpa='git push && echo "pushing tags..." && git push --tags'
alias gpd='git push && git push heroku master'
alias gpdf='gpf && gphf'
alias gpp='echo "Pushing Upstream master to production" && git push production upstream/master:master'
alias gps='git push staging master -f'
alias gppp='echo "Pushing to remotes first..." && git push origin master:master && git push upstream master:master && echo "Pushing upstream master to Production..." && git push production upstream/master:master'
alias gps='git push staging'
alias gpps='echo "Pushing Upstream master to staging" && git push staging upstream/master:master -f'
alias gppf='gpf && git push production HEAD:production -f'
alias gph='echo "pushing $(git symbolic-ref HEAD 2>/dev/null | cut -d"/" -f 3) to Heroku master" && git push heroku HEAD:master'
alias gphf='git push heroku master --force'
alias gpf='git push -f'
alias gpu='git push -u origin master'
alias gpu='git push -u origin'
alias gpup='git push upstream master'
alias gpff='git pull --ff-only'
alias gpl='git pull'
@ -194,6 +195,12 @@ alias gsd='git stash drop'
alias gsdl='git stash drop stash@{0}'
alias gsl='git stash list'
alias gsp='git stash pop'
alias gsp1='git stash pop stash@{0}'
alias gsp2='git stash pop stash@{1}'
alias gsp3='git stash pop stash@{2}'
alias gsp4='git stash pop stash@{3}'
alias gsp5='git stash pop stash@{4}'
alias gsp6='git stash pop stash@{5}'
alias gt='git tag'
alias gta='git tag -a'
alias gtd='git tag -d'

1
zshrc
View File

@ -86,3 +86,4 @@ export PYTHONPATH=${ANSIBLE_DIR}/lib:${PYTHONPATH}
export ANSIBLE_LIBRARY=${ANSIBLE_DIR}/library
export MANPATH=${ANSIBLE_DIR}/docs/man:${MANPATH}
export ANSIBLE_HOSTS=~/.ansible_hosts
export LEIN_FAST_TRAMPOLINE=y