1. 19 Jun, 2015 1 commit
  2. 25 Feb, 2015 1 commit
  3. 14 Feb, 2015 1 commit
  4. 18 Dec, 2014 3 commits
  5. 17 Dec, 2014 1 commit
  6. 16 Dec, 2014 1 commit
  7. 05 Dec, 2014 1 commit
  8. 01 Jul, 2014 1 commit
  9. 17 Apr, 2014 1 commit
  10. 04 Feb, 2014 2 commits
    • Fix typo setting sorted flag when reloading index · 43709ca8
      This fixes a typo I made for setting the sorted flag on the index
      after a reload.  That typo didn't actually cause any test failures
      so I'm also adding a test that explicitly checks that the index is
      correctly sorted after a reload when ignoring case and when not.
      Russell Belfer committed
    • Convert pqueue to just be a git_vector · 882c7742
      This updates the git_pqueue to simply be a set of specialized
      init/insert/pop functions on a git_vector.
      
      To preserve the pqueue feature of having a fixed size heap, I
      converted the "sorted" field in git_vectors to a more general
      "flags" field so that pqueue could mix in it's own flag.  This
      had a bunch of ramifications because a number of places were
      directly looking at the vector "sorted" field - I added a couple
      new git_vector helpers (is_sorted, set_sorted) so the specific
      representation of this information could be abstracted.
      Russell Belfer committed
  11. 25 Jan, 2014 1 commit
  12. 19 Nov, 2013 2 commits
  13. 14 Nov, 2013 1 commit
  14. 05 Nov, 2013 1 commit
  15. 01 Nov, 2013 2 commits
    • Convert git_index_read to have a "force" flag · 8e5a8ef8
      This is a little more intuitive than the turned-around option that
      I originally wrote.
      Russell Belfer committed
    • Make diff and status perform soft index reload · 4bf630b6
      This changes `git_index_read` to have two modes - a hard index
      reload that always resets the index to match the on-disk data
      (which was the old behavior) and a soft index reload that uses
      the timestamp / file size information and only replaces the index
      data if the file on disk has been modified.
      
      This then updates the git_status code to do a soft reload unless
      the new GIT_STATUS_OPT_NO_REFRESH flag is passed in.
      
      This also changes the behavior of the git_diff functions that use
      the index so that when an index is not explicitly passed in (i.e.
      when the functions call git_repository_index for you), they will
      also do a soft reload for you.
      
      This intentionally breaks the file signature of git_index_read
      because there has been some confusion about the behavior previously
      and it seems like all existing uses of the API should probably be
      examined to select the desired behavior.
      Russell Belfer committed
  16. 04 Oct, 2013 2 commits
  17. 19 Aug, 2013 1 commit
  18. 17 Jun, 2013 2 commits
  19. 15 May, 2013 2 commits
  20. 25 Mar, 2013 2 commits
  21. 27 Jan, 2013 1 commit
  22. 12 Jan, 2013 1 commit
  23. 04 Jan, 2013 1 commit
  24. 03 Jan, 2013 3 commits
  25. 27 Nov, 2012 2 commits
  26. 19 Nov, 2012 1 commit
  27. 10 Nov, 2012 1 commit
  28. 30 Oct, 2012 1 commit