Skip to content

Commit

Permalink
Move 'builtin-*' into a 'builtin/' subdirectory
Browse files Browse the repository at this point in the history
This shrinks the top-level directory a bit, and makes it much more
pleasant to use auto-completion on the thing. Instead of

	[torvalds@nehalem git]$ em buil<tab>
	Display all 180 possibilities? (y or n)
	[torvalds@nehalem git]$ em builtin-sh
	builtin-shortlog.c     builtin-show-branch.c  builtin-show-ref.c
	builtin-shortlog.o     builtin-show-branch.o  builtin-show-ref.o
	[torvalds@nehalem git]$ em builtin-shor<tab>
	builtin-shortlog.c  builtin-shortlog.o
	[torvalds@nehalem git]$ em builtin-shortlog.c

you get

	[torvalds@nehalem git]$ em buil<tab>		[type]
	builtin/   builtin.h
	[torvalds@nehalem git]$ em builtin		[auto-completes to]
	[torvalds@nehalem git]$ em builtin/sh<tab>	[type]
	shortlog.c     shortlog.o     show-branch.c  show-branch.o  show-ref.c     show-ref.o
	[torvalds@nehalem git]$ em builtin/sho		[auto-completes to]
	[torvalds@nehalem git]$ em builtin/shor<tab>	[type]
	shortlog.c  shortlog.o
	[torvalds@nehalem git]$ em builtin/shortlog.c

which doesn't seem all that different, but not having that annoying
break in "Display all 180 possibilities?" is quite a relief.

NOTE! If you do this in a clean tree (no object files etc), or using an
editor that has auto-completion rules that ignores '*.o' files, you
won't see that annoying 'Display all 180 possibilities?' message - it
will just show the choices instead.  I think bash has some cut-off
around 100 choices or something.

So the reason I see this is that I'm using an odd editory, and thus
don't have the rules to cut down on auto-completion.  But you can
simulate that by using 'ls' instead, or something similar.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
torvalds authored and gitster committed Feb 22, 2010
1 parent 241b925 commit 81b50f3
Show file tree
Hide file tree
Showing 90 changed files with 97 additions and 97 deletions.
194 changes: 97 additions & 97 deletions Makefile
Expand Up @@ -301,7 +301,7 @@ SPARSE_FLAGS = -D__BIG_ENDIAN__ -D__powerpc__
# Those must not be GNU-specific; they are shared with perl/ which may # Those must not be GNU-specific; they are shared with perl/ which may
# be built by a different compiler. (Note that this is an artifact now # be built by a different compiler. (Note that this is an artifact now
# but it still might be nice to keep that distinction.) # but it still might be nice to keep that distinction.)
BASIC_CFLAGS = BASIC_CFLAGS = -I.
BASIC_LDFLAGS = BASIC_LDFLAGS =


# Guard against environment variables # Guard against environment variables
Expand Down Expand Up @@ -370,8 +370,8 @@ PROGRAMS += git-upload-pack$X
PROGRAMS += git-http-backend$X PROGRAMS += git-http-backend$X


# List built-in command $C whose implementation cmd_$C() is not in # List built-in command $C whose implementation cmd_$C() is not in
# builtin-$C.o but is linked in as part of some other command. # builtin/$C.o but is linked in as part of some other command.
BUILT_INS += $(patsubst builtin-%.o,git-%$X,$(BUILTIN_OBJS)) BUILT_INS += $(patsubst builtin/%.o,git-%$X,$(BUILTIN_OBJS))


BUILT_INS += git-cherry$X BUILT_INS += git-cherry$X
BUILT_INS += git-cherry-pick$X BUILT_INS += git-cherry-pick$X
Expand Down Expand Up @@ -594,95 +594,95 @@ LIB_OBJS += ws.o
LIB_OBJS += wt-status.o LIB_OBJS += wt-status.o
LIB_OBJS += xdiff-interface.o LIB_OBJS += xdiff-interface.o


