1 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.1//EN"
2 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3 <html xmlns=
"http://www.w3.org/1999/xhtml" xml:
lang=
"en">
5 <meta http-equiv=
"Content-Type" content=
"text/html; charset=UTF-8" />
6 <meta name=
"generator" content=
"AsciiDoc 8.2.5" />
7 <style type=
"text/css">
9 p
, li
, dt
, dd
, div
, pre
, h1
, h2
, h3
, h4
, h5
, h6
{
11 border: 1px solid red;
16 margin: 1em 5% 1em 5%;
21 text-decoration: underline
;
39 h1
, h2
, h3
, h4
, h5
, h6
{
41 font-family: sans-serif
;
48 border-bottom: 2px solid silver
;
66 border: 1px solid silver
;
81 font-family: sans-serif
;
88 font-family: sans-serif
;
92 font-family: sans-serif
;
94 border-top: 2px solid silver
;
100 padding-bottom: 0.5em;
104 padding-bottom: 0.5em;
108 div
.tableblock
, div
.imageblock
, div
.exampleblock
, div
.verseblock
,
109 div
.quoteblock
, div
.literalblock
, div
.listingblock
, div
.sidebarblock
,
110 div
.admonitionblock
{
113 margin-bottom: 1.5em;
115 div
.admonitionblock
{
117 margin-bottom: 2.5em;
120 div
.content
{ /* Block element content. */
124 /* Block element titles. */
125 div
.title
, caption
.title
{
126 font-family: sans-serif
;
130 margin-bottom: 0.5em;
136 td div
.title:first-child
{
139 div
.content div
.title:first-child
{
142 div
.content
+ div
.title
{
146 div
.sidebarblock
> div
.content
{
148 border: 1px solid silver
;
155 div
.listingblock
> div
.content
{
156 border: 1px solid silver
;
161 div
.quoteblock
> div
.content
{
168 div
.verseblock
+ div
.attribution
{
172 div
.admonitionblock
.icon
{
176 text-decoration: underline
;
178 padding-right: 0.5em;
180 div
.admonitionblock td
.content
{
182 border-left: 2px solid silver
;
185 div
.exampleblock
> div
.content
{
186 border-left: 2px solid silver
;
190 div
.verseblock div
.content
{
194 div
.imageblock div
.content
{ padding-left: 0; }
195 div
.imageblock img
{ border: 1px solid silver
; }
196 span
.image img
{ border-style: none
; }
200 margin-bottom: 0.8em;
212 list-style-position: outside
;
215 list-style-type: lower-alpha
;
218 div
.tableblock
> table
{
219 border: 3px solid
#527bbd;
222 font-family: sans-serif
;
231 margin-bottom: 0.8em;
239 padding-right: 0.8em;
246 div#footer-badges
{ display: none
; }
251 font-family: sans-serif
;
255 margin-bottom: 0.1em;
258 div
.toclevel1
, div
.toclevel2
, div
.toclevel3
, div
.toclevel4
{
274 include1::./stylesheets
/xhtml11-manpage
.css
[]
275 /* Workarounds for IE6's broken and incomplete CSS2. */
277 div
.sidebar-content
{
279 border: 1px solid silver
;
282 div
.sidebar-title
, div
.image-title
{
283 font-family: sans-serif
;
286 margin-bottom: 0.5em;
289 div
.listingblock div
.content
{
290 border: 1px solid silver
;
295 div
.quoteblock-content
{
299 div
.exampleblock-content
{
300 border-left: 2px solid silver
;
304 /* IE6 sets dynamically generated links as visited. */
305 div#toc
a:visited
{ color: blue
; }
307 <title>git-sh-setup(
1)
</title>
312 git-sh-setup(
1) Manual Page
315 <div class=
"sectionbody">
317 Common git shell script setup code
322 <div class=
"sectionbody">
323 <div class=
"para"><p><em>.
"$(git --exec-path)/git-sh-setup"</em></p></div>
325 <h2 id=
"_description">DESCRIPTION
</h2>
326 <div class=
"sectionbody">
327 <div class=
"para"><p>This is not a command the end user would want to run. Ever.
328 This documentation is meant for people who are studying the
329 Porcelain-ish scripts and/or are writing new ones.
</p></div>
330 <div class=
"para"><p>The
<em>git sh-setup
</em> scriptlet is designed to be sourced (using
331 <tt>.
</tt>) by other shell scripts to set up some variables pointing at
332 the normal git directories and a few helper shell functions.
</p></div>
333 <div class=
"para"><p>Before sourcing it, your script should set up a few variables;
334 <tt>USAGE
</tt> (and
<tt>LONG_USAGE
</tt>, if any) is used to define message
335 given by
<tt>usage()
</tt> shell function.
<tt>SUBDIRECTORY_OK
</tt> can be set
336 if the script can run from a subdirectory of the working tree
337 (some commands do not).
</p></div>
338 <div class=
"para"><p>The scriptlet sets
<tt>GIT_DIR
</tt> and
<tt>GIT_OBJECT_DIRECTORY
</tt> shell
339 variables, but does
<strong>not
</strong> export them to the environment.
</p></div>
341 <h2 id=
"_functions">FUNCTIONS
</h2>
342 <div class=
"sectionbody">
343 <div class=
"vlist"><dl>
349 exit after emitting the supplied error message to the
350 standard error stream.
358 die with the usage message.
366 set the message that will be recorded to describe the
367 end-user action in the reflog, when the script updates a
376 runs an editor of user's choice (GIT_EDITOR, core.editor, VISUAL or
377 EDITOR) on a given file, but error out if no editor is specified
378 and the terminal is dumb.
386 outputs
<tt>true
</tt> or
<tt>false
</tt> to the standard output stream
387 to indicate if the repository is a bare repository
388 (i.e. without an associated working tree).
396 runs chdir to the toplevel of the working tree.
404 checks if the repository is a bare repository, and dies
405 if so. Used by scripts that require working tree
406 (e.g.
<tt>checkout
</tt>).
410 get_author_ident_from_commit
414 outputs code for use with eval to set the GIT_AUTHOR_NAME,
415 GIT_AUTHOR_EMAIL and GIT_AUTHOR_DATE variables for a given commit.
420 <h2 id=
"_author">Author
</h2>
421 <div class=
"sectionbody">
422 <div class=
"para"><p>Written by Linus Torvalds
<torvalds@osdl.org
></p></div>
424 <h2 id=
"_documentation">Documentation
</h2>
425 <div class=
"sectionbody">
426 <div class=
"para"><p>Documentation by Junio C Hamano and the git-list
<git@vger.kernel.org
>.
</p></div>
428 <h2 id=
"_git">GIT
</h2>
429 <div class=
"sectionbody">
430 <div class=
"para"><p>Part of the
<a href=
"git.html">git(
1)
</a> suite
</p></div>
433 <div id=
"footer-text">
434 Last updated
2010-
04-
24 02:
56:
09 UTC