Skip to content

Instantly share code, notes, and snippets.

@bmv437
Last active October 3, 2015 16:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmv437/2490160 to your computer and use it in GitHub Desktop.
Save bmv437/2490160 to your computer and use it in GitHub Desktop.
my configs
alias ls='ls --color=auto'
alias gc="git commit -m $1"
alias gca="git commit -am $1"
alias gcap=git_add_all_commit_and_push
alias gs='git status'
alias gf='git fetch'
alias gm='git merge origin'
alias gp='git push'
alias gpl='git pull'
alias gplom="git pull origin master"
alias gplhm="git pull heroku master"
alias gpom="git push origin master"
alias gphm="git push heroku master"
alias gpa="gpom;gphm"
function git_add_all_commit_and_push () {
git add -A;
git commit -m "$1";
git push;
}
[color]
ui = true
[alias]
co = checkout
ci = commit
rb = rebase
st = status
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment