Skip to content

Commit a5ad8d1

Browse files
committed
Merge branch 'cn/eradicate-working-copy' into maint
* cn/eradicate-working-copy: Remove 'working copy' from the documentation and C code
2 parents f0911b9 + f7d650c commit a5ad8d1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Documentation/config.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ advice.*::
147147

148148
core.fileMode::
149149
If false, the executable bit differences between the index and
150-
the working copy are ignored; useful on broken filesystems like FAT.
150+
the working tree are ignored; useful on broken filesystems like FAT.
151151
See linkgit:git-update-index[1].
152152
+
153153
The default is true, except linkgit:git-clone[1] or linkgit:git-init[1]
@@ -179,7 +179,7 @@ is created.
179179

180180
core.trustctime::
181181
If false, the ctime differences between the index and the
182-
working copy are ignored; useful when the inode change time
182+
working tree are ignored; useful when the inode change time
183183
is regularly modified by something outside Git (file system
184184
crawlers and some backup systems).
185185
See linkgit:git-update-index[1]. True by default.
@@ -292,7 +292,7 @@ core.ignoreStat::
292292
If true, commands which modify both the working tree and the index
293293
will mark the updated paths with the "assume unchanged" bit in the
294294
index. These marked files are then assumed to stay unchanged in the
295-
working copy, until you mark them otherwise manually - Git will not
295+
working tree, until you mark them otherwise manually - Git will not
296296
detect the file changes by lstat() calls. This is useful on systems
297297
where those are very slow, such as Microsoft Windows.
298298
See linkgit:git-update-index[1].

Documentation/git-svn.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ Any other arguments are passed directly to 'git log'
318318
Show what revision and author last modified each line of a file. The
319319
output of this mode is format-compatible with the output of
320320
`svn blame' by default. Like the SVN blame command,
321-
local uncommitted changes in the working copy are ignored;
321+
local uncommitted changes in the working tree are ignored;
322322
the version of the file in the HEAD revision is annotated. Unknown
323323
arguments are passed directly to 'git blame'.
324324
+

diff-lib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ static void show_new_file(struct rev_info *revs,
289289

290290
/*
291291
* New file in the index: it might actually be different in
292-
* the working copy.
292+
* the working tree.
293293
*/
294294
if (get_stat_data(new, &sha1, &mode, cached, match_missing,
295295
&dirty_submodule, &revs->diffopt) < 0)

merge-recursive.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ static void record_df_conflict_files(struct merge_options *o,
390390
struct string_list *entries)
391391
{
392392
/* If there is a D/F conflict and the file for such a conflict
393-
* currently exist in the working copy, we want to allow it to be
393+
* currently exist in the working tree, we want to allow it to be
394394
* removed to make room for the corresponding directory if needed.
395395
* The files underneath the directories of such D/F conflicts will
396396
* be processed before the corresponding file involved in the D/F

0 commit comments

Comments
 (0)