Last active
February 18, 2020 15:11
-
-
Save monogot/103dcba21e208dbdbcc216870ef01e99 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 k='clear' | |
alias ll='ls -al' | |
alias fs='foreman start -f Procfile.dev' | |
alias gcd='git checkout develop' | |
alias gcp='git checkout -' | |
alias grd='git rebase develop' | |
alias gam='git commit --amend --no-edit' | |
alias gpf='git push -f' | |
alias gcb='git checkout -b' | |
alias gp='git pull origin' | |
alias gpu='git push origin' | |
alias reset='git reset --soft HEAD^' | |
alias krails='kill -9 $(lsof -i tcp:3000 -t)' | |
alias t='k && bundle exec rspec' | |
alias rc="bundle exec rails c" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment