1. 18 Dec, 2014 3 commits
  2. 17 Dec, 2014 1 commit
  3. 16 Dec, 2014 1 commit
  4. 05 Dec, 2014 1 commit
  5. 27 Oct, 2014 1 commit
  6. 22 Oct, 2014 1 commit
    • tree-cache: correct the entry_count calculation · bb0757d5
      The entry_count field is the amount of index entries covered by a
      particular cache entry, that is how many files are there (recursively)
      under a particular directory.
      
      The current code that attemps to do this is severely defincient and is
      trying to count the amount of children, which always comes up to zero.
      
      We don't even need to recount, since we have the information during the
      cache creation. We can take that number and keep it, as we only ever
      invalidate or replace.
      Carlos Martín Nieto committed
  7. 10 Oct, 2014 3 commits
  8. 03 Aug, 2014 1 commit
  9. 01 Jul, 2014 1 commit
  10. 03 Jun, 2014 1 commit
  11. 22 May, 2014 1 commit
  12. 19 May, 2014 1 commit
  13. 17 Apr, 2014 1 commit
  14. 06 Mar, 2014 1 commit
  15. 24 Feb, 2014 1 commit
  16. 09 Feb, 2014 1 commit
  17. 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
  18. 03 Feb, 2014 2 commits
  19. 29 Jan, 2014 2 commits
  20. 25 Jan, 2014 1 commit
  21. 11 Dec, 2013 1 commit
  22. 19 Nov, 2013 2 commits
  23. 14 Nov, 2013 1 commit