Browse Source
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.maint
Linus Torvalds
20 years ago
10 changed files with 40 additions and 30 deletions
@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
|
||||
#!/bin/sh |
||||
: ${GIT_DIR=.git} |
||||
. git-sh-setup-script || die "Not a git archive" |
||||
git-read-tree --reset HEAD |
||||
git-update-cache --refresh |
||||
rm -f "$GIT_DIR/MERGE_HEAD" |
||||
|
@ -0,0 +1,17 @@
@@ -0,0 +1,17 @@
|
||||
#!/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 |
||||
} |
||||
|
||||
[ -d "$GIT_DIR" ] && |
||||
[ -d "$GIT_DIR/refs" ] |
||||
[ -d "$GIT_OBJECT_DIRECTORY" ] && |
||||
[ -d "$GIT_OBJECT_DIRECTORY/00" ] |
Loading…
Reference in new issue