3 . git-sh-setup || 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 () {
75 ref=$(expr "$ref" : '\+\(.*\)')
79 expr "$ref" : '.*:' >/dev/null || ref="${ref}:"
80 remote=$(expr "$ref" : '\([^:]*\):')
81 local=$(expr "$ref" : '[^:]*:\(.*\)')
84 refs/heads/* | refs/tags/*) ;;
85 heads/* | tags/* ) remote="refs/$remote" ;;
86 *) remote="refs/heads/$remote" ;;
90 refs/heads/* | refs/tags/*) ;;
91 heads/* | tags/* ) local="refs/$local" ;;
92 *) local="refs/heads/$local" ;;
94 echo "${force}${remote}:${local}"
98 # Returns list of src: (no store), or src:dst (store)
99 get_remote_default_refs_for_fetch () {
100 data_source=$(get_data_source "$1")
101 case "$data_source" in
102 '' | branches-partial)
105 remote_branch=$(sed -ne '/#/s/.*#//p' "$GIT_DIR/branches/$1")
106 case "$remote_branch" in '') remote_branch=master ;; esac
107 echo "refs/heads/${remote_branch}:refs/heads/$1"
110 canon_refs_list_for_fetch $(sed -ne '/^Pull: */{
112 }' "$GIT_DIR/remotes/$1")
115 die "internal error: get-remote-default-ref-for-push $1" ;;
119 get_remote_refs_for_push () {
121 0) die "internal error: get-remote-refs-for-push." ;;
122 1) get_remote_default_refs_for_push "$@" ;;
123 *) shift; echo "$@" ;;
127 get_remote_refs_for_fetch () {
130 die "internal error: get-remote-refs-for-fetch." ;;
132 get_remote_default_refs_for_fetch "$@" ;;
138 if test "$tag_just_seen"
140 echo "refs/tags/${ref}:refs/tags/${ref}"
151 canon_refs_list_for_fetch "$ref"
157 resolve_alternates () {
158 # original URL (xxx.git)
159 top_=`expr "$1" : '\([^:]*:/*[^/]*\)/'`
166 echo "$top_$path/" ;;
168 # relative -- ugly but seems to work.
169 echo "$1/objects/$path/" ;;
171 # exit code may not be caught by the reader.
172 echo "bad alternate: $path"