]> git.ipfire.org Git - thirdparty/git.git/commit
git-fetch, git-branch: Support local --track via a special remote '.'
authorPaolo Bonzini <bonzini@gnu.org>
Thu, 15 Mar 2007 08:23:20 +0000 (09:23 +0100)
committerJunio C Hamano <junkio@cox.net>
Fri, 16 Mar 2007 09:10:12 +0000 (02:10 -0700)
commit9debc3241b5d54891600c839b4df4f48b2daa60c
tree90fd68823d2d66689fedb191011b73373510a845
parent803527f1d9b284fa848d4a4bad23158c162a5d54
git-fetch, git-branch: Support local --track via a special remote '.'

This patch adds support for a dummy remote '.' to avoid having
to declare a fake remote like

        [remote "local"]
                url = .
                fetch = refs/heads/*:refs/heads/*

Such a builtin remote simplifies the operation of "git-fetch",
which will populate FETCH_HEAD but will not pretend that two
repositories are in use, will not create a thin pack, and will
not perform any useless remapping of names.  The speed
improvement is around 20%, and it should improve more if
"git-fetch" is converted to a builtin.

To this end, git-parse-remote is grown with a new kind of
remote, 'builtin'.  In git-fetch.sh, we treat the builtin remote
specially in that it needs no pack/store operations.  In fact,
doing git-fetch on a builtin remote will simply populate
FETCH_HEAD appropriately.

The patch also improves of the --track/--no-track support,
extending it so that branch.<name>.remote items referring '.'
can be created.  Finally, it fixes a typo in git-checkout.sh.

Signed-off-by: Paolo Bonzini <bonzini@gnu.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/config.txt
builtin-branch.c
git-checkout.sh
git-fetch.sh
git-parse-remote.sh
t/t3200-branch.sh
t/t5520-pull.sh