forked from jwhitley/topgit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtg-depend.sh
More file actions
48 lines (37 loc) · 824 Bytes
/
tg-depend.sh
File metadata and controls
48 lines (37 loc) · 824 Bytes
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
#!/bin/sh
# TopGit - A different patch queue manager
# (c) Petr Baudis <pasky@suse.cz> 2008
# GPLv2
name=
## Parse options
subcmd="$1"; shift || :
case "$subcmd" in
-h|"")
echo "Usage: tg [...] depend add NAME" >&2
exit 1;;
add)
;;
*)
die "unknown subcommand ($subcmd)";;
esac
while [ -n "$1" ]; do
arg="$1"; shift
case "$arg" in
-*)
echo "Usage: tg [...] depend add NAME" >&2
exit 1;;
*)
[ -z "$name" ] || die "name already specified ($name)"
name="$arg";;
esac
done
## Sanity checks
[ -n "$name" ] || die "no branch name specified"
branchrev="$(git rev-parse --verify "$name" 2>/dev/null)" ||
die "invalid branch name: $name"
## Record new dependency
echo "$name" >>"$root_dir/.topdeps"
git add -f "$root_dir/.topdeps"
git commit -m"New TopGit dependency: $name"
$tg update
# vim:noet