]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-sh-setup.txt
cvsexportcommit: add some examples to the documentation
[thirdparty/git.git] / Documentation / git-sh-setup.txt
CommitLineData
215a7ad1
JH
1git-sh-setup(1)
2===============
7fc9d69f
JH
3
4NAME
5----
215a7ad1 6git-sh-setup - Common git shell script setup code.
7fc9d69f
JH
7
8SYNOPSIS
9--------
215a7ad1 10'git-sh-setup'
7fc9d69f
JH
11
12DESCRIPTION
13-----------
7fc9d69f 14
52a22d1e
LAS
15Sets 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.
df8baa42
JF
17So, to make the rest of the git scripts more careful and readable,
18use it as follows:
7fc9d69f 19
df8baa42
JF
20-------------------------------------------------
21. git-sh-setup || die "Not a git archive"
22-------------------------------------------------
7fc9d69f
JH
23
24Author
25------
26Written by Linus Torvalds <torvalds@osdl.org>
27
28Documentation
29--------------
30Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
31
32GIT
33---
a7154e91 34Part of the gitlink:git[7] suite
7fc9d69f 35