1. 17 Sep, 2015 1 commit
    • git_futils_mkdir_*: make a relative-to-base mkdir · ac2fba0e
      Untangle git_futils_mkdir from git_futils_mkdir_ext - the latter
      assumes that we own everything beneath the base, as if it were
      being called with a base of the repository or working directory,
      and is tailored towards checkout and ensuring that there is no
      bogosity beneath the base that must be cleaned up.
      
      This is (at best) slow and (at worst) unsafe in the larger context
      of a filesystem where we do not own things and cannot do things like
      unlink symlinks that are in our way.
      Edward Thomson committed
  2. 04 Sep, 2015 1 commit
  3. 14 Aug, 2015 1 commit
  4. 19 Jun, 2015 1 commit
  5. 25 Feb, 2015 1 commit
  6. 14 Feb, 2015 1 commit
  7. 18 Dec, 2014 3 commits
  8. 17 Dec, 2014 1 commit
  9. 16 Dec, 2014 1 commit
  10. 05 Dec, 2014 1 commit
  11. 01 Jul, 2014 1 commit
  12. 17 Apr, 2014 1 commit
  13. 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
  14. 25 Jan, 2014 1 commit
  15. 19 Nov, 2013 2 commits
  16. 14 Nov, 2013 1 commit
  17. 05 Nov, 2013 1 commit
  18. 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
  19. 04 Oct, 2013 2 commits
  20. 19 Aug, 2013 1 commit
  21. 17 Jun, 2013 2 commits
  22. 15 May, 2013 2 commits
  23. 25 Mar, 2013 2 commits
  24. 27 Jan, 2013 1 commit
  25. 12 Jan, 2013 1 commit
  26. 04 Jan, 2013 1 commit
  27. 03 Jan, 2013 3 commits
  28. 27 Nov, 2012 2 commits