1. 15 Aug, 2013 1 commit
  2. 25 Jun, 2013 2 commits
  3. 24 Jun, 2013 1 commit
  4. 15 May, 2013 2 commits
  5. 11 May, 2013 1 commit
    • refs: remove the OID/SYMBOLIC filtering · 2b562c3a
      Nobody should ever be using anything other than ALL at this level, so
      remove the option altogether.
      
      As part of this, git_reference_foreach_glob is now implemented in the
      frontend using an iterator. Backends will later regain the ability of
      doing the glob filtering in the backend.
      Carlos Martín Nieto committed
  6. 29 Apr, 2013 1 commit
  7. 15 Apr, 2013 2 commits
  8. 09 Apr, 2013 1 commit
  9. 17 Mar, 2013 1 commit
  10. 11 Mar, 2013 1 commit
  11. 27 Jan, 2013 1 commit
  12. 08 Jan, 2013 1 commit
  13. 15 Dec, 2012 1 commit
  14. 14 Dec, 2012 2 commits
  15. 10 Dec, 2012 1 commit
  16. 30 Nov, 2012 1 commit
  17. 29 Nov, 2012 1 commit
  18. 28 Nov, 2012 1 commit
  19. 27 Nov, 2012 2 commits
  20. 14 Nov, 2012 2 commits
  21. 13 Nov, 2012 1 commit
  22. 12 Nov, 2012 2 commits
  23. 09 Nov, 2012 2 commits
  24. 06 Nov, 2012 1 commit
  25. 01 Nov, 2012 1 commit
  26. 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
  27. 30 Jul, 2012 1 commit
  28. 02 Jun, 2012 1 commit
  29. 18 May, 2012 1 commit
  30. 17 May, 2012 1 commit
  31. 23 Apr, 2012 1 commit
  32. 17 Apr, 2012 1 commit
    • Add git_reference_lookup_oid and lookup_resolved · f201d613
      Adds a new public reference function `git_reference_lookup_oid`
      that directly resolved a reference name to an OID without returning
      the intermediate `git_reference` object (hence, no free needed).
      
      Internally, this adds a `git_reference_lookup_resolved` function
      that combines looking up and resolving a reference.  This allows
      us to be more efficient with memory reallocation.
      
      The existing `git_reference_lookup` and `git_reference_resolve`
      are reimplmented on top of the new utility and a few places in the
      code are changed to use one of the two new functions.
      Russell Belfer committed