BUILTIN_OBJS += builtin-add.o BUILTIN_OBJS += builtin/add.o
BUILTIN_OBJS += builtin-annotate.o BUILTIN_OBJS += builtin/annotate.o
BUILTIN_OBJS += builtin-apply.o BUILTIN_OBJS += builtin/apply.o
BUILTIN_OBJS += builtin-archive.o BUILTIN_OBJS += builtin/archive.o
BUILTIN_OBJS += builtin-bisect--helper.o BUILTIN_OBJS += builtin/bisect--helper.o
BUILTIN_OBJS += builtin-blame.o BUILTIN_OBJS += builtin/blame.o
BUILTIN_OBJS += builtin-branch.o BUILTIN_OBJS += builtin/branch.o
BUILTIN_OBJS += builtin-bundle.o BUILTIN_OBJS += builtin/bundle.o
BUILTIN_OBJS += builtin-cat-file.o BUILTIN_OBJS += builtin/cat-file.o
BUILTIN_OBJS += builtin-check-attr.o BUILTIN_OBJS += builtin/check-attr.o
BUILTIN_OBJS += builtin-check-ref-format.o BUILTIN_OBJS += builtin/check-ref-format.o
BUILTIN_OBJS += builtin-checkout-index.o BUILTIN_OBJS += builtin/checkout-index.o
BUILTIN_OBJS += builtin-checkout.o BUILTIN_OBJS += builtin/checkout.o
BUILTIN_OBJS += builtin-clean.o BUILTIN_OBJS += builtin/clean.o
BUILTIN_OBJS += builtin-clone.o BUILTIN_OBJS += builtin/clone.o
BUILTIN_OBJS += builtin-commit-tree.o BUILTIN_OBJS += builtin/commit-tree.o
BUILTIN_OBJS += builtin-commit.o BUILTIN_OBJS += builtin/commit.o
BUILTIN_OBJS += builtin-config.o BUILTIN_OBJS += builtin/config.o
BUILTIN_OBJS += builtin-count-objects.o BUILTIN_OBJS += builtin/count-objects.o
BUILTIN_OBJS += builtin-describe.o BUILTIN_OBJS += builtin/describe.o
BUILTIN_OBJS += builtin-diff-files.o BUILTIN_OBJS += builtin/diff-files.o
BUILTIN_OBJS += builtin-diff-index.o BUILTIN_OBJS += builtin/diff-index.o
BUILTIN_OBJS += builtin-diff-tree.o BUILTIN_OBJS += builtin/diff-tree.o
BUILTIN_OBJS += builtin-diff.o BUILTIN_OBJS += builtin/diff.o
BUILTIN_OBJS += builtin-fast-export.o BUILTIN_OBJS += builtin/fast-export.o
BUILTIN_OBJS += builtin-fetch-pack.o BUILTIN_OBJS += builtin/fetch-pack.o
BUILTIN_OBJS += builtin-fetch.o BUILTIN_OBJS += builtin/fetch.o
BUILTIN_OBJS += builtin-fmt-merge-msg.o BUILTIN_OBJS += builtin/fmt-merge-msg.o
BUILTIN_OBJS += builtin-for-each-ref.o BUILTIN_OBJS += builtin/for-each-ref.o
BUILTIN_OBJS += builtin-fsck.o BUILTIN_OBJS += builtin/fsck.o
BUILTIN_OBJS += builtin-gc.o BUILTIN_OBJS += builtin/gc.o
BUILTIN_OBJS += builtin-grep.o BUILTIN_OBJS += builtin/grep.o
BUILTIN_OBJS += builtin-hash-object.o BUILTIN_OBJS += builtin/hash-object.o
BUILTIN_OBJS += builtin-help.o BUILTIN_OBJS += builtin/help.o
BUILTIN_OBJS += builtin-index-pack.o BUILTIN_OBJS += builtin/index-pack.o
BUILTIN_OBJS += builtin-init-db.o BUILTIN_OBJS += builtin/init-db.o
BUILTIN_OBJS += builtin-log.o BUILTIN_OBJS += builtin/log.o
BUILTIN_OBJS += builtin-ls-files.o BUILTIN_OBJS += builtin/ls-files.o
BUILTIN_OBJS += builtin-ls-remote.o BUILTIN_OBJS += builtin/ls-remote.o
BUILTIN_OBJS += builtin-ls-tree.o BUILTIN_OBJS += builtin/ls-tree.o
BUILTIN_OBJS += builtin-mailinfo.o BUILTIN_OBJS += builtin/mailinfo.o
BUILTIN_OBJS += builtin-mailsplit.o BUILTIN_OBJS += builtin/mailsplit.o
BUILTIN_OBJS += builtin-merge.o BUILTIN_OBJS += builtin/merge.o
BUILTIN_OBJS += builtin-merge-base.o BUILTIN_OBJS += builtin/merge-base.o
BUILTIN_OBJS += builtin-merge-file.o BUILTIN_OBJS += builtin/merge-file.o
BUILTIN_OBJS += builtin-merge-index.o BUILTIN_OBJS += builtin/merge-index.o
BUILTIN_OBJS += builtin-merge-ours.o BUILTIN_OBJS += builtin/merge-ours.o
BUILTIN_OBJS += builtin-merge-recursive.o BUILTIN_OBJS += builtin/merge-recursive.o
BUILTIN_OBJS += builtin-merge-tree.o BUILTIN_OBJS += builtin/merge-tree.o
BUILTIN_OBJS += builtin-mktag.o BUILTIN_OBJS += builtin/mktag.o
BUILTIN_OBJS += builtin-mktree.o BUILTIN_OBJS += builtin/mktree.o
BUILTIN_OBJS += builtin-mv.o BUILTIN_OBJS += builtin/mv.o
BUILTIN_OBJS += builtin-name-rev.o BUILTIN_OBJS += builtin/name-rev.o
BUILTIN_OBJS += builtin-pack-objects.o BUILTIN_OBJS += builtin/pack-objects.o
BUILTIN_OBJS += builtin-pack-redundant.o BUILTIN_OBJS += builtin/pack-redundant.o
BUILTIN_OBJS += builtin-pack-refs.o BUILTIN_OBJS += builtin/pack-refs.o
BUILTIN_OBJS += builtin-patch-id.o BUILTIN_OBJS += builtin/patch-id.o
BUILTIN_OBJS += builtin-prune-packed.o BUILTIN_OBJS += builtin/prune-packed.o
BUILTIN_OBJS += builtin-prune.o BUILTIN_OBJS += builtin/prune.o
BUILTIN_OBJS += builtin-push.o BUILTIN_OBJS += builtin/push.o
BUILTIN_OBJS += builtin-read-tree.o BUILTIN_OBJS += builtin/read-tree.o
BUILTIN_OBJS += builtin-receive-pack.o BUILTIN_OBJS += builtin/receive-pack.o
BUILTIN_OBJS += builtin-reflog.o BUILTIN_OBJS += builtin/reflog.o
BUILTIN_OBJS += builtin-remote.o BUILTIN_OBJS += builtin/remote.o
BUILTIN_OBJS += builtin-replace.o BUILTIN_OBJS += builtin/replace.o
BUILTIN_OBJS += builtin-rerere.o BUILTIN_OBJS += builtin/rerere.o
BUILTIN_OBJS += builtin-reset.o BUILTIN_OBJS += builtin/reset.o
BUILTIN_OBJS += builtin-rev-list.o BUILTIN_OBJS += builtin/rev-list.o
BUILTIN_OBJS += builtin-rev-parse.o BUILTIN_OBJS += builtin/rev-parse.o
BUILTIN_OBJS += builtin-revert.o BUILTIN_OBJS += builtin/revert.o
BUILTIN_OBJS += builtin-rm.o BUILTIN_OBJS += builtin/rm.o
BUILTIN_OBJS += builtin-send-pack.o BUILTIN_OBJS += builtin/send-pack.o
BUILTIN_OBJS += builtin-shortlog.o BUILTIN_OBJS += builtin/shortlog.o
BUILTIN_OBJS += builtin-show-branch.o BUILTIN_OBJS += builtin/show-branch.o
BUILTIN_OBJS += builtin-show-ref.o BUILTIN_OBJS += builtin/show-ref.o
BUILTIN_OBJS += builtin-stripspace.o BUILTIN_OBJS += builtin/stripspace.o
BUILTIN_OBJS += builtin-symbolic-ref.o BUILTIN_OBJS += builtin/symbolic-ref.o
BUILTIN_OBJS += builtin-tag.o BUILTIN_OBJS += builtin/tag.o
BUILTIN_OBJS += builtin-tar-tree.o BUILTIN_OBJS += builtin/tar-tree.o
BUILTIN_OBJS += builtin-unpack-file.o BUILTIN_OBJS += builtin/unpack-file.o
BUILTIN_OBJS += builtin-unpack-objects.o BUILTIN_OBJS += builtin/unpack-objects.o
BUILTIN_OBJS += builtin-update-index.o BUILTIN_OBJS += builtin/update-index.o
BUILTIN_OBJS += builtin-update-ref.o BUILTIN_OBJS += builtin/update-ref.o
BUILTIN_OBJS += builtin-update-server-info.o BUILTIN_OBJS += builtin/update-server-info.o
BUILTIN_OBJS += builtin-upload-archive.o BUILTIN_OBJS += builtin/upload-archive.o
BUILTIN_OBJS += builtin-var.o BUILTIN_OBJS += builtin/var.o
BUILTIN_OBJS += builtin-verify-pack.o BUILTIN_OBJS += builtin/verify-pack.o
BUILTIN_OBJS += builtin-verify-tag.o BUILTIN_OBJS += builtin/verify-tag.o
BUILTIN_OBJS += builtin-write-tree.o BUILTIN_OBJS += builtin/write-tree.o


