aboutsummaryrefslogtreecommitdiff
path: root/git-reset-script
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2005-07-08 10:57:21 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-08 10:57:21 -0700
commitb33e9666082ce692e64ccfd688dc2a5075566f75 (patch)
treec4c5637417a6e7c3e4c7d38b82e73cf4ef1c09fa /git-reset-script
parentacb46f8769dd0031a98a284e06ebc5a09b151bfd (diff)
downloadgit-b33e9666082ce692e64ccfd688dc2a5075566f75.tar.gz
git-b33e9666082ce692e64ccfd688dc2a5075566f75.tar.xz
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.
Diffstat (limited to 'git-reset-script')
-rwxr-xr-xgit-reset-script2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-reset-script b/git-reset-script
index fe773388c..0c02aa642 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"