1. 07 Mar, 2014 1 commit
  2. 20 Feb, 2014 1 commit
  3. 13 Jan, 2014 1 commit
  4. 19 Sep, 2013 1 commit
  5. 31 Aug, 2013 1 commit
  6. 22 May, 2013 1 commit
  7. 17 May, 2013 1 commit
  8. 29 Apr, 2013 4 commits
  9. 25 Mar, 2013 1 commit
  10. 21 Mar, 2013 2 commits
  11. 08 Jan, 2013 1 commit
  12. 04 Jan, 2013 2 commits
  13. 23 Nov, 2012 1 commit
  14. 25 Aug, 2012 1 commit
  15. 29 Jul, 2012 1 commit
  16. 24 Jul, 2012 1 commit
  17. 17 Apr, 2012 1 commit
  18. 02 Apr, 2012 1 commit
  19. 19 Mar, 2012 1 commit
    • Migrate index, oid, and utils to new errors · 7c7ff7d1
      This includes a few cleanups that came up while converting
      these files.
      
      This commit introduces a could new git error classes, including
      the catchall class: GITERR_INVALID which I'm using as the class
      for invalid and out of range values which are detected at too low
      a level of library to use a higher level classification.  For
      example, an overflow error in parsing an integer or a bad letter
      in parsing an OID string would generate an error in this class.
      Russell Belfer committed
  20. 06 Mar, 2012 1 commit
  21. 02 Mar, 2012 1 commit
    • Update diff to use iterators · 74fa4bfa
      This is a major reorganization of the diff code.  This changes
      the diff functions to use the iterators for traversing the
      content.  This allowed a lot of code to be simplified.  Also,
      this moved the functions relating to outputting a diff into a
      new file (diff_output.c).
      
      This includes a number of other changes - adding utility
      functions, extending iterators, etc. plus more tests for the
      diff code.  This also takes the example diff.c program much
      further in terms of emulating git-diff command line options.
      Russell Belfer committed
  22. 13 Feb, 2012 1 commit
  23. 28 Dec, 2011 1 commit
  24. 29 Oct, 2011 1 commit
  25. 13 Oct, 2011 1 commit
  26. 02 Oct, 2011 1 commit
  27. 30 Sep, 2011 3 commits
  28. 19 Sep, 2011 1 commit
    • Tabify everything · 87d9869f
      There were quite a few places were spaces were being used instead of
      tabs. Try to catch them all. This should hopefully not break anything.
      Except for `git blame`. Oh well.
      Vicent Marti committed
  29. 18 Sep, 2011 1 commit
    • Cleanup legal data · bb742ede
      1. The license header is technically not valid if it doesn't have a
      copyright signature.
      
      2. The COPYING file has been updated with the different licenses used in
      the project.
      
      3. The full GPLv2 header in each file annoys me.
      Vicent Marti committed
  30. 09 Jul, 2011 3 commits
    • Remove unused methods · 06c43821
      The direct-writes commit left some (slow) internals methods that
      were no longer needed. These have been removed.
      
      Also, the Reflog code was using the old `git_signature__write`, so
      it has been rewritten to use a normal buffer and the new `writebuf`
      signature writer. It's now slightly simpler and faster.
      Vicent Marti committed
    • odb: Direct writes are back · afeecf4f
      DIRECT WRITES ARE BACK AND FASTER THAN EVER. The streaming writer to the
      ODB was an overkill for the smaller objects like Commit and Tags; most
      of the streaming logic was taking too long.
      
      This commit makes Commits, Tags and Trees to be built-up in memory, and
      then written to disk in 2 pushes (header + data), instead of streaming
      everything.
      
      This is *always* faster, even for big files (since the git_filebuf class
      still does streaming writes when the memory cache overflows). This is
      also a gazillion lines of code smaller, because we don't have to
      precompute the final size of the object before starting the stream (this
      was kind of defeating the point of streaming, anyway).
      
      Blobs are still written with full streaming instead of loading them in
      memory, since this is still the fastest way.
      
      A new `git_buf` class has been added. It's missing some features, but
      it'll get there.
      Vicent Marti committed
  31. 01 Jul, 2011 1 commit