6 git-sh-setup - Common git shell script setup code
15 Sets up the normal git environment variables and a few helper functions
16 (currently just "die()"), and returns OK if it all looks like a git archive.
17 So, to make the rest of the git scripts more careful and readable,
20 -------------------------------------------------
21 . git-sh-setup || die "Not a git archive"
22 -------------------------------------------------
26 Written by Linus Torvalds <torvalds@osdl.org>
30 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
34 Part of the gitlink:git[7] suite