Found 8 matching messages (0.111 seconds). Page 1 of 1.
... :19:46 -0500 Subject: [PATCH] Make mktag a builtin Signed-off- ... merge-subtree", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE }, + { "mktag", cmd_mktag, RUN_SETUP }, { "mv", cmd_mv, RUN_SETUP ... git" in the body of a message to majordomo@vger.kernel ...
git - Junio C Hamano - May 11 2008 - 13:36
... were to stop at making mktag a builtin, then the patch ... may need to become '#include "../a.h"' (or preferably to '#include ... foo" typically involves creation of builtin-foo.c and associated changes ... commit. In fact, splitting such a change into more than one ...
git - Junio C Hamano - May 12 2008 - 14:41
... -merge-subtree$X >> +BUILT_INS += git-mktag$X >> BUILT_INS += git-peek-remote$ ... LIB_OBJS += merge-file.o >> +LIB_OBJS += mktag.o > > This is unusual for ... so I didn't see a point to renaming it. Also ... would be to mktag to make it a builtin. Do you ...
git - Brandon Casey - May 12 2008 - 11:09
... -merge-tree$X -PROGRAMS += git-mktag$X PROGRAMS += git-mktree$X ... .o diff --git a/builtin.h b/builtin.h index 95126fd ... merge-subtree", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE }, + { "mktag", cmd_mktag, RUN_SETUP }, { "mv", cmd_mv, RUN_SETUP ...
git - drafnel - May 8 2008 - 22:19
This series makes mktag a builtin and unifies the verification of created tags between ... builtin.h | 1 + git.c | 1 + mktag.c | 180 -------------------------------------------------------- 5 files changed, 186 insertions ...
git - drafnel - May 8 2008 - 22:19
... >>>> BUILT_INS += git-merge-subtree$X >>>> +BUILT_INS += git-mktag$X >>>> BUILT_INS += git-peek-remote$X >>>> BUILT_INS += ... match-trees.o >>>> LIB_OBJS += merge-file.o >>>> +LIB_OBJS += mktag.o >>> This is unusual for a builtin. Why didn't it ...
git - Brandon Casey - May 12 2008 - 13:32
... $X > BUILT_INS += git-merge-subtree$X > +BUILT_INS += git-mktag$X > BUILT_INS += git-peek-remote$X > BUILT_INS += git- ... += match-trees.o > LIB_OBJS += merge-file.o > +LIB_OBJS += mktag.o This is unusual for a builtin. Why didn't it migrate to ...
git - Junio C Hamano - May 11 2008 - 13:28
... >> BUILT_INS += git-merge-subtree$X > >> +BUILT_INS += git-mktag$X > >> BUILT_INS += git-peek-remote$X > >> BUILT_INS ... trees.o > >> LIB_OBJS += merge-file.o > >> +LIB_OBJS += mktag.o > > > > This is unusual for a builtin. Why didn't it migrate ...
git - Johannes Schindelin - May 12 2008 - 13:04