1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-11-01 08:31:12 +00:00
prezto/modules/git/init.zsh
Sorin Ionescu 8de68a9bda Revert "[Fix #242] Remove hub"
This reverts commit ccf181379a.
2014-10-07 23:29:47 -04:00

20 lines
302 B
Bash

#
# Provides Git aliases and functions.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Return if requirements are not found.
if (( ! $+commands[git] )); then
return 1
fi
# Load dependencies.
pmodload 'helper'
# Source module files.
source "${0:h}/alias.zsh"
source "${0:h}/hub.zsh"