Last active
August 2, 2018 06:17
-
-
Save lhuria94/bffa1991a5cb0f6d025e31be70029c0c to your computer and use it in GitHub Desktop.
Git Aliases.
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 Shortcuts | |
alias gst='git status' | |
alias gp='git pull origin' | |
alias gcod='git checkout develop' | |
alias gcom='git checkout master' | |
alias gl='git log --oneline' | |
alias gd='git diff' | |
# Drush Shortcuts | |
alias dca='drush cc all' | |
alias dcs='drush cc css-js' | |
alias dct='drush cc theme-registry' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment