Skip to content

Instantly share code, notes, and snippets.

@guilhermelimak
Last active May 24, 2022 03:14
Show Gist options
  • Save guilhermelimak/ae4d94b05333d89f2165fadf255da271 to your computer and use it in GitHub Desktop.
Save guilhermelimak/ae4d94b05333d89f2165fadf255da271 to your computer and use it in GitHub Desktop.
shell customization
alias gh="git checkout"
alias ghb="git checkout -b"
alias gu="git push"
alias gd="git pull"
alias gm="git merge"
alias gs="git stash"
alias gmm="git stash && gh main && gu && gh - && gm main"
#!/bin/bash
curl https://gist.githubusercontent.com/guilhermelimak/ae4d94b05333d89f2165fadf255da271/raw/1d5ac2419b726b821f62f400e5ca08e8692f9feb/.aliases >> ~/.aliases
echo "source ~/.aliases" >> ~/.zshrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment