Created
May 30, 2020 04:29
-
-
Save noateden/b460c07893ea9dfee685ffe5eeba6dc8 to your computer and use it in GitHub Desktop.
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
# 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