1. 15 Jul, 2016 1 commit
  2. 31 Mar, 2016 1 commit
  3. 13 Jan, 2016 1 commit
  4. 17 Dec, 2015 1 commit
    • Marc Cornellà's avatar
      Put `local var` declaration in its own line in lib/git.zsh · 08423849
      Marc Cornellà authored
      In places, the local statement will override the exit code and the written
      command won't have the effect intended when it was written.
      
      For example, when it's not inside a git repo the exit code won't be true,
      but the local statement will make it true regardless. See #4708.
      08423849
  5. 15 Dec, 2015 1 commit
    • Andrew Janke's avatar
      Move current_branch() from git plugin to core lib/git.zsh · 9f552130
      Andrew Janke authored
      Fixes #4085: core -> plugin dependency issue.
      Rename it to git_current_branch for clarity that it's git-specific.
      Update all plugins that were calling it to use new name.
      Fix variable leaks by making more variables in lib/git.zsh local.
      Have lib/git.zsh use [[ ]] instead of [ ] everywhere.
      9f552130
  6. 23 Sep, 2015 2 commits
  7. 15 Jun, 2015 1 commit
  8. 10 Jun, 2015 2 commits
    • Adam Lindberg's avatar
      Add git_prompt_behind and git_prompt_exists · 2d40cc0b
      Adam Lindberg authored
      This adds two new theme functions for git:
      * `git_prompt_behind` works in a identical fashion to `git_prompt_ahead`
        and will output a format variable (`ZSH_THEME_GIT_PROMPT_BEHIND`) if
        the branch is behind.
      * `git_prompt_remote` will output one format variable if the branch
        exists on remote (`ZSH_THEME_GIT_PROMPT_REMOTE_EXISTS`), and another
        if the branch is unpublished (`ZSH_THEME_GIT_PROMPT_REMOTE_MISSING`).
      
      The old `git_prompt_ahead` has been changed. Using git log is subject
      to formatting in .gitconfig, which can be overridden and will break
      this function. Relying on rev-list is much more stable.
      2d40cc0b
    • leif.hanack's avatar
  9. 19 Nov, 2014 1 commit
  10. 16 Nov, 2014 1 commit
  11. 03 Jul, 2014 2 commits
  12. 28 Jun, 2014 2 commits
  13. 10 Jun, 2014 1 commit
    • ncanceill's avatar
      return 0 when not a git repo · 7fbbf28e
      ncanceill authored
      before, 128 was returned, which could display an error,
      but out of a git repo this should exit silently
      fixes #2226
      7fbbf28e
  14. 26 May, 2014 1 commit
  15. 25 May, 2014 2 commits
  16. 06 Dec, 2013 1 commit
  17. 20 Nov, 2013 1 commit
  18. 12 Jun, 2013 1 commit
  19. 19 May, 2013 1 commit
  20. 22 Apr, 2013 1 commit
  21. 21 Apr, 2013 1 commit
  22. 04 Apr, 2013 1 commit
  23. 13 Mar, 2013 1 commit
  24. 11 Mar, 2013 1 commit
  25. 19 Feb, 2013 1 commit
  26. 13 Feb, 2013 2 commits
  27. 30 Jan, 2013 1 commit
  28. 27 Jan, 2013 1 commit
  29. 07 Dec, 2012 1 commit
  30. 31 Jul, 2012 1 commit
  31. 29 Jul, 2012 1 commit
    • Caio Romão's avatar
      Add branch status support to git_prompt_status · a3c2a2f6
      Caio Romão authored
      This patch makes git_prompt_status support three new status variables:
      
       - ZSH_THEME_GIT_PROMPT_AHEAD
       - ZSH_THEME_GIT_PROMPT_BEHIND
       - ZSH_THEME_GIT_PROMPT_DIVERGED
      
      With these extra variables it's easy to see (1) if you have commits in
      your local branch that weren't pushed to the remote (AHEAD), (2) if
      there are commits in the remote that you haven't merged/rebased yet
      (BEHIND) or (3) if you have local unpushed commits AND the remote has
      some commits you haven't merged yet (DIVERGED).
      
      Refer to the first line displayed on `git status -b --porcelain`.
      
      An example setup in a .zsh-theme file would be:
      
      ZSH_THEME_GIT_PROMPT_AHEAD="↑"
      ZSH_THEME_GIT_PROMPT_BEHIND="↓"
      ZSH_THEME_GIT_PROMPT_DIVERGED=""
      a3c2a2f6
  32. 18 Apr, 2012 1 commit
    • Martin Meredith's avatar
      Add option to disable status notification · 8ce35df2
      Martin Meredith authored
      For certain git repositories, this slows down usage
      of the shell horifically.
      
      This option can be set with
      
          git config --add oh-my-zsh.hide-status 1
      
      which will disable checking/showing the status notification
      8ce35df2
  33. 21 Feb, 2012 1 commit
  34. 08 Feb, 2012 1 commit