From ccf181379aef10d4e090f709a3aa9d315ac314b9 Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Mon, 27 Aug 2012 16:47:59 -0400 Subject: [PATCH] [Fix #242] Remove hub --- modules/git/hub.zsh | 15 --------------- modules/git/init.zsh | 1 - 2 files changed, 16 deletions(-) delete mode 100644 modules/git/hub.zsh diff --git a/modules/git/hub.zsh b/modules/git/hub.zsh deleted file mode 100644 index e2c9280..0000000 --- a/modules/git/hub.zsh +++ /dev/null @@ -1,15 +0,0 @@ -# -# Adds GitHub knowledge to the Git command. -# https://github.com/defunkt/hub -# -# Authors: -# Chris Wanstrath -# Sorin Ionescu -# - -if (( $+commands[hub] )); then - function git { - hub "$@" - } -fi - diff --git a/modules/git/init.zsh b/modules/git/init.zsh index 577ae25..81a7b73 100644 --- a/modules/git/init.zsh +++ b/modules/git/init.zsh @@ -12,5 +12,4 @@ fi # Source module files. source "${0:h}/alias.zsh" -source "${0:h}/hub.zsh"