Last active
August 24, 2018 16:23
-
-
Save aliaksandr-s/c17e3162696fcea2734f7561d8a9f418 to your computer and use it in GitHub Desktop.
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
alias robo='/home/user/Загрузки/robomongo-0.9.0-linux-x86_64-0786489/bin/robomongo' | |
alias d='cd ~; cd Desktop' | |
alias sht='gnome-screenshot --interactive' | |
alias krak='setsid /usr/share/gitkraken/gitkraken' | |
alias goog='setsid /usr/bin/google-chrome-stable' | |
alias ngrok='cd ~/Downloads; ./ngrok' | |
alias wk='cd ~/Desktop/work' | |
# Git | |
alias gad='git add' | |
alias gcoM='git commit -m' | |
alias gcoAN='git commit --amend --no-edit' | |
alias gcd='git checkout develop' | |
alias gcm='git checkout master' | |
alias gbDA='git branch | egrep -v "(master|\*)" | xargs git branch -D' | |
# bash | |
alias ebash='vim ~/.bash_aliases' | |
alias lbash='source ~/.bash_aliases' | |
# work | |
rmo () { | |
echo "running middle office" | |
cd /home/user/Desktop/work/youmo/customerportal | |
npm run web:dev | |
} | |
rcp () { | |
echo "running customer portal" | |
cd /home/user/Desktop/work/youmo/webapp | |
npm run web:dev | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment