Add "git-sh-setup-script" for common git shell script setup

It sets up the normal git environment variables and a few helper
functions (currently just "die()"), and returns ok if it all looks like
a git archive.  So use it something like

	. git-sh-setup-script || die "Not a git archive"

to make the rest of the git scripts more careful and readable.
This commit is contained in:
Linus Torvalds
2005-07-08 10:57:21 -07:00
parent acb46f8769
commit b33e966608
10 changed files with 40 additions and 30 deletions

View File

@ -3,16 +3,12 @@
# Copyright (c) 2005 Linus Torvalds
#
. git-sh-setup-script || die "Not a git archive"
usage () {
echo 'git commit [-m existing-commit] [<path>...]'
exit 1
die 'git commit [-m existing-commit] [<path>...]'
}
: ${GIT_DIR=.git}
if [ ! -d "$GIT_DIR" ]; then
echo Not a git directory 1>&2
exit 1
fi
while case "$#" in 0) break ;; esac
do
case "$1" in