contrib / git-shell-commands / helpon commit pack_if_possible_fn(): use ref_type() instead of is_per_worktree_ref() (a935ebd)
   1#!/bin/sh
   2
   3if tty -s
   4then
   5        echo "Run 'help' for help, or 'exit' to leave.  Available commands:"
   6else
   7        echo "Run 'help' for help.  Available commands:"
   8fi
   9
  10cd "$(dirname "$0")"
  11
  12for cmd in *
  13do
  14        case "$cmd" in
  15        help) ;;
  16        *) [ -f "$cmd" ] && [ -x "$cmd" ] && echo "$cmd" ;;
  17        esac
  18done