1. 10 Jun, 2013 1 commit
    • Reorganize diff and add basic diff driver · 114f5a6c
      This is a significant reorganization of the diff code to break it
      into a set of more clearly distinct files and to document the new
      organization.  Hopefully this will make the diff code easier to
      understand and to extend.
      
      This adds a new `git_diff_driver` object that looks of diff driver
      information from the attributes and the config so that things like
      function content in diff headers can be provided.  The full driver
      spec is not implemented in the commit - this is focused on the
      reorganization of the code and putting the driver hooks in place.
      
      This also removes a few #includes from src/repository.h that were
      overbroad, but as a result required extra #includes in a variety
      of places since including src/repository.h no longer results in
      pulling in the whole world.
      Russell Belfer committed
  2. 04 May, 2013 1 commit
  3. 05 Feb, 2013 2 commits
  4. 31 Jan, 2013 3 commits
  5. 09 Jan, 2013 2 commits
  6. 04 Jan, 2013 1 commit
  7. 02 Jan, 2013 2 commits
  8. 20 Dec, 2012 2 commits
  9. 14 Dec, 2012 2 commits
  10. 13 Dec, 2012 3 commits
  11. 27 Nov, 2012 2 commits
  12. 23 Nov, 2012 1 commit
    • Reset all static variables to NULL in clar's __cleanup · 9094d30b
      Without this change, any failed assertion in the second (or a later) test
      inside a test suite has a chance of double deleting memory, resulting in
      a heap corruption. See #1096 for details.
      
      This leaves alone the test cases where we "just" use cl_git_sandbox_init()
      and cl_git_sandbox_cleanup(). These methods already take good care to not
      double delete a repository.
      
      Fixes #1096
      Sascha Cunz committed
  13. 09 Nov, 2012 2 commits
    • Fix warnings and valgrind issues · 757b4065
      This fixes some various warnings that showed up in Travis and
      a couple uses of uninitialized memory and one memory leak.
      Russell Belfer committed
    • Rework checkout with new strategy options · ad9a921b
      This is a major reworking of checkout strategy options.  The
      checkout code is now sensitive to the contents of the HEAD tree
      and the new options allow you to update the working tree so that
      it will match the index content only when it previously matched
      the contents of the HEAD.  This allows you to, for example, to
      distinguish between removing files that are in the HEAD but not
      in the index, vs just removing all untracked files.
      
      Because of various corner cases that arise, etc., this required
      some additional capabilities in rmdir and other utility functions.
      
      This includes the beginnings of an implementation of code to read
      a partial tree into the index based on a pathspec, but that is
      not enabled because of the possibility of creating conflicting
      index entries.
      Russell Belfer committed
  14. 25 Oct, 2012 1 commit
  15. 24 Oct, 2012 1 commit
  16. 20 Oct, 2012 3 commits
  17. 15 Oct, 2012 5 commits