1. 06 Mar, 2014 1 commit
  2. 03 Feb, 2014 1 commit
  3. 30 Jan, 2014 2 commits
  4. 25 Jan, 2014 1 commit
  5. 22 Jan, 2014 1 commit
  6. 15 Jan, 2014 1 commit
  7. 13 Dec, 2013 2 commits
  8. 11 Dec, 2013 2 commits
  9. 14 Nov, 2013 1 commit
  10. 16 Oct, 2013 1 commit
  11. 07 Aug, 2013 1 commit
  12. 24 Jun, 2013 1 commit
  13. 21 Jun, 2013 3 commits
  14. 15 May, 2013 1 commit
  15. 03 May, 2013 1 commit
  16. 01 May, 2013 1 commit
  17. 15 Apr, 2013 1 commit
  18. 09 Apr, 2013 1 commit
  19. 25 Mar, 2013 3 commits
    • Fix up checkout file contents checks · 050ab995
      This fixes of the file contents checks in checkout to give
      slightly better error messages by directly calling the underlying
      clar assertions so the file and line number of the top level call
      can be reported correctly, and renames the helpers to not start
      with "test_" since that is kind of reserved by clar.
      
      This also enables some of the CRLF tests on all platforms that
      were previously Windows only (by pushing a check of the native
      line endings into the test body).
      Russell Belfer committed
    • Test fixes and cleanup · 1098cfae
      This fixes some places where the new tests were leaving the test
      area in a bad state or were freeing data they should not free.
      It also removes code that is extraneous to the core issue and
      fixes an invalid SHA being looked up in one of the tests (which
      was failing, but for the wrong reason).
      Russell Belfer committed
    • Added some tests for issue #1397 · b8acb775
      Signed-off-by: Sven Strickroth <email@cs-ware.de>
      Sven Strickroth committed
  20. 22 Mar, 2013 1 commit
  21. 27 Feb, 2013 1 commit
  22. 13 Jan, 2013 1 commit
  23. 12 Jan, 2013 2 commits
  24. 11 Jan, 2013 2 commits
  25. 10 Jan, 2013 1 commit
  26. 06 Jan, 2013 1 commit
  27. 05 Jan, 2013 1 commit
  28. 04 Jan, 2013 4 commits
    • Fixing checkout UPDATE_ONLY and adding tests · 0d70f650
      This adds a bunch of new checkout tests and in the process I found
      a bug in the GIT_CHECKOUT_UPDATE_ONLY flag which I fixed.
      Russell Belfer committed
    • Add index updating to checkout · 5cf9875a
      Make checkout update entries in the index for all files that are
      updated and/or removed, unless flag GIT_CHECKOUT_DONT_UPDATE_INDEX
      is given.  To do this, iterators were extended to allow a little
      more introspection into the index being iterated over, etc.
      Russell Belfer committed
    • More checkout improvements · 7e5c8a5b
      This flips checkout back to be driven off the changes between
      the baseline and the target trees.  This reinstates the complex
      code for tracking the contents of the working directory, but
      overall, I think the resulting logic is easier to follow.
      Russell Belfer committed
    • Rework checkout internals (again) · cf208031
      I've tried to map out the detailed behaviors of checkout and make
      sure that we're handling the various cases correctly, along with
      providing options to allow us to emulate "git checkout" and "git
      checkout-index" with the various flags.  I've thrown away flags
      in the checkout API that seemed like clutter and added some new
      ones.  Also, I've converted the conflict callback to a general
      notification callback so we can emulate "git checkout" output and
      display "dirty" files.
      
      As of this commit, the new behavior is not working 100% but some
      of that is probably baked into tests that are not testing the
      right thing.  This is a decent snapshot point, I think, along the
      way to getting the update done.
      Russell Belfer committed