From: Bert Wesarg Date: Mon, 4 Oct 2010 21:18:50 +0000 (+0200) Subject: hooks/pre-commit: check .topdeps for valid branches X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=topgit.git;a=commitdiff_plain;h=eff4bedc3f3ae92d47f7d78b19509ce2bd60d4e8 hooks/pre-commit: check .topdeps for valid branches Signed-off-by: Bert Wesarg Signed-off-by: Uwe Kleine-König --- 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