Skip to content

Instantly share code, notes, and snippets.

@tillklockmann
Last active September 21, 2020 17:59
Show Gist options
  • Save tillklockmann/b6e9d69101cde1deeb39016e075c94af to your computer and use it in GitHub Desktop.
Save tillklockmann/b6e9d69101cde1deeb39016e075c94af to your computer and use it in GitHub Desktop.
terminal aliases for .bashrc
# 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