Skip to content

Instantly share code, notes, and snippets.

View rlekkr's full-sized avatar

Christian Gabriel RAKOTOMANANA rlekkr

  • Antananarivo, Madagascar
View GitHub Profile
@rlekkr
rlekkr / git_aliases
Created September 13, 2016 11:22 — forked from numeraltwo/git_aliases
useful git and git-flow aliases
# GIT / GIT FLOW ALIASES
alias gs="git stash"
alias gsa="git stash apply"
alias gsl="git stash list"
alias gsc="git stash clear"
alias gft="git fetch --tags"
alias gpt="git push --tags"
alias gcm="git checkout master"