GITLIBS = $(LIB_FILE) $(XDIFF_LIB) GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
EXTLIBS = EXTLIBS =
Expand Down Expand Up @@ -1447,8 +1447,8 @@ git$X: git.o $(BUILTIN_OBJS) $(GITLIBS)
$(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ git.o \ $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ git.o \
$(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS) $(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS)


builtin-help.o: common-cmds.h builtin/help.o: common-cmds.h
builtin-help.s builtin-help.o: ALL_CFLAGS += \ builtin/help.s builtin/help.o: ALL_CFLAGS += \
'-DGIT_HTML_PATH="$(htmldir_SQ)"' \ '-DGIT_HTML_PATH="$(htmldir_SQ)"' \
'-DGIT_MAN_PATH="$(mandir_SQ)"' \ '-DGIT_MAN_PATH="$(mandir_SQ)"' \
'-DGIT_INFO_PATH="$(infodir_SQ)"' '-DGIT_INFO_PATH="$(infodir_SQ)"'
Expand Down Expand Up @@ -1604,7 +1604,7 @@ exec_cmd.s exec_cmd.o: ALL_CFLAGS += \
'-DBINDIR="$(bindir_relative_SQ)"' \ '-DBINDIR="$(bindir_relative_SQ)"' \
'-DPREFIX="$(prefix_SQ)"' '-DPREFIX="$(prefix_SQ)"'


builtin-init-db.s builtin-init-db.o: ALL_CFLAGS += \ builtin/init-db.s builtin/init-db.o: ALL_CFLAGS += \
-DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"' -DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"'


config.s config.o: ALL_CFLAGS += -DETC_GITCONFIG='"$(ETC_GITCONFIG_SQ)"' config.s config.o: ALL_CFLAGS += -DETC_GITCONFIG='"$(ETC_GITCONFIG_SQ)"'
Expand Down Expand Up @@ -1646,7 +1646,7 @@ $(REMOTE_CURL_PRIMARY): remote-curl.o http.o http-walker.o $(GITLIBS)


$(LIB_OBJS) $(BUILTIN_OBJS): $(LIB_H) $(LIB_OBJS) $(BUILTIN_OBJS): $(LIB_H)
$(patsubst git-%$X,%.o,$(PROGRAMS)) git.o: $(LIB_H) $(wildcard */*.h) $(patsubst git-%$X,%.o,$(PROGRAMS)) git.o: $(LIB_H) $(wildcard */*.h)
builtin-revert.o wt-status.o: wt-status.h builtin/revert.o wt-status.o: wt-status.h


$(LIB_FILE): $(LIB_OBJS) $(LIB_FILE): $(LIB_OBJS)
$(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS) $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS)
Expand Down Expand Up @@ -1934,7 +1934,7 @@ distclean: clean


clean: clean:
$(RM) *.o block-sha1/*.o ppc/*.o compat/*.o compat/*/*.o xdiff/*.o \ $(RM) *.o block-sha1/*.o ppc/*.o compat/*.o compat/*/*.o xdiff/*.o \
$(LIB_FILE) $(XDIFF_LIB) builtin/*.o $(LIB_FILE) $(XDIFF_LIB)
$(RM) $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git$X $(RM) $(ALL_PROGRAMS) $(SCRIPT_LIB) $(BUILT_INS) git$X
$(RM) $(TEST_PROGRAMS) $(RM) $(TEST_PROGRAMS)
$(RM) -r bin-wrappers $(RM) -r bin-wrappers
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 81b50f3

Please sign in to comment.