1. 25 Nov, 2019 1 commit
  2. 19 May, 2019 1 commit
  3. 01 Feb, 2018 1 commit
  4. 03 Apr, 2017 2 commits
  5. 06 Oct, 2016 1 commit
  6. 16 Feb, 2016 1 commit
  7. 12 Feb, 2016 1 commit
  8. 16 Jun, 2015 1 commit
  9. 28 Apr, 2015 2 commits
  10. 06 Mar, 2015 1 commit
  11. 03 Mar, 2015 1 commit
  12. 16 Dec, 2014 1 commit
    • win32: use NT-prefixed "\\?\" paths · cceae9a2
      When turning UTF-8 paths into UCS-2 paths for Windows, always use
      the \\?\-prefixed paths.  Because this bypasses the system's
      path canonicalization, handle the canonicalization functions ourselves.
      
      We must:
       1. always use a backslash as a directory separator
       2. only use a single backslash between directories
       3. not rely on the system to translate "." and ".." in paths
       4. remove trailing backslashes, except at the drive root (C:\)
      Edward Thomson committed
  13. 05 Aug, 2014 2 commits
  14. 06 Jul, 2014 1 commit
  15. 16 May, 2014 1 commit
    • indexer: mmap fixes for Windows · 0731a5b4
      Windows has its own ftruncate() called _chsize_s().
      
      p_mkstemp() is changed to use p_open() so we can make sure we open for
      writing; the addition of exclusive create is a good thing to do
      regardless, as we want a temporary path for ourselves.
      
      Lastly, MSVC doesn't quite know how to add two numbers if one of them is a
      void pointer, so let's alias it to unsigned char.C
      Carlos Martín Nieto committed
  16. 22 Apr, 2014 1 commit
  17. 20 Apr, 2014 1 commit
  18. 19 Aug, 2013 1 commit
  19. 13 Aug, 2013 4 commits
  20. 08 Aug, 2013 2 commits
  21. 07 Aug, 2013 1 commit
  22. 05 Aug, 2013 1 commit
  23. 08 Jan, 2013 1 commit
  24. 15 Nov, 2012 1 commit
    • Add POSIX compat lstat() variant for win32 · cccacac5
      The existing p_lstat implementation on win32 is not quite POSIX
      compliant when setting errno to ENOTDIR.  This adds an option to
      make is be compliant so that code (such as checkout) that cares
      to have separate behavior for ENOTDIR can use it portably.
      
      This also contains a couple of other minor cleanups in the
      posix_w32.c implementations to avoid unnecessary work.
      Russell Belfer committed
  25. 07 Nov, 2012 1 commit
  26. 15 Oct, 2012 1 commit
  27. 29 Aug, 2012 2 commits
  28. 23 Aug, 2012 1 commit
  29. 22 Aug, 2012 1 commit
    • Add template dir and set gid to repo init · ca1b6e54
      This extends git_repository_init_ext further with support for
      initializing the repository from an external template directory
      and with support for the "create shared" type flags that make a
      set GID repository directory.
      
      This also adds tests for much of the new functionality to the
      existing `repo/init.c` test suite.
      
      Also, this adds a bunch of new utility functions including a
      very general purpose `git_futils_mkdir` (with the ability to
      make paths and to chmod the paths post-creation) and a file
      tree copying function `git_futils_cp_r`.  Also, this includes
      some new path functions that were useful to keep the code
      simple.
      Russell Belfer committed
  30. 16 Jul, 2012 1 commit
  31. 06 Jun, 2012 1 commit
  32. 15 May, 2012 1 commit