Last active
June 6, 2019 08:30
-
-
Save neroze/32d984dc60f4eedd8e5d8434efd7e823 to your computer and use it in GitHub Desktop.
alias : git command helper + utils
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# git helper alias | |
alias gd='git diff ' | |
alias gtc='git commit -m ' | |
alias gl='gl' | |
alias gm='git merge ' | |
alias go='git checkout ' | |
alias gch='git checkout -b ' | |
alias gtp='git pull ' | |
alias gta='git add ' | |
alias gtps='git push origin ' | |
alias gts='git status' | |
alias s='git status' | |
alias v='git branch -v' | |
alias gus='git stash; git stash pop' | |
alias jserver='python -m SimpleHTTPServer 3000 ' | |
alias sv='grep "version" package.json ' | |
alias jserver='python -m SimpleHTTPServer 3000 ' | |
alias ports='lsof -w -n -i tcp:9778 ' | |
alias k='kill -9 ' | |
alias uc='git commit --amend ' | |
alias grb="git branch | grep -v "master" | xargs git branch -D" | |
alias .='cd ../' | |
alias ..='cd ../../' | |
alias ...='cd ../../../' | |
alias ....='cd ../../../../' | |
alias getApp='sudo aptitude install' | |
alias searchApp='sudo aptitude install' | |
alias burnApp='sudo aptitude remove' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment