forked from mackyle/topgit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tg-push.sh
97 lines (82 loc) · 2.07 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/bin/sh
# TopGit - A different patch queue manager
# GPLv2
## Parse options
recurse_deps=true
tgish_deps_only=false
dry_run=
push_all=false
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;;
-a|--all)
push_all=true;;
-h|--help)
echo "Usage: tg push [--dry-run] [--no-deps] [--tgish-only] [-r <remote>] [--all | <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
if $push_all; then
branches="$( git for-each-ref refs/top-bases |
while read rev type ref; do
name="${ref#refs/top-bases/}"
if branch_annihilated "$name"; then
continue
fi
printf "$name "
done )"
else
branches="$(git symbolic-ref HEAD | sed 's#^refs/heads/##')"
fi
fi
for name in $branches; do
ref_exists "$name" || die "detached HEAD? Can't push $name"
done
_listfile="$(get_temp tg-push-listfile)"
push_branch()
{
# FIXME should we abort on missing dependency?
[ -z "$_dep_missing" ] || return 0
# if so desired omit non tgish deps
$tgish_deps_only && [ -z "$_dep_is_tgish" ] && return 0
# filter out plain SHA1s. These don't need to be pushed explicitly as
# the patches that depend on the sha1 have it already in their ancestry.
is_sha1 "$_dep" && 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
_dep_missing=
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"
done
# remove multiple occurrences of the same branch
sort -u "$_listfile" | xargs git push $dry_run "$remote"