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
|
|
|
|
2006-09-23 12:05:43 +02:00
|
|
|
get_default_remote () {
|
2011-03-30 10:48:40 +02:00
|
|
|
curr_branch=$(git symbolic-ref -q HEAD)
|
2011-03-31 04:33:33 +02:00
|
|
|
curr_branch="${curr_branch#refs/heads/}"
|
2007-07-03 07:52:14 +02:00
|
|
|
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
|
2010-12-06 11:20:11 +01:00
|
|
|
curr_branch=$(git symbolic-ref -q HEAD) &&
|
2009-06-12 00:39:19 +02:00
|
|
|
[ "$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
|
2010-11-13 23:58:22 +01:00
|
|
|
[ -n "$remote" ] && case "$repo" in
|
|
|
|
.)
|
|
|
|
echo "refs/heads/$remote"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "refs/remotes/$repo/$remote"
|
|
|
|
;;
|
|
|
|
esac
|
2009-06-12 00:39:18 +02:00
|
|
|
esac
|
|
|
|
}
|