You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
557 B
28 lines
557 B
20 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Set up GIT_DIR and GIT_OBJECT_DIRECTORY
|
||
|
# and return true if everything looks ok
|
||
|
#
|
||
|
: ${GIT_DIR=.git}
|
||
|
: ${GIT_OBJECT_DIRECTORY="$GIT_DIR/objects"}
|
||
|
|
||
|
die() {
|
||
|
echo "$@" >&2
|
||
|
exit 1
|
||
|
}
|
||
|
|
||
20 years ago
|
check_clean_tree() {
|
||
19 years ago
|
dirty1_=`git-update-index -q --refresh` && {
|
||
|
dirty2_=`git-diff-index --name-only --cached HEAD`
|
||
20 years ago
|
case "$dirty2_" in '') : ;; *) (exit 1) ;; esac
|
||
|
} || {
|
||
|
echo >&2 "$dirty1_"
|
||
|
echo "$dirty2_" | sed >&2 -e 's/^/modified: /'
|
||
|
(exit 1)
|
||
|
}
|
||
|
}
|
||
|
|
||
20 years ago
|
[ -h "$GIT_DIR/HEAD" ] &&
|
||
20 years ago
|
[ -d "$GIT_DIR/refs" ] &&
|
||
20 years ago
|
[ -d "$GIT_OBJECT_DIRECTORY/00" ]
|