1. 09 Sep, 2013 1 commit
  2. 08 Sep, 2013 1 commit
  3. 14 Aug, 2013 1 commit
  4. 12 Aug, 2013 1 commit
  5. 10 Jul, 2013 3 commits
  6. 09 Jul, 2013 1 commit
  7. 03 Jul, 2013 2 commits
  8. 15 May, 2013 3 commits
  9. 09 May, 2013 2 commits
  10. 07 May, 2013 2 commits
  11. 05 May, 2013 9 commits
  12. 04 May, 2013 1 commit
  13. 03 May, 2013 3 commits
  14. 04 Feb, 2013 1 commit
  15. 31 Jan, 2013 3 commits
  16. 08 Jan, 2013 1 commit
  17. 29 Nov, 2012 1 commit
  18. 28 Nov, 2012 1 commit
  19. 01 Nov, 2012 1 commit
  20. 24 Aug, 2012 1 commit
  21. 04 Aug, 2012 1 commit
    • Update iterators for consistency across library · 5dca2010
      This updates all the `foreach()` type functions across the library
      that take callbacks from the user to have a consistent behavior.
      The rules are:
      
      * A callback terminates the loop by returning any non-zero value
      * Once the callback returns non-zero, it will not be called again
        (i.e. the loop stops all iteration regardless of state)
      * If the callback returns non-zero, the parent fn returns GIT_EUSER
      * Although the parent returns GIT_EUSER, no error will be set in
        the library and `giterr_last()` will return NULL if called.
      
      This commit makes those changes across the library and adds tests
      for most of the iteration APIs to make sure that they follow the
      above rules.
      Russell Belfer committed