1. 14 Jan, 2014 1 commit
  2. 23 Nov, 2013 1 commit
  3. 02 Oct, 2013 3 commits
  4. 11 Sep, 2013 1 commit
  5. 01 May, 2013 1 commit
  6. 17 Mar, 2013 1 commit
  7. 08 Jan, 2013 1 commit
  8. 19 Dec, 2012 3 commits
  9. 18 Dec, 2012 1 commit
  10. 03 Dec, 2012 1 commit
  11. 01 Dec, 2012 2 commits
  12. 30 Nov, 2012 1 commit
  13. 27 Nov, 2012 2 commits
  14. 18 Nov, 2012 1 commit
  15. 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
  16. 26 Oct, 2012 4 commits
  17. 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
  18. 28 Jul, 2012 1 commit
  19. 27 Jul, 2012 2 commits
  20. 25 Jul, 2012 7 commits
  21. 24 Jul, 2012 1 commit
  22. 07 Jul, 2012 1 commit
  23. 21 Mar, 2012 1 commit
  24. 06 Mar, 2012 1 commit
    • error-handling: Repository · cb8a7961
      This also includes droping `git_buf_lasterror` because it makes no sense
      in the new system. Note that in most of the places were it has been
      dropped, the code needs cleanup. I.e. GIT_ENOMEM is going away, so
      instead it should return a generic `-1` and obviously not throw
      anything.
      Vicent Martí committed