1. 22 Apr, 2018 8 commits
  2. 15 Apr, 2018 1 commit
  3. 23 Jan, 2018 1 commit
  4. 14 Nov, 2017 1 commit
  5. 30 Dec, 2016 2 commits
  6. 15 Nov, 2016 1 commit
  7. 03 Nov, 2016 1 commit
  8. 02 Nov, 2016 2 commits
  9. 11 Oct, 2016 1 commit
  10. 10 Oct, 2016 4 commits
  11. 03 Oct, 2016 4 commits
  12. 21 Sep, 2016 2 commits
  13. 07 Sep, 2016 1 commit
  14. 05 Sep, 2016 1 commit
  15. 09 Aug, 2016 1 commit
  16. 07 Aug, 2016 1 commit
    • Luke Childs's avatar
      nvm plugin improvements (#5265) · a7de0fab
      Luke Childs authored
      * Export $NVM_DIR if it doesn't exist and use it when looking for nvm
      * Use $NVM_DIR when looking for nvm for completion
      * Use $NVM_DIR when looking for nvm in nvm_prompt_info
      a7de0fab
  17. 01 Aug, 2016 1 commit
    • Steven's avatar
      Updated git_commits_ahead function (#5247) · 61981951
      Steven authored
      * Function wasn't returning correct value
      * Updated underlying git command
      * Kept echo command from previous function for backwards compatibility
      * Kept function consistent with git_commits_behind
      61981951
  18. 15 Jul, 2016 1 commit
  19. 12 May, 2016 2 commits
  20. 31 Mar, 2016 1 commit
  21. 13 Jan, 2016 1 commit
  22. 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
  23. 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