summaryrefslogtreecommitdiff
path: root/Documentation/config.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-10-05 12:36:26 -0700
committerJunio C Hamano <gitster@pobox.com>2011-10-05 12:36:26 -0700
commit9a33b691aaaae995b2da65a08d927c31106c8a3d (patch)
treed07a1efd88b32931baaf9f9d3940973cbb447bf1 /Documentation/config.txt
parent17e2b114a8f9d66d7c9263755f89cc503c94c38c (diff)
parentf7d650c06ea3242cbf0e6ae2820d5b839ab97cd5 (diff)
downloadgit-9a33b691aaaae995b2da65a08d927c31106c8a3d.tar.gz
Merge branch 'cn/eradicate-working-copy'
* cn/eradicate-working-copy: Remove 'working copy' from the documentation and C code
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r--Documentation/config.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 9ec2ae2de7..03296b7eb8 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -147,7 +147,7 @@ advice.*::
core.fileMode::
If false, the executable bit differences between the index and
- the working copy are ignored; useful on broken filesystems like FAT.
+ the working tree are ignored; useful on broken filesystems like FAT.
See linkgit:git-update-index[1].
+
The default is true, except linkgit:git-clone[1] or linkgit:git-init[1]
@@ -179,7 +179,7 @@ is created.
core.trustctime::
If false, the ctime differences between the index and the
- working copy are ignored; useful when the inode change time
+ working tree are ignored; useful when the inode change time
is regularly modified by something outside Git (file system
crawlers and some backup systems).
See linkgit:git-update-index[1]. True by default.
@@ -292,7 +292,7 @@ core.ignoreStat::
If true, commands which modify both the working tree and the index
will mark the updated paths with the "assume unchanged" bit in the
index. These marked files are then assumed to stay unchanged in the
- working copy, until you mark them otherwise manually - Git will not
+ working tree, until you mark them otherwise manually - Git will not
detect the file changes by lstat() calls. This is useful on systems
where those are very slow, such as Microsoft Windows.
See linkgit:git-update-index[1].