git.zsh 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. # get the name of the branch we are on
  2. function git_prompt_info() {
  3. if [[ "$(command git config --get oh-my-zsh.hide-status 2>/dev/null)" != "1" ]]; then
  4. ref=$(command git symbolic-ref HEAD 2> /dev/null) || \
  5. ref=$(command git rev-parse --short HEAD 2> /dev/null) || return 0
  6. echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_SUFFIX"
  7. fi
  8. }
  9. # Checks if working tree is dirty
  10. parse_git_dirty() {
  11. local SUBMODULE_SYNTAX=''
  12. local GIT_STATUS=''
  13. local CLEAN_MESSAGE='nothing to commit (working directory clean)'
  14. if [[ "$(command git config --get oh-my-zsh.hide-status)" != "1" ]]; then
  15. if [[ $POST_1_7_2_GIT -gt 0 ]]; then
  16. SUBMODULE_SYNTAX="--ignore-submodules=dirty"
  17. fi
  18. if [[ "$DISABLE_UNTRACKED_FILES_DIRTY" == "true" ]]; then
  19. GIT_STATUS=$(command git status -s ${SUBMODULE_SYNTAX} -uno 2> /dev/null | tail -n1)
  20. else
  21. GIT_STATUS=$(command git status -s ${SUBMODULE_SYNTAX} 2> /dev/null | tail -n1)
  22. fi
  23. if [[ -n $GIT_STATUS ]]; then
  24. echo "$ZSH_THEME_GIT_PROMPT_DIRTY"
  25. else
  26. echo "$ZSH_THEME_GIT_PROMPT_CLEAN"
  27. fi
  28. else
  29. echo "$ZSH_THEME_GIT_PROMPT_CLEAN"
  30. fi
  31. }
  32. # get the difference between the local and remote branches
  33. git_remote_status() {
  34. remote=${$(command git rev-parse --verify ${hook_com[branch]}@{upstream} --symbolic-full-name 2>/dev/null)/refs\/remotes\/}
  35. if [[ -n ${remote} ]] ; then
  36. ahead=$(command git rev-list ${hook_com[branch]}@{upstream}..HEAD 2>/dev/null | wc -l)
  37. behind=$(command git rev-list HEAD..${hook_com[branch]}@{upstream} 2>/dev/null | wc -l)
  38. if [ $ahead -eq 0 ] && [ $behind -gt 0 ]
  39. then
  40. echo "$ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE"
  41. elif [ $ahead -gt 0 ] && [ $behind -eq 0 ]
  42. then
  43. echo "$ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE"
  44. elif [ $ahead -gt 0 ] && [ $behind -gt 0 ]
  45. then
  46. echo "$ZSH_THEME_GIT_PROMPT_DIVERGED_REMOTE"
  47. fi
  48. fi
  49. }
  50. # Checks if there are commits ahead from remote
  51. function git_prompt_ahead() {
  52. if $(echo "$(command git log @{upstream}..HEAD 2> /dev/null)" | grep '^commit' &> /dev/null); then
  53. echo "$ZSH_THEME_GIT_PROMPT_AHEAD"
  54. fi
  55. }
  56. # Gets the number of commits ahead from remote
  57. function git_commits_ahead() {
  58. if $(echo "$(command git log @{upstream}..HEAD 2> /dev/null)" | grep '^commit' &> /dev/null); then
  59. COMMITS=$(command git log @{upstream}..HEAD | grep '^commit' | wc -l | tr -d ' ')
  60. echo "$ZSH_THEME_GIT_COMMITS_AHEAD_PREFIX$COMMITS$ZSH_THEME_GIT_COMMITS_AHEAD_SUFFIX"
  61. fi
  62. }
  63. # Formats prompt string for current git commit short SHA
  64. function git_prompt_short_sha() {
  65. SHA=$(command git rev-parse --short HEAD 2> /dev/null) && echo "$ZSH_THEME_GIT_PROMPT_SHA_BEFORE$SHA$ZSH_THEME_GIT_PROMPT_SHA_AFTER"
  66. }
  67. # Formats prompt string for current git commit long SHA
  68. function git_prompt_long_sha() {
  69. SHA=$(command git rev-parse HEAD 2> /dev/null) && echo "$ZSH_THEME_GIT_PROMPT_SHA_BEFORE$SHA$ZSH_THEME_GIT_PROMPT_SHA_AFTER"
  70. }
  71. # Get the status of the working tree
  72. git_prompt_status() {
  73. INDEX=$(command git status --porcelain -b 2> /dev/null)
  74. STATUS=""
  75. if $(echo "$INDEX" | grep -E '^\?\? ' &> /dev/null); then
  76. STATUS="$ZSH_THEME_GIT_PROMPT_UNTRACKED$STATUS"
  77. fi
  78. if $(echo "$INDEX" | grep '^A ' &> /dev/null); then
  79. STATUS="$ZSH_THEME_GIT_PROMPT_ADDED$STATUS"
  80. elif $(echo "$INDEX" | grep '^M ' &> /dev/null); then
  81. STATUS="$ZSH_THEME_GIT_PROMPT_ADDED$STATUS"
  82. fi
  83. if $(echo "$INDEX" | grep '^ M ' &> /dev/null); then
  84. STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS"
  85. elif $(echo "$INDEX" | grep '^AM ' &> /dev/null); then
  86. STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS"
  87. elif $(echo "$INDEX" | grep '^ T ' &> /dev/null); then
  88. STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS"
  89. fi
  90. if $(echo "$INDEX" | grep '^R ' &> /dev/null); then
  91. STATUS="$ZSH_THEME_GIT_PROMPT_RENAMED$STATUS"
  92. fi
  93. if $(echo "$INDEX" | grep '^ D ' &> /dev/null); then
  94. STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS"
  95. elif $(echo "$INDEX" | grep '^D ' &> /dev/null); then
  96. STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS"
  97. elif $(echo "$INDEX" | grep '^AD ' &> /dev/null); then
  98. STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS"
  99. fi
  100. if $(command git rev-parse --verify refs/stash >/dev/null 2>&1); then
  101. STATUS="$ZSH_THEME_GIT_PROMPT_STASHED$STATUS"
  102. fi
  103. if $(echo "$INDEX" | grep '^UU ' &> /dev/null); then
  104. STATUS="$ZSH_THEME_GIT_PROMPT_UNMERGED$STATUS"
  105. fi
  106. if $(echo "$INDEX" | grep '^## .*ahead' &> /dev/null); then
  107. STATUS="$ZSH_THEME_GIT_PROMPT_AHEAD$STATUS"
  108. fi
  109. if $(echo "$INDEX" | grep '^## .*behind' &> /dev/null); then
  110. STATUS="$ZSH_THEME_GIT_PROMPT_BEHIND$STATUS"
  111. fi
  112. if $(echo "$INDEX" | grep '^## .*diverged' &> /dev/null); then
  113. STATUS="$ZSH_THEME_GIT_PROMPT_DIVERGED$STATUS"
  114. fi
  115. echo $STATUS
  116. }
  117. #compare the provided version of git to the version installed and on path
  118. #prints 1 if input version <= installed version
  119. #prints -1 otherwise
  120. function git_compare_version() {
  121. local INPUT_GIT_VERSION=$1;
  122. local INSTALLED_GIT_VERSION
  123. INPUT_GIT_VERSION=(${(s/./)INPUT_GIT_VERSION});
  124. INSTALLED_GIT_VERSION=($(command git --version 2>/dev/null));
  125. INSTALLED_GIT_VERSION=(${(s/./)INSTALLED_GIT_VERSION[3]});
  126. for i in {1..3}; do
  127. if [[ $INSTALLED_GIT_VERSION[$i] -lt $INPUT_GIT_VERSION[$i] ]]; then
  128. echo -1
  129. return 0
  130. fi
  131. done
  132. echo 1
  133. }
  134. #this is unlikely to change so make it all statically assigned
  135. POST_1_7_2_GIT=$(git_compare_version "1.7.2")
  136. #clean up the namespace slightly by removing the checker function
  137. unset -f git_compare_version