Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2023-07-21 15:41:56 +0300
committerJunio C Hamano <gitster@pobox.com>2023-07-21 20:02:59 +0300
commit3a5f30874120880ddaa53d0db4c3b4ec0a07297a (patch)
tree12dc1eeceeb252e4ff15219f974c2f62286997ec /environment.h
parentfb7d80edcae482f4fa5d4be0227dc3054734e5f3 (diff)
pack-objects: fix --no-keep-true-parents
Since 99fb6e04cb (pack-objects: convert to use parse_options(), 2012-02-01) git pack-objects has accepted --no-keep-true-parents, but this option does the same as --keep-true-parents. That's because it's defined using OPT_SET_INT with a value of 0, which sets 0 when negated as well. Turn --no-keep-true-parents into the opposite of --keep-true-parents by using OPT_BOOL and storing the option's status directly in a variable named "grafts_keep_true_parents" instead of in negative form in "grafts_replace_parents". Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'environment.h')
-rw-r--r--environment.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.h b/environment.h
index 30cb7e0fa3..96bc95bbeb 100644
--- a/environment.h
+++ b/environment.h
@@ -194,7 +194,7 @@ extern enum object_creation_mode object_creation_mode;
extern char *notes_ref_name;
-extern int grafts_replace_parents;
+extern int grafts_keep_true_parents;
extern int repository_format_precious_objects;
extern int repository_format_worktree_config;