diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2008-10-09 10:24:14 -0700 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-10-09 10:24:14 -0700 |
commit | ed187bd5936267744aa579ab1a33f0b07862a74b (patch) | |
tree | 69d7bcb71557ef35d8fc9300d8d0cf986133cd1e /Documentation | |
parent | 78a935d48b28ebf5b1af348d7e57763f2955afd1 (diff) | |
parent | adbc0b6b6e57c11ca49779d01f549260a920a97d (diff) | |
download | git-ed187bd5936267744aa579ab1a33f0b07862a74b.tar.gz |
Merge branch 'dp/cywginstat'
* dp/cywginstat:
cygwin: Use native Win32 API for stat
mingw: move common functionality to win32.h
add have_git_dir() function
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index bbe38ccaa2..da18a5458e 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -117,6 +117,15 @@ core.fileMode:: the working copy are ignored; useful on broken filesystems like FAT. See linkgit:git-update-index[1]. True by default. +core.ignoreCygwinFSTricks:: + This option is only used by Cygwin implementation of Git. If false, + the Cygwin stat() and lstat() functions are used. This may be useful + if your repository consists of a few separate directories joined in + one hierarchy using Cygwin mount. If true, Git uses native Win32 API + whenever it is possible and falls back to Cygwin functions only to + handle symbol links. The native mode is more than twice faster than + normal Cygwin l/stat() functions. True by default. + core.trustctime:: If false, the ctime differences between the index and the working copy are ignored; useful when the inode change time |