3 . git-sh-setup-script || die "Not a git archive"
8 # Not so fast. This could be the partial URL shorthand...
9 token=$(expr "$1" : '\([^/]*\)/')
10 remainder=$(expr "$1" : '[^/]*/\(.*\)')
11 if test -f "$GIT_DIR/branches/$token"
19 if test -f "$GIT_DIR/remotes/$1"
22 elif test -f "$GIT_DIR/branches/$1"
32 data_source=$(get_data_source "$1")
33 case "$data_source" in
40 }' "$GIT_DIR/remotes/$1" ;;
42 sed -e 's/#.*//' "$GIT_DIR/branches/$1" ;;
44 token=$(expr "$1" : '\([^/]*\)/')
45 remainder=$(expr "$1" : '[^/]*/\(.*\)')
46 url=$(sed -e 's/#.*//' "$GIT_DIR/branches/$token")
47 echo "$url/$remainder"
50 die "internal error: get-remote-url $1" ;;
54 get_remote_default_refs_for_push () {
55 data_source=$(get_data_source "$1")
56 case "$data_source" in
57 '' | branches | branches-partial)
58 ;; # no default push mapping, just send matching refs.
62 }' "$GIT_DIR/remotes/$1" ;;
64 die "internal error: get-remote-default-ref-for-push $1" ;;
68 # Subroutine to canonicalize remote:local notation
69 canon_refs_list_for_fetch () {
72 expr "$ref" : '.*:' >/dev/null || ref="${ref}:"
73 remote=$(expr "$ref" : '\([^:]*\):')
74 local=$(expr "$ref" : '[^:]*:\(.*\)')
77 *) remote="refs/heads/$remote" ;;
81 *) local="refs/heads/$local" ;;
83 echo "${remote}:${local}"
87 # Returns list of src: (no store), or src:dst (store)
88 get_remote_default_refs_for_fetch () {
89 data_source=$(get_data_source "$1")
90 case "$data_source" in
91 '' | branches-partial)
94 remote_branch=$(sed -ne '/#/s/.*#//p' "$GIT_DIR/branches/$1")
95 case "$remote_branch" in '') remote_branch=master ;; esac
96 echo "refs/heads/${remote_branch}:refs/heads/$1"
99 canon_refs_list_for_fetch $(sed -ne '/^Pull: */{
101 }' "$GIT_DIR/remotes/$1")
104 die "internal error: get-remote-default-ref-for-push $1" ;;
108 get_remote_refs_for_push () {
110 0) die "internal error: get-remote-refs-for-push." ;;
111 1) get_remote_default_refs_for_push "$@" ;;
112 *) shift; echo "$@" ;;
116 get_remote_refs_for_fetch () {
119 die "internal error: get-remote-refs-for-fetch." ;;
121 get_remote_default_refs_for_fetch "$@" ;;
127 if test "$tag_just_seen"
129 echo "refs/tags/${ref}:refs/tags/${ref}"
140 canon_refs_list_for_fetch "$ref"