Skip to content

Commit a50fcc1

Browse files
phil-blaingitster
authored andcommitted
subtree: use 'git rev-parse --verify [--quiet]' for better error messages
There are three occurences of 'git rev-parse <rev>' in 'git-subtree.sh' where the command expects a revision and the script dies or exits if the revision can't be found. In that case, the error message from 'git rev-parse' is: $ git rev-parse <bad rev> <bad rev> fatal: ambiguous argument '<bad rev>': unknown revision or path not in the working tree. Use '--' to separate paths from revisions, like this: 'git <command> [<revision>...] -- [<file>...]' This is a little confusing to the user, since this error message is outputed by 'git subtree'. At these points in the script, we know that we are looking for a single revision, so be explicit by using '--verify', resulting in a little better error message: $ git rev-parse --verify <bad rev> fatal: Needed a single revision In the two occurences where we 'die' if 'git rev-parse' fails, 'git subtree' outputs "could not rev-parse split hash $b from commit $sq", so we actually do not need the supplementary error message from 'git rev-parse'; add '--quiet' to silence it. In the third occurence, we 'exit', so keep the error message from 'git rev-parse'. Note that this messsage is still suboptimal since it can be understood to mean that 'git rev-parse' did not receive a single revision as argument, which is not the case here: the command did receive a single revision, but the revision is not resolvable to an available object. The alternative would be to use '--' after the revision, as suggested by the first error message, resulting in a clearer error message: $ git rev-parse <bad rev> -- fatal: bad revision '<bad rev>' Unfortunately we can't use that syntax because in the more common case of the revision resolving to a known object, the command outputs the object's hash, a newline, and the dashdash, which breaks the 'git subtree' script. Signed-off-by: Philippe Blain <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 455f0ad commit a50fcc1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contrib/subtree/git-subtree.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ find_latest_squash () {
387387
main="$b"
388388
;;
389389
git-subtree-split:)
390-
sub="$(git rev-parse "$b^{commit}")" ||
390+
sub="$(git rev-parse --verify --quiet "$b^{commit}")" ||
391391
die "could not rev-parse split hash $b from commit $sq"
392392
;;
393393
END)
@@ -439,7 +439,7 @@ find_existing_splits () {
439439
main="$b"
440440
;;
441441
git-subtree-split:)
442-
sub="$(git rev-parse "$b^{commit}")" ||
442+
sub="$(git rev-parse --verify --quiet "$b^{commit}")" ||
443443
die "could not rev-parse split hash $b from commit $sq"
444444
;;
445445
END)
@@ -843,7 +843,7 @@ cmd_add_commit () {
843843
git checkout -- "$dir" || exit $?
844844
tree=$(git write-tree) || exit $?
845845

846-
headrev=$(git rev-parse HEAD) || exit $?
846+
headrev=$(git rev-parse --verify HEAD) || exit $?
847847
if test -n "$headrev" && test "$headrev" != "$rev"
848848
then
849849
headp="-p $headrev"

0 commit comments

Comments
 (0)