1. 11 Sep, 2013 1 commit
  2. 01 May, 2013 1 commit
  3. 17 Mar, 2013 1 commit
  4. 08 Jan, 2013 1 commit
  5. 19 Dec, 2012 3 commits
  6. 18 Dec, 2012 1 commit
  7. 03 Dec, 2012 1 commit
  8. 01 Dec, 2012 2 commits
  9. 30 Nov, 2012 1 commit
  10. 27 Nov, 2012 2 commits
  11. 18 Nov, 2012 1 commit
  12. 09 Nov, 2012 1 commit
    • Extensions to rmdir and mkdir utilities · 331e7de9
      * Rework GIT_DIRREMOVAL values to GIT_RMDIR flags, allowing
        combinations of flags
      * Add GIT_RMDIR_EMPTY_PARENTS flag to remove parent dirs that
        are left empty after removal
      * Add GIT_MKDIR_VERIFY_DIR to give an error if item is a file,
        not a dir (previously an EEXISTS error was ignored, even for
        files) and enable this flag for git_futils_mkpath2file call
      * Improve accuracy of error messages from git_futils_mkdir
      Russell Belfer committed
  13. 26 Oct, 2012 4 commits
  14. 09 Oct, 2012 1 commit
    • Add complex checkout test and then fix checkout · 0d64bef9
      This started as a complex new test for checkout going through the
      "typechanges" test repository, but that revealed numerous issues
      with checkout, including:
      
      * complete failure with submodules
      * failure to create blobs with exec bits
      * problems when replacing a tree with a blob because the tree
        "example/" sorts after the blob "example" so the delete was
        being processed after the single file blob was created
      
      This fixes most of those problems and includes a number of other
      minor changes that made it easier to do that, including improving
      the TYPECHANGE support in diff/status, etc.
      Russell Belfer committed
  15. 28 Jul, 2012 1 commit
  16. 27 Jul, 2012 2 commits
  17. 25 Jul, 2012 7 commits
  18. 24 Jul, 2012 1 commit
  19. 07 Jul, 2012 1 commit
  20. 21 Mar, 2012 1 commit
  21. 06 Mar, 2012 2 commits
  22. 05 Mar, 2012 1 commit
  23. 27 Feb, 2012 1 commit
    • buffer: Unify `git_fbuffer` and `git_buf` · 13224ea4
      This makes so much sense that I can't believe it hasn't been done
      before. Kill the old `git_fbuffer` and read files straight into
      `git_buf` objects.
      
      Also: In order to fully support 4GB files in 32-bit systems, the
      `git_buf` implementation has been changed from using `ssize_t` for
      storage and storing negative values on allocation failure, to using
      `size_t` and changing the buffer pointer to a magical pointer on
      allocation failure.
      
      Hopefully this won't break anything.
      Vicent Martí committed
  24. 13 Feb, 2012 1 commit
  25. 17 Jan, 2012 1 commit
    • Move path related functions from fileops to path · 1744fafe
      This takes all of the functions that look up simple data about
      paths (such as `git_futils_isdir`) and moves them over to path.h
      (becoming `git_path_isdir`).  This leaves fileops.h just with
      functions that actually manipulate the filesystem or look at
      the file contents in some way.
      
      As part of this, the dir.h header which is really just for win32
      support was moved into win32 (with some minor changes).
      Russell Belfer committed