From b33e9666082ce692e64ccfd688dc2a5075566f75 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Fri, 8 Jul 2005 10:57:21 -0700 Subject: 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. --- git-reset-script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-reset-script') diff --git a/git-reset-script b/git-reset-script index fe773388c9..0c02aa6423 100755 --- a/git-reset-script +++ b/git-reset-script @@ -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" -- cgit v1.2.1