2012-01-31 23:37:51 -05:00
|
|
|
#
|
|
|
|
# Provides Git aliases and functions.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
2011-09-05 00:37:36 -04:00
|
|
|
|
2012-07-23 15:00:44 -04:00
|
|
|
# Return if requirements are not found.
|
|
|
|
if (( ! $+commands[git] )); then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2012-09-29 13:07:31 -04:00
|
|
|
# Load dependencies.
|
|
|
|
pmodload 'helper'
|
|
|
|
|
2012-03-28 12:41:39 -04:00
|
|
|
# Source module files.
|
2011-09-05 00:37:36 -04:00
|
|
|
source "${0:h}/alias.zsh"
|