Last active
January 1, 2016 13:09
-
-
Save adibMosharrof/8149537 to your computer and use it in GitHub Desktop.
ubuntu 12.04 .bash_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
alias s='sudo' | |
alias agu='sudo apt-get update' | |
alias agi='sudo apt-get install' | |
alias bright='xbacklight -set' | |
#aliases for laravel | |
alias art='php artisan' | |
#aliases for git | |
alias g='git ' | |
alias gst='git status -s' | |
alias gaa='git add .' | |
alias gc='git commit -m' | |
alias gco='git checkout' | |
alias glogg='git log --graph --decorate --oneline --abbrev-commit --all' | |
alias gph='git push' | |
alias gpl='git pull' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment