Skip to content

Instantly share code, notes, and snippets.

@Arelav
Arelav / index.sh
Last active December 19, 2016 10:10 — forked from miguelbermudez/git-aliases-export.sh
Git Aliases from oh-my-zsh git plugin ported to fish shell
#
# Aliases
# (sorted alphabetically)
#
# GIT #
alias g 'git'
alias ga 'git add'
@Arelav
Arelav / git-aliases.fish
Last active January 30, 2017 18:27 — forked from nafg/Git aliases for fish shell.fish
git-aliases
# 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'