-
Notifications
You must be signed in to change notification settings - Fork 7
/
tg-files.sh
63 lines (52 loc) · 1.37 KB
/
tg-files.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
#!/bin/sh
# TopGit - A different patch queue manager
# Copyright (C) Petr Baudis <[email protected]> 2008
# Copyright (C) 2021 Kyle J. McKay <[email protected]>
# All rights reserved
# GPLv2
USAGE="\
Usage: ${tgname:-tg} [...] files [-i | -w] [<name>]
Options:
-i use TopGit metadata from index instead of HEAD branch
-w use metadata from working directory instead of branch"
usage()
{
if [ "${1:-0}" != 0 ]; then
printf '%s\n' "$USAGE" >&2
else
printf '%s\n' "$USAGE"
fi
exit ${1:-0}
}
name=
head_from=
## Parse options
while [ -n "$1" ]; do
arg="$1"; shift
case "$arg" in
-h|--help)
usage;;
-i|-w)
[ -z "$head_from" ] || die "-i and -w are mutually exclusive"
head_from="$arg";;
-*)
usage 1;;
*)
[ -z "$name" ] || die "name already specified ($name)"
name="$arg";;
esac
done
head="$(git symbolic-ref -q HEAD)" || :
head="${head#refs/heads/}"
[ -n "$name" ] ||
name="${head:-HEAD}"
v_verify_topgit_branch name "$name"
base_rev="$(git rev-parse --short --verify "refs/$topbases/$name^0" -- 2>/dev/null)" ||
die "not a TopGit-controlled branch"
if [ -n "$head_from" ] && [ "$name" != "$head" ]; then
die "$head_from makes only sense for the current branch"
fi
[ -z "$head_from" ] || ensure_work_tree
v_pretty_tree b_tree -t "$name" -b
v_pretty_tree t_tree -t "$name" $head_from
git diff-tree --name-only -r $b_tree $t_tree