Skip to content

Instantly share code, notes, and snippets.

@pvaviloff
Last active September 26, 2025 17:36
Show Gist options
  • Select an option

  • Save pvaviloff/91e38cb2b66db94be60bb84f8df35ba1 to your computer and use it in GitHub Desktop.

Select an option

Save pvaviloff/91e38cb2b66db94be60bb84f8df35ba1 to your computer and use it in GitHub Desktop.
Bash/zsh aliases
# Add ".aliases" into "Home" directory.
# Type into console: cd ~/ && nano .aliases
# Then paste the following into the file and save it.
#short code
alias g='git'
alias v='vagrant'
alias vs='vagrant global-status'
alias dc='docker compose'
#mistype
alias gti='git'
alias got='git'
alias gto='git'
if [ -f ~/.aliases ]; then
. ~/.aliases
fi
source $HOME/.aliases
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment