diff options
author | Marc Cornellà <marc.cornella@live.com> | 2016-03-31 23:24:54 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2016-03-31 23:24:54 +0200 |
commit | 286c3e5e28b651c3f629e6aaba589a1cf56da4d8 (patch) | |
tree | 9cd35042c809a2b0d3e77a6b9254354e60f35087 /lib/git.zsh | |
parent | c4582777fc50162d8b433cabad34f629b0ea9b98 (diff) | |
parent | 69e1506ad9fed9771b9f7d1e478ac2ff05fc3604 (diff) | |
download | zsh-286c3e5e28b651c3f629e6aaba589a1cf56da4d8.tar.gz zsh-286c3e5e28b651c3f629e6aaba589a1cf56da4d8.tar.bz2 zsh-286c3e5e28b651c3f629e6aaba589a1cf56da4d8.zip |
Merge pull request #4961 from aesopwolf/patch-1
Add git user profile functions for prompt display
Diffstat (limited to 'lib/git.zsh')
-rw-r--r-- | lib/git.zsh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/git.zsh b/lib/git.zsh index f91b516bd..1c76d5882 100644 --- a/lib/git.zsh +++ b/lib/git.zsh @@ -188,6 +188,18 @@ function git_compare_version() { echo 0 } +# Outputs the name of the current user +# Usage example: $(git_current_user_name) +function git_current_user_name() { + command git config user.name 2>/dev/null +} + +# Outputs the email of the current user +# Usage example: $(git_current_user_email) +function git_current_user_email() { + command git config user.email 2>/dev/null +} + # This is unlikely to change so make it all statically assigned POST_1_7_2_GIT=$(git_compare_version "1.7.2") # Clean up the namespace slightly by removing the checker function |