X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=tg-patch.sh;h=85346ec045952eb72d9ed408ebc469dc78469f58;hb=608626e5896f71da51467fedb6f461342df3f850;hp=d701c5440705a609e833e10503f05441e61d1b1c;hpb=d400bb3263ab1239cc219541bb4364135b1b753e;p=topgit.git diff --git a/tg-patch.sh b/tg-patch.sh index d701c54..85346ec 100644 --- a/tg-patch.sh +++ b/tg-patch.sh @@ -5,7 +5,7 @@ name= -topic= +head_from= diff_opts= diff_committed_only=yes # will be unset for index/worktree @@ -16,11 +16,13 @@ while [ -n "$1" ]; do arg="$1"; shift case "$arg" in -i) - topic='(i)' + [ -z "$head_from" ] || die "-i and -w are mutually exclusive" + head_from=-i diff_opts="$diff_opts --cached"; diff_committed_only=;; -w) - topic='(w)' + [ -z "$head_from" ] || die "-i and -w are mutually exclusive" + head_from=-w diff_committed_only=;; -*) echo "Usage: tg [...] patch [-i | -w] [NAME]" >&2 @@ -31,39 +33,40 @@ while [ -n "$1" ]; do esac done +head="$(git symbolic-ref HEAD)" +head="${head#refs/heads/}" -[ -n "$name" -a -z "$diff_committed_only" ] && - die "-i/-w are mutually exclusive with NAME" - -[ -n "$name" ] || name="$(git symbolic-ref HEAD | sed 's#^refs/\(heads\|top-bases\)/##')" +[ -n "$name" ] || + name="$head" base_rev="$(git rev-parse --short --verify "refs/top-bases/$name" 2>/dev/null)" || die "not a TopGit-controlled branch" -# if not index/worktree, topic is current branch -[ -z "$topic" ] && topic="$name" +if [ -n "$head_from" ] && [ "$name" != "$head" ]; then + die "$head_from makes only sense for the current branch" +fi setup_pager -cat_file "$topic:.topmsg" +cat_file "$name:.topmsg" $head_from echo [ -n "$(git grep $diff_opts '^[-]--' ${diff_committed_only:+"$name"} -- ".topmsg")" ] || echo '---' # Evil obnoxious hack to work around the lack of git diff --exclude -git_is_stupid="$(mktemp -t tg-patch-changes.XXXXXX)" +git_is_stupid="$(get_temp tg-patch-changes)" git diff --name-only $diff_opts "$base_rev" ${diff_committed_only:+"$name"} -- | fgrep -vx ".topdeps" | fgrep -vx ".topmsg" >"$git_is_stupid" || : # fgrep likes to fail randomly? if [ -s "$git_is_stupid" ]; then - cat "$git_is_stupid" | xargs git diff --patch-with-stat $diff_opts "$base_rev" ${diff_committed_only:+"$name"} -- + cd "$root_dir" + cat "$git_is_stupid" | xargs git diff -a --patch-with-stat $diff_opts "$base_rev" ${diff_committed_only:+"$name"} -- else echo "No changes." fi -rm "$git_is_stupid" echo '-- ' -echo "tg: ($base_rev..) $name (depends on: $(cat_file "$topic:.topdeps" | paste -s -d' '))" +echo "tg: ($base_rev..) $name (depends on: $(cat_file "$name:.topdeps" $head_from | paste -s -d' '))" branch_contains "$name" "$base_rev" || echo "tg: The patch is out-of-date wrt. the base! Run \`$tg update\`."