Last active
March 31, 2023 09:46
-
-
Save vallerion/f47912184a7a174a4f604269c4a04aa0 to your computer and use it in GitHub Desktop.
This file contains 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 ls='ls -lGFh' | |
alias la='ls -la' | |
alias gc='git commit -am' | |
alias gs='git status' | |
alias gph='git push' | |
alias gpl='git pull' | |
alias kx='kubectl ctx' | |
alias kn='kubectl ns' | |
// or | |
alias kx='kubectx' | |
alias kn='kubens' | |
alias php71='docker run -u $UID -it --rm -v "$PWD":/code -w /code php:7.1-cli php' | |
alias composer='docker run --rm --interactive --tty -v "$PWD":/code -v ~/.ssh/:/root/.ssh -w /code composer:latest' | |
alias node='docker run -it --rm -v "$PWD":/code -w /code node:latest' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment