Skip to content

Instantly share code, notes, and snippets.

View frf's full-sized avatar
🤑
Working hard

Fabio Rocha frf

🤑
Working hard
View GitHub Profile
@frf
frf / .zshrc
Last active January 15, 2021 18:23
Terminal ZHS tips Git and SSH
echo "Hello: Fabio, how are you ?"
alias prod-select="echo 'Entrando servidor de producao' && ssh -i ~/xxx/prod.pem prod@127.0.0.1"
alias dev-select="echo 'Entrando servidor DEV' && ssh -i ~/xxx/dev.pem dev@127.0.0.1"
alias gcd="git checkout develop"
alias gcm="git checkout master"
alias gpo="git push origin"
alias gc="git checkout "
alias gp="git pull "