X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=tg.sh;h=e987561d3a2693159d2b88672839ec9cdb42bad3;hb=f59eab26c07ba70181c4677a1aab4bc42502271e;hp=68967218640e519141c526b0ac49b8c0ad83377d;hpb=6065ad4d987e47a1ffe0310c11839ad0a2902657;p=topgit.git diff --git a/tg.sh b/tg.sh index 6896721..e987561 100644 --- a/tg.sh +++ b/tg.sh @@ -21,7 +21,8 @@ die() setup_hook() { hook_call="\"\$(tg --hooks-path)\"/$1 \"\$@\"" - if fgrep -q "$hook_call" "$git_dir/hooks/$1"; then + if [ -f "$git_dir/hooks/$1" ] && + fgrep -q "$hook_call" "$git_dir/hooks/$1"; then # Another job well done! return fi @@ -35,7 +36,7 @@ setup_hook() { echo "#!/bin/sh" echo "$hook_call" - cat "$git_dir/hooks/$1" + [ ! -s "$git_dir/hooks/$1" ] || cat "$git_dir/hooks/$1" } >"$git_dir/hooks/$1+" chmod a+x "$git_dir/hooks/$1+" mv "$git_dir/hooks/$1+" "$git_dir/hooks/$1" @@ -84,17 +85,28 @@ branch_contains() # to the branch (e.g. B_DIRTY B1 B2 NAME), one path per line, # inner paths first. Innermost name can be ':' if the head is # not in sync with the base. +# It will also return non-zero status if NAME needs update. +# If needs_update() hits missing dependencies, it will append +# them to space-separated $missing_deps list and skip them. needs_update() { - { - git cat-file blob "$1:.topdeps" 2>/dev/null | + git cat-file blob "$1:.topdeps" 2>/dev/null | { + _ret=0 while read _dep; do + if !git rev-parse --verify "$_dep" >/dev/null 2>&1; then + # All hope is lost + missing_deps="$missing_deps $_dep" + continue + fi + _dep_is_tgish=1 git rev-parse --verify "refs/top-bases/$_dep" >/dev/null 2>&1 || _dep_is_tgish= # Shoo shoo, keep our environment alone! - [ -z "$_dep_is_tgish" ] || (needs_update "$_dep" "$@") + [ -z "$_dep_is_tgish" ] || + (needs_update "$_dep" "$@") || + _ret=$? _dep_base_uptodate=1 if [ -n "$_dep_is_tgish" ]; then @@ -104,12 +116,15 @@ needs_update() if [ -z "$_dep_base_uptodate" ]; then # _dep needs to be synced with its base echo ": $_dep $*" + _ret=1 elif ! branch_contains "refs/top-bases/$1" "$_dep"; then # Some new commits in _dep echo "$_dep $*" + _ret=1 fi done - } || : # $1 is not tracked by TopGit anymore + exit $_ret + } } # branch_empty NAME