Skip to content

Instantly share code, notes, and snippets.

@noateden
Created May 30, 2020 04:29
Show Gist options
  • Save noateden/b460c07893ea9dfee685ffe5eeba6dc8 to your computer and use it in GitHub Desktop.
Save noateden/b460c07893ea9dfee685ffe5eeba6dc8 to your computer and use it in GitHub Desktop.
# ubuntu
alias ap='apt-get'
alias au='apt-get update'
alias ai='apt-get install'
# docker
alias dps='docker ps -a'
alias dc='docker container'
alias di='docker image'
alias dc_rm_all='docker container rm -f `docker ps -aq`'
alias di_rm_all='docker image rm -f `docker images -aq`'
# git
alias gs='git status'
alias gp='git push'
alias ga='git add'
alias gc='git commit'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment