Last active
September 21, 2020 17:59
-
-
Save tillklockmann/b6e9d69101cde1deeb39016e075c94af to your computer and use it in GitHub Desktop.
terminal aliases for .bashrc
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
# tip: create a separate file, e.g. .bash_aliases, | |
# in the user root dir and import it in .bash_rc like this: | |
# . ~/.bash_aliases | |
alias ll='ls -alF' | |
alias la='ls -A' | |
alias l='ls -CF' | |
alias ..='cd ..' | |
alias ...='cd ../..' | |
alias s='php -S localhost:8888' | |
alias g.s='git status' | |
alias g.b='git branch' | |
alias gc='git commit -m' | |
alias gaa='git add .' | |
alias ga='git add' | |
alias gp='git push' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment