2005-08-20 11:52:24 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2005-11-24 08:46:13 +01:00
|
|
|
# git-ls-remote could be called from outside a git managed repository;
|
|
|
|
# this would fail in that case and would issue an error message.
|
2009-04-23 03:46:02 +02:00
|
|
|
GIT_DIR=$(git rev-parse -q --git-dir) || :;
|
2005-08-20 11:52:24 +02:00
|
|
|
|
|
|
|
get_data_source () {
|
|
|
|
case "$1" in
|
|
|
|
*/*)
|
2006-12-23 00:37:48 +01:00
|
|
|
echo ''
|
2005-08-20 11:52:24 +02:00
|
|
|
;;
|
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>
2007-03-15 09:23:20 +01:00
|
|
|
.)
|
|
|
|
echo self
|
|
|
|
;;
|
2005-08-20 11:52:24 +02:00
|
|
|
*)
|
2007-07-03 07:52:14 +02:00
|
|
|
if test "$(git config --get "remote.$1.url")"
|
2006-05-03 15:20:21 +02:00
|
|
|
then
|
|
|
|
echo config
|
|
|
|
elif test -f "$GIT_DIR/remotes/$1"
|
2005-08-20 11:52:24 +02:00
|
|
|
then
|
|
|
|
echo remotes
|
|
|
|
elif test -f "$GIT_DIR/branches/$1"
|
|
|
|
then
|
|
|
|
echo branches
|
|
|
|
else
|
|
|
|
echo ''
|
|
|
|
fi ;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
get_remote_url () {
|
|
|
|
data_source=$(get_data_source "$1")
|
|
|
|
case "$data_source" in
|
|
|
|
'')
|
2006-12-23 00:37:48 +01:00
|
|
|
echo "$1"
|
2006-05-03 15:20:21 +02:00
|
|
|
;;
|
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>
2007-03-15 09:23:20 +01:00
|
|
|
self)
|
|
|
|
echo "$1"
|
|
|
|
;;
|
2006-05-03 15:20:21 +02:00
|
|
|
config)
|
2007-07-03 07:52:14 +02:00
|
|
|
git config --get "remote.$1.url"
|
2006-05-03 15:20:21 +02:00
|
|
|
;;
|
2005-08-20 11:52:24 +02:00
|
|
|
remotes)
|
|
|
|
sed -ne '/^URL: */{
|
|
|
|
s///p
|
|
|
|
q
|
2006-12-23 00:37:48 +01:00
|
|
|
}' "$GIT_DIR/remotes/$1"
|
|
|
|
;;
|
2005-08-20 11:52:24 +02:00
|
|
|
branches)
|
2006-12-23 00:37:48 +01:00
|
|
|
sed -e 's/#.*//' "$GIT_DIR/branches/$1"
|
2005-08-20 11:52:24 +02:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
die "internal error: get-remote-url $1" ;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2006-09-23 12:05:43 +02:00
|
|
|
get_default_remote () {
|
2007-07-03 07:52:14 +02:00
|
|
|
curr_branch=$(git symbolic-ref -q HEAD | sed -e 's|^refs/heads/||')
|
|
|
|
origin=$(git config --get "branch.$curr_branch.remote")
|
2006-09-23 12:05:43 +02:00
|
|
|
echo ${origin:-origin}
|
|
|
|
}
|
|
|
|
|
2009-06-12 00:39:18 +02:00
|
|
|
get_remote_merge_branch () {
|
|
|
|
case "$#" in
|
|
|
|
0|1)
|
2009-06-12 00:39:19 +02:00
|
|
|
origin="$1"
|
|
|
|
default=$(get_default_remote)
|
|
|
|
test -z "$origin" && origin=$default
|
|
|
|
curr_branch=$(git symbolic-ref -q HEAD)
|
|
|
|
[ "$origin" = "$default" ] &&
|
|
|
|
echo $(git for-each-ref --format='%(upstream)' $curr_branch)
|
|
|
|
;;
|
2009-06-12 00:39:18 +02:00
|
|
|
*)
|
|
|
|
repo=$1
|
|
|
|
shift
|
|
|
|
ref=$1
|
|
|
|
# FIXME: It should return the tracking branch
|
|
|
|
# Currently only works with the default mapping
|
|
|
|
case "$ref" in
|
|
|
|
+*)
|
|
|
|
ref=$(expr "z$ref" : 'z+\(.*\)')
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
expr "z$ref" : 'z.*:' >/dev/null || ref="${ref}:"
|
|
|
|
remote=$(expr "z$ref" : 'z\([^:]*\):')
|
|
|
|
case "$remote" in
|
|
|
|
'' | HEAD ) remote=HEAD ;;
|
|
|
|
heads/*) remote=${remote#heads/} ;;
|
|
|
|
refs/heads/*) remote=${remote#refs/heads/} ;;
|
|
|
|
refs/* | tags/* | remotes/* ) remote=
|
|
|
|
esac
|
|
|
|
|
|
|
|
[ -n "$remote" ] && echo "refs/remotes/$repo/$remote"
|
|
|
|
esac
|
|
|
|
}
|