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 () {
70 # Leave only the first one alone; add prefix . to the rest
71 # to prevent the secondary branches to be merged by default.
78 ref=$(expr "$ref" : '\+\(.*\)')
82 expr "$ref" : '.*:' >/dev/null || ref="${ref}:"
83 remote=$(expr "$ref" : '\([^:]*\):')
84 local=$(expr "$ref" : '[^:]*:\(.*\)')
87 refs/heads/* | refs/tags/*) ;;
88 heads/* | tags/* ) remote="refs/$remote" ;;
89 *) remote="refs/heads/$remote" ;;
93 refs/heads/* | refs/tags/*) ;;
94 heads/* | tags/* ) local="refs/$local" ;;
95 *) local="refs/heads/$local" ;;
98 if local_ref_name=$(expr "$local" : 'refs/\(.*\)')
100 git-check-ref-format "$local_ref_name" ||
101 die "* refusing to create funny ref '$local_ref_name' locally"
103 echo "${dot_prefix}${force}${remote}:${local}"
108 # Returns list of src: (no store), or src:dst (store)
109 get_remote_default_refs_for_fetch () {
110 data_source=$(get_data_source "$1")
111 case "$data_source" in
112 '' | branches-partial)
115 remote_branch=$(sed -ne '/#/s/.*#//p' "$GIT_DIR/branches/$1")
116 case "$remote_branch" in '') remote_branch=master ;; esac
117 echo "refs/heads/${remote_branch}:refs/heads/$1"
120 # This prefixes the second and later default refspecs
121 # with a '.', to signal git-fetch to mark them
123 canon_refs_list_for_fetch $(sed -ne '/^Pull: */{
125 }' "$GIT_DIR/remotes/$1")
128 die "internal error: get-remote-default-ref-for-push $1" ;;
132 get_remote_refs_for_push () {
134 0) die "internal error: get-remote-refs-for-push." ;;
135 1) get_remote_default_refs_for_push "$@" ;;
136 *) shift; echo "$@" ;;
140 get_remote_refs_for_fetch () {
143 die "internal error: get-remote-refs-for-fetch." ;;
145 get_remote_default_refs_for_fetch "$@" ;;
151 if test "$tag_just_seen"
153 echo "refs/tags/${ref}:refs/tags/${ref}"
164 canon_refs_list_for_fetch "$ref"
170 resolve_alternates () {
171 # original URL (xxx.git)
172 top_=`expr "$1" : '\([^:]*:/*[^/]*\)/'`
179 echo "$top_$path/" ;;
181 # relative -- ugly but seems to work.
182 echo "$1/objects/$path/" ;;
184 # exit code may not be caught by the reader.
185 echo "bad alternate: $path"