File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ git-read-tree - Reads tree information into the index
88
99SYNOPSIS
1010--------
11- 'git-read-tree' (<tree-ish> | [[-m [--aggressive] | --reset | --prefix=<prefix>] [-u | -i]] [--exclude-per-directory=<gitignore>] [--index-output=<file>] <tree-ish1> [<tree-ish2> [<tree-ish3>]])
11+ 'git-read-tree' (<tree-ish> | [[-m [--trivial] [-- aggressive] | --reset | --prefix=<prefix>] [-u | -i]] [--exclude-per-directory=<gitignore>] [--index-output=<file>] <tree-ish1> [<tree-ish2> [<tree-ish3>]])
1212
1313
1414DESCRIPTION
@@ -50,6 +50,12 @@ OPTIONS
5050 trees that are not directly related to the current
5151 working tree status into a temporary index file.
5252
53+ --trivial::
54+ Restrict three-way merge by `git-read-tree` to happen
55+ only if there is no file-level merging required, instead
56+ of resolving merge for trivial cases and leaving
57+ conflicting files unresolved in the index.
58+
5359--aggressive::
5460 Usually a three-way merge by `git-read-tree` resolves
5561 the merge for really trivial cases and leaves other
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ static void prime_cache_tree(void)
8484
8585}
8686
87- static const char read_tree_usage [] = "git-read-tree (<sha> | [[-m [--aggressive] | --reset | --prefix=<prefix>] [-u | -i]] [--exclude-per-directory=<gitignore>] [--index-output=<file>] <sha1> [<sha2> [<sha3>]])" ;
87+ static const char read_tree_usage [] = "git-read-tree (<sha> | [[-m [--trivial] [-- aggressive] | --reset | --prefix=<prefix>] [-u | -i]] [--exclude-per-directory=<gitignore>] [--index-output=<file>] <sha1> [<sha2> [<sha3>]])" ;
8888
8989static struct lock_file lock_file ;
9090
You can’t perform that action at this time.
0 commit comments