Skip to content

Commit 573dbb1

Browse files
committed
Merge remote-tracking branch 'dscho/add-p' into add-p-g4w
Let's test this for a while. Signed-off-by: Johannes Schindelin <[email protected]>
2 parents f780dae + b279b3a commit 573dbb1

28 files changed

+3454
-63
lines changed

Documentation/config/add.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ add.ignore-errors (deprecated)::
55
option of linkgit:git-add[1]. `add.ignore-errors` is deprecated,
66
as it does not follow the usual naming convention for configuration
77
variables.
8+
9+
add.interactive.useBuiltin::
10+
[EXPERIMENTAL] Set to `true` to use the experimental built-in
11+
implementation of the interactive version of linkgit:git-add[1]
12+
instead of the Perl script version. Is `false` by default.

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,7 @@ TEST_BUILTINS_OBJS += test-online-cpus.o
754754
TEST_BUILTINS_OBJS += test-parse-options.o
755755
TEST_BUILTINS_OBJS += test-path-utils.o
756756
TEST_BUILTINS_OBJS += test-pkt-line.o
757+
TEST_BUILTINS_OBJS += test-prefix-map.o
757758
TEST_BUILTINS_OBJS += test-prio-queue.o
758759
TEST_BUILTINS_OBJS += test-reach.o
759760
TEST_BUILTINS_OBJS += test-read-cache.o
@@ -848,6 +849,8 @@ LIB_H = $(shell $(FIND) . \
848849
-name '*.h' -print)
849850

850851
LIB_OBJS += abspath.o
852+
LIB_OBJS += add-interactive.o
853+
LIB_OBJS += add-patch.o
851854
LIB_OBJS += advice.o
852855
LIB_OBJS += alias.o
853856
LIB_OBJS += alloc.o
@@ -966,6 +969,7 @@ LIB_OBJS += patch-ids.o
966969
LIB_OBJS += path.o
967970
LIB_OBJS += pathspec.o
968971
LIB_OBJS += pkt-line.o
972+
LIB_OBJS += prefix-map.o
969973
LIB_OBJS += preload-index.o
970974
LIB_OBJS += pretty.o
971975
LIB_OBJS += prio-queue.o

0 commit comments

Comments
 (0)