-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtg-push.sh
76 lines (63 loc) · 1.54 KB
/
tg-push.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/sh
# TopGit - A different patch queue manager
# GPLv2
## Parse options
recurse_deps=true
tgish_deps_only=false
dry_run=
while [ -n "$1" ]; do
arg="$1"; shift
case "$arg" in
--no-deps)
recurse_deps=false;;
--dry-run)
dry_run=--dry-run;;
--tgish-only)
tgish_deps_only=true;;
-h|--help)
echo "Usage: tg push [--dry-run] [--no-deps] [--tgish-only] [-r remote] branch*"
exit 0;;
-r)
remote="$1"
shift
;;
*)
branches="$branches $arg";;
esac
done
if [ -z "$remote" ]; then
remote="$base_remote"
fi
if [ -z "$remote" ]; then
die "no remote location given. Either use -r remote argument or set topgit.remote"
fi
if [ -z "$branches" ]; then
branches="$(git symbolic-ref HEAD | sed 's#^refs/heads/##')"
fi
for name in $branches; do
ref_exists "$name" || die "detached HEAD? Can't push $name"
done
_listfile="$(mktemp -t tg-push-listfile.XXXXXX)"
trap "rm -f \"$_listfile\"" 0
push_branch()
{
# if so desired omit non tgish deps
$tgish_deps_only && [ -z "$_dep_is_tgish" ] && return 0
echo "$_dep" >> "$_listfile"
[ -z "$_dep_is_tgish" ] ||
echo "top-bases/$_dep" >> "$_listfile"
}
for name in $branches; do
# current branch
# re-use push_branch, which expects some pre-defined variables
_dep="$name"
_dep_is_tgish=1
ref_exists "top-bases/$_dep" ||
_dep_is_tgish=
push_branch "$name"
# deps but only if branch is tgish
$recurse_deps && [ -n "$_dep_is_tgish" ] &&
no_remotes=1 recurse_deps push_branch "$name"
# remove multiple occurrences of the same branch
sort -u "$_listfile" | xargs git push $dry_run "$remote"
done