Skip to content

Instantly share code, notes, and snippets.

@vallerion
Last active March 31, 2023 09:46
Show Gist options
  • Save vallerion/f47912184a7a174a4f604269c4a04aa0 to your computer and use it in GitHub Desktop.
Save vallerion/f47912184a7a174a4f604269c4a04aa0 to your computer and use it in GitHub Desktop.
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