Allow diff and index commands to be interrupted
[git/dscho.git] / git-push.sh
blob706db9933e7a3d418a0bc77a743695464901b800
1 #!/bin/sh
3 USAGE='[--all] [--tags] [--force] <repository> [<refspec>...]'
4 . git-sh-setup
6 # Parse out parameters and then stop at remote, so that we can
7 # translate it using .git/branches information
8 has_all=
9 has_force=
10 has_exec=
11 remote=
12 do_tags=
14 while case "$#" in 0) break ;; esac
16 case "$1" in
17 --all)
18 has_all=--all ;;
19 --tags)
20 do_tags=yes ;;
21 --force)
22 has_force=--force ;;
23 --exec=*)
24 has_exec="$1" ;;
25 -*)
26 usage ;;
28 set x "$@"
29 shift
30 break ;;
31 esac
32 shift
33 done
34 case "$#" in
36 echo "Where would you want to push today?"
37 usage ;;
38 esac
40 . git-parse-remote
41 remote=$(get_remote_url "$@")
43 case "$has_all" in
44 --all)
45 set x ;;
46 '')
47 case "$do_tags,$#" in
48 yes,1)
49 set x $(cd "$GIT_DIR/refs" && find tags -type f -print) ;;
50 yes,*)
51 set x $(cd "$GIT_DIR/refs" && find tags -type f -print) \
52 $(get_remote_refs_for_push "$@") ;;
53 ,*)
54 set x $(get_remote_refs_for_push "$@") ;;
55 esac
56 esac
58 shift ;# away the initial 'x'
60 # $# is now 0 if there was no explicit refspec on the command line
61 # and there was no defalt refspec to push from remotes/ file.
62 # we will let git-send-pack to do its "matching refs" thing.
64 case "$remote" in
65 git://*)
66 die "Cannot use READ-ONLY transport to push to $remote" ;;
67 rsync://*)
68 die "Pushing with rsync transport is deprecated" ;;
69 esac
71 set x "$remote" "$@"; shift
72 test "$has_all" && set x "$has_all" "$@" && shift
73 test "$has_force" && set x "$has_force" "$@" && shift
74 test "$has_exec" && set x "$has_exec" "$@" && shift
76 case "$remote" in
77 http://* | https://*)
78 exec git-http-push "$@";;
80 exec git-send-pack "$@";;
81 esac