X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=hooks%2Fpre-commit.sh;fp=hooks%2Fpre-commit.sh;h=6dbe82cb3c211cbf82ba3c722d9f748064cc6960;hb=eff4bedc3f3ae92d47f7d78b19509ce2bd60d4e8;hp=b6361c52a024e58721ddda8275f3a7d56ce524f5;hpb=b7fdc229eb9ffb682057d66ce3d3f12337dc0e96;p=topgit.git diff --git a/hooks/pre-commit.sh b/hooks/pre-commit.sh index b6361c5..6dbe82c 100644 --- a/hooks/pre-commit.sh +++ b/hooks/pre-commit.sh @@ -78,6 +78,9 @@ BEGIN { in_hunk = 0; } /^[^@ +-]/ { in_hunk = 0; } ' | while read newly_added; do + ref_exists "$newly_added" || + die "Invalid branch as dependent: $newly_added" + # check for self as dep [ "$head_" != "$newly_added" ] || die "Can't have myself as dep" @@ -90,6 +93,3 @@ BEGIN { in_hunk = 0; } # therefore no endless loop in the cycle-check no_remotes=1 recurse_deps check_cycle_name "$newly_added" done - - -# TODO: Verify .topdeps for valid branch names