forked from mackyle/topgit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tg-files.sh
49 lines (36 loc) · 1 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
#!/bin/sh
# TopGit - A different patch queue manager
# (c) Petr Baudis <[email protected]> 2008
# GPLv2
name=
head_from=
## Parse options
while [ -n "$1" ]; do
arg="$1"; shift
case "$arg" in
-i|-w)
[ -z "$head_from" ] || die "-i and -w are mutually exclusive"
head_from="$arg";;
-*)
echo "Usage: ${tgname:-tg} [...] files [-i | -w] [<name>]" >&2
exit 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}"
name="$(verify_topgit_branch "$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
b_tree=$(pretty_tree -t "$name" -b)
t_tree=$(pretty_tree -t "$name" $head_from)
git diff-tree --name-only -r $b_tree $t_tree
# vim:noet