Skip to content

Instantly share code, notes, and snippets.

View danielamorais's full-sized avatar

Daniela Marques de Morais danielamorais

View GitHub Profile
# migrating from https://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/git/git.plugin.zsh
# Aliases
alias g='git'
#compdef g=git
alias gst='git status'
#compdef _git gst=git-status
alias gd='git diff'
#compdef _git gd=git-diff
alias gdc='git diff --cached'