From 1396b04eca0c0c5fcdf0aa731a6e57f4fcd11507 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 25 May 2017 14:17:21 +0100 Subject: [PATCH] Add some git aliases --- zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zshrc b/zshrc index 3648584..e7c41df 100644 --- a/zshrc +++ b/zshrc @@ -126,6 +126,9 @@ alias bubc="brew upgrade && brew cleanup" alias bubo="brew update && brew outdated" alias brewcurl="/usr/local/opt/curl/bin/curl --cacert /usr/local/etc/openssl/cert.pem" alias brewssl="/usr/local/opt/openssl/bin/openssl" +alias ga="git add" +alias gf="git fetch --all; git fetch --tags" +alias gs="git status" alias irc="ssh jmb -t '. ~/.zshrc; tmux attach -t irc'" test "$platform" = 'linux' && alias ls="ls -F --color=always" test "$platform" = 'osx' && alias ls="ls -FG"