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