Autogenerated manpages for v2.46.0-rc0-75-g04f5a5
[git-manpages.git] / man1 / git.1
blob5b408d08e183a49f2d9a49a55b4c8e80d78045b6
1 '\" t
2 .\"     Title: git
3 .\"    Author: [see the "Authors" section]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2024-07-16
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.46.0.rc0.75.g04f5a52757
8 .\"  Language: English
9 .\"
10 .TH "GIT" "1" "2024\-07\-16" "Git 2\&.46\&.0\&.rc0\&.75\&.g0" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git \- the stupid content tracker
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit\fR [\-v | \-\-version] [\-h | \-\-help] [\-C <path>] [\-c <name>=<value>]
36     [\-\-exec\-path[=<path>]] [\-\-html\-path] [\-\-man\-path] [\-\-info\-path]
37     [\-p | \-\-paginate | \-P | \-\-no\-pager] [\-\-no\-replace\-objects] [\-\-no\-lazy\-fetch]
38     [\-\-no\-optional\-locks] [\-\-no\-advice] [\-\-bare] [\-\-git\-dir=<path>]
39     [\-\-work\-tree=<path>] [\-\-namespace=<name>] [\-\-config\-env=<name>=<envvar>]
40     <command> [<args>]
41 .fi
42 .sp
43 .SH "DESCRIPTION"
44 .sp
45 Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high\-level operations and full access to internals\&.
46 .sp
47 See \fBgittutorial\fR(7) to get started, then see \fBgiteveryday\fR(7) for a useful minimum set of commands\&. The \m[blue]\fBGit User\(cqs Manual\fR\m[]\&\s-2\u[1]\d\s+2 has a more in\-depth introduction\&.
48 .sp
49 After you mastered the basic concepts, you can come back to this page to learn what commands Git offers\&. You can learn more about individual Git commands with "git help command"\&. \fBgitcli\fR(7) manual page gives you an overview of the command\-line command syntax\&.
50 .sp
51 A formatted and hyperlinked copy of the latest Git documentation can be viewed at \m[blue]\fBhttps://git\&.github\&.io/htmldocs/git\&.html\fR\m[] or \m[blue]\fBhttps://git\-scm\&.com/docs\fR\m[]\&.
52 .SH "OPTIONS"
53 .PP
54 \-v, \-\-version
55 .RS 4
56 Prints the Git suite version that the
57 \fIgit\fR
58 program came from\&.
59 .sp
60 This option is internally converted to
61 \fBgit version \&.\&.\&.\fR
62 and accepts the same options as the
63 \fBgit-version\fR(1)
64 command\&. If
65 \fB\-\-help\fR
66 is also given, it takes precedence over
67 \fB\-\-version\fR\&.
68 .RE
69 .PP
70 \-h, \-\-help
71 .RS 4
72 Prints the synopsis and a list of the most commonly used commands\&. If the option
73 \fB\-\-all\fR
75 \fB\-a\fR
76 is given then all available commands are printed\&. If a Git command is named this option will bring up the manual page for that command\&.
77 .sp
78 Other options are available to control how the manual page is displayed\&. See
79 \fBgit-help\fR(1)
80 for more information, because
81 \fBgit \-\-help \&.\&.\&.\fR
82 is converted internally into
83 \fBgit help \&.\&.\&.\fR\&.
84 .RE
85 .PP
86 \-C <path>
87 .RS 4
88 Run as if git was started in
89 \fI<path>\fR
90 instead of the current working directory\&. When multiple
91 \fB\-C\fR
92 options are given, each subsequent non\-absolute
93 \fB\-C <path>\fR
94 is interpreted relative to the preceding
95 \fB\-C <path>\fR\&. If
96 \fI<path>\fR
97 is present but empty, e\&.g\&.
98 \fB\-C ""\fR, then the current working directory is left unchanged\&.
99 .sp
100 This option affects options that expect path name like
101 \fB\-\-git\-dir\fR
103 \fB\-\-work\-tree\fR
104 in that their interpretations of the path names would be made relative to the working directory caused by the
105 \fB\-C\fR
106 option\&. For example the following invocations are equivalent:
108 .if n \{\
109 .RS 4
112 git \-\-git\-dir=a\&.git \-\-work\-tree=b \-C c status
113 git \-\-git\-dir=c/a\&.git \-\-work\-tree=c/b status
115 .if n \{\
120 \-c <name>=<value>
121 .RS 4
122 Pass a configuration parameter to the command\&. The value given will override values from configuration files\&. The <name> is expected in the same format as listed by
123 \fIgit config\fR
124 (subkeys separated by dots)\&.
126 Note that omitting the
127 \fB=\fR
129 \fBgit \-c foo\&.bar \&.\&.\&.\fR
130 is allowed and sets
131 \fBfoo\&.bar\fR
132 to the boolean true value (just like
133 \fB[foo]bar\fR
134 would in a config file)\&. Including the equals but with an empty value (like
135 \fBgit \-c foo\&.bar= \&.\&.\&.\fR) sets
136 \fBfoo\&.bar\fR
137 to the empty string which
138 \fBgit config \-\-type=bool\fR
139 will convert to
140 \fBfalse\fR\&.
143 \-\-config\-env=<name>=<envvar>
144 .RS 4
145 Like
146 \fB\-c <name>=<value>\fR, give configuration variable
147 \fI<name>\fR
148 a value, where <envvar> is the name of an environment variable from which to retrieve the value\&. Unlike
149 \fB\-c\fR
150 there is no shortcut for directly setting the value to an empty string, instead the environment variable itself must be set to the empty string\&. It is an error if the
151 \fB<envvar>\fR
152 does not exist in the environment\&.
153 \fB<envvar>\fR
154 may not contain an equals sign to avoid ambiguity with
155 \fB<name>\fR
156 containing one\&.
158 This is useful for cases where you want to pass transitory configuration options to git, but are doing so on operating systems where other processes might be able to read your command line (e\&.g\&.
159 \fB/proc/self/cmdline\fR), but not your environment (e\&.g\&.
160 \fB/proc/self/environ\fR)\&. That behavior is the default on Linux, but may not be on your system\&.
162 Note that this might add security for variables such as
163 \fBhttp\&.extraHeader\fR
164 where the sensitive information is part of the value, but not e\&.g\&.
165 \fBurl\&.<base>\&.insteadOf\fR
166 where the sensitive information can be part of the key\&.
169 \-\-exec\-path[=<path>]
170 .RS 4
171 Path to wherever your core Git programs are installed\&. This can also be controlled by setting the GIT_EXEC_PATH environment variable\&. If no path is given,
172 \fIgit\fR
173 will print the current setting and then exit\&.
176 \-\-html\-path
177 .RS 4
178 Print the path, without trailing slash, where Git\(cqs HTML documentation is installed and exit\&.
181 \-\-man\-path
182 .RS 4
183 Print the manpath (see
184 \fBman(1)\fR) for the man pages for this version of Git and exit\&.
187 \-\-info\-path
188 .RS 4
189 Print the path where the Info files documenting this version of Git are installed and exit\&.
192 \-p, \-\-paginate
193 .RS 4
194 Pipe all output into
195 \fIless\fR
196 (or if set, $PAGER) if standard output is a terminal\&. This overrides the
197 \fBpager\&.<cmd>\fR
198 configuration options (see the "Configuration Mechanism" section below)\&.
201 \-P, \-\-no\-pager
202 .RS 4
203 Do not pipe Git output into a pager\&.
206 \-\-git\-dir=<path>
207 .RS 4
208 Set the path to the repository ("\&.git" directory)\&. This can also be controlled by setting the
209 \fBGIT_DIR\fR
210 environment variable\&. It can be an absolute path or relative path to current working directory\&.
212 Specifying the location of the "\&.git" directory using this option (or
213 \fBGIT_DIR\fR
214 environment variable) turns off the repository discovery that tries to find a directory with "\&.git" subdirectory (which is how the repository and the top\-level of the working tree are discovered), and tells Git that you are at the top level of the working tree\&. If you are not at the top\-level directory of the working tree, you should tell Git where the top\-level of the working tree is, with the
215 \fB\-\-work\-tree=<path>\fR
216 option (or
217 \fBGIT_WORK_TREE\fR
218 environment variable)
220 If you just want to run git as if it was started in
221 \fB<path>\fR
222 then use
223 \fBgit \-C <path>\fR\&.
226 \-\-work\-tree=<path>
227 .RS 4
228 Set the path to the working tree\&. It can be an absolute path or a path relative to the current working directory\&. This can also be controlled by setting the GIT_WORK_TREE environment variable and the core\&.worktree configuration variable (see core\&.worktree in
229 \fBgit-config\fR(1)
230 for a more detailed discussion)\&.
233 \-\-namespace=<path>
234 .RS 4
235 Set the Git namespace\&. See
236 \fBgitnamespaces\fR(7)
237 for more details\&. Equivalent to setting the
238 \fBGIT_NAMESPACE\fR
239 environment variable\&.
242 \-\-bare
243 .RS 4
244 Treat the repository as a bare repository\&. If GIT_DIR environment is not set, it is set to the current working directory\&.
247 \-\-no\-replace\-objects
248 .RS 4
249 Do not use replacement refs to replace Git objects\&. This is equivalent to exporting the
250 \fBGIT_NO_REPLACE_OBJECTS\fR
251 environment variable with any value\&. See
252 \fBgit-replace\fR(1)
253 for more information\&.
256 \-\-no\-lazy\-fetch
257 .RS 4
258 Do not fetch missing objects from the promisor remote on demand\&. Useful together with
259 \fBgit cat\-file \-e <object>\fR
260 to see if the object is locally available\&. This is equivalent to setting the
261 \fBGIT_NO_LAZY_FETCH\fR
262 environment variable to
263 \fB1\fR\&.
266 \-\-no\-optional\-locks
267 .RS 4
268 Do not perform optional operations that require locks\&. This is equivalent to setting the
269 \fBGIT_OPTIONAL_LOCKS\fR
271 \fB0\fR\&.
274 \-\-no\-advice
275 .RS 4
276 Disable all advice hints from being printed\&.
279 \-\-literal\-pathspecs
280 .RS 4
281 Treat pathspecs literally (i\&.e\&. no globbing, no pathspec magic)\&. This is equivalent to setting the
282 \fBGIT_LITERAL_PATHSPECS\fR
283 environment variable to
284 \fB1\fR\&.
287 \-\-glob\-pathspecs
288 .RS 4
289 Add "glob" magic to all pathspec\&. This is equivalent to setting the
290 \fBGIT_GLOB_PATHSPECS\fR
291 environment variable to
292 \fB1\fR\&. Disabling globbing on individual pathspecs can be done using pathspec magic ":(literal)"
295 \-\-noglob\-pathspecs
296 .RS 4
297 Add "literal" magic to all pathspec\&. This is equivalent to setting the
298 \fBGIT_NOGLOB_PATHSPECS\fR
299 environment variable to
300 \fB1\fR\&. Enabling globbing on individual pathspecs can be done using pathspec magic ":(glob)"
303 \-\-icase\-pathspecs
304 .RS 4
305 Add "icase" magic to all pathspec\&. This is equivalent to setting the
306 \fBGIT_ICASE_PATHSPECS\fR
307 environment variable to
308 \fB1\fR\&.
311 \-\-list\-cmds=<group>[,<group>\&...]
312 .RS 4
313 List commands by group\&. This is an internal/experimental option and may change or be removed in the future\&. Supported groups are: builtins, parseopt (builtin commands that use parse\-options), main (all commands in libexec directory), others (all other commands in
314 \fB$PATH\fR
315 that have git\- prefix), list\-<category> (see categories in command\-list\&.txt), nohelpers (exclude helper commands), alias and config (retrieve command list from config variable completion\&.commands)
318 \-\-attr\-source=<tree\-ish>
319 .RS 4
320 Read gitattributes from <tree\-ish> instead of the worktree\&. See
321 \fBgitattributes\fR(5)\&. This is equivalent to setting the
322 \fBGIT_ATTR_SOURCE\fR
323 environment variable\&.
325 .SH "GIT COMMANDS"
327 We divide Git into high level ("porcelain") commands and low level ("plumbing") commands\&.
328 .SH "HIGH\-LEVEL COMMANDS (PORCELAIN)"
330 We separate the porcelain commands into the main commands and some ancillary user utilities\&.
331 .SS "Main porcelain commands"
333 \fBgit-add\fR(1)
334 .RS 4
335 Add file contents to the index\&.
338 \fBgit-am\fR(1)
339 .RS 4
340 Apply a series of patches from a mailbox\&.
343 \fBgit-archive\fR(1)
344 .RS 4
345 Create an archive of files from a named tree\&.
348 \fBgit-bisect\fR(1)
349 .RS 4
350 Use binary search to find the commit that introduced a bug\&.
353 \fBgit-branch\fR(1)
354 .RS 4
355 List, create, or delete branches\&.
358 \fBgit-bundle\fR(1)
359 .RS 4
360 Move objects and refs by archive\&.
363 \fBgit-checkout\fR(1)
364 .RS 4
365 Switch branches or restore working tree files\&.
368 \fBgit-cherry-pick\fR(1)
369 .RS 4
370 Apply the changes introduced by some existing commits\&.
373 \fBgit-citool\fR(1)
374 .RS 4
375 Graphical alternative to git\-commit\&.
378 \fBgit-clean\fR(1)
379 .RS 4
380 Remove untracked files from the working tree\&.
383 \fBgit-clone\fR(1)
384 .RS 4
385 Clone a repository into a new directory\&.
388 \fBgit-commit\fR(1)
389 .RS 4
390 Record changes to the repository\&.
393 \fBgit-describe\fR(1)
394 .RS 4
395 Give an object a human readable name based on an available ref\&.
398 \fBgit-diff\fR(1)
399 .RS 4
400 Show changes between commits, commit and working tree, etc\&.
403 \fBgit-fetch\fR(1)
404 .RS 4
405 Download objects and refs from another repository\&.
408 \fBgit-format-patch\fR(1)
409 .RS 4
410 Prepare patches for e\-mail submission\&.
413 \fBgit-gc\fR(1)
414 .RS 4
415 Cleanup unnecessary files and optimize the local repository\&.
418 \fBgit-grep\fR(1)
419 .RS 4
420 Print lines matching a pattern\&.
423 \fBgit-gui\fR(1)
424 .RS 4
425 A portable graphical interface to Git\&.
428 \fBgit-init\fR(1)
429 .RS 4
430 Create an empty Git repository or reinitialize an existing one\&.
433 \fBgit-log\fR(1)
434 .RS 4
435 Show commit logs\&.
438 \fBgit-maintenance\fR(1)
439 .RS 4
440 Run tasks to optimize Git repository data\&.
443 \fBgit-merge\fR(1)
444 .RS 4
445 Join two or more development histories together\&.
448 \fBgit-mv\fR(1)
449 .RS 4
450 Move or rename a file, a directory, or a symlink\&.
453 \fBgit-notes\fR(1)
454 .RS 4
455 Add or inspect object notes\&.
458 \fBgit-pull\fR(1)
459 .RS 4
460 Fetch from and integrate with another repository or a local branch\&.
463 \fBgit-push\fR(1)
464 .RS 4
465 Update remote refs along with associated objects\&.
468 \fBgit-range-diff\fR(1)
469 .RS 4
470 Compare two commit ranges (e\&.g\&. two versions of a branch)\&.
473 \fBgit-rebase\fR(1)
474 .RS 4
475 Reapply commits on top of another base tip\&.
478 \fBgit-reset\fR(1)
479 .RS 4
480 Reset current HEAD to the specified state\&.
483 \fBgit-restore\fR(1)
484 .RS 4
485 Restore working tree files\&.
488 \fBgit-revert\fR(1)
489 .RS 4
490 Revert some existing commits\&.
493 \fBgit-rm\fR(1)
494 .RS 4
495 Remove files from the working tree and from the index\&.
498 \fBgit-shortlog\fR(1)
499 .RS 4
500 Summarize
501 \fIgit log\fR
502 output\&.
505 \fBgit-show\fR(1)
506 .RS 4
507 Show various types of objects\&.
510 \fBgit-sparse-checkout\fR(1)
511 .RS 4
512 Reduce your working tree to a subset of tracked files\&.
515 \fBgit-stash\fR(1)
516 .RS 4
517 Stash the changes in a dirty working directory away\&.
520 \fBgit-status\fR(1)
521 .RS 4
522 Show the working tree status\&.
525 \fBgit-submodule\fR(1)
526 .RS 4
527 Initialize, update or inspect submodules\&.
530 \fBgit-switch\fR(1)
531 .RS 4
532 Switch branches\&.
535 \fBgit-tag\fR(1)
536 .RS 4
537 Create, list, delete or verify a tag object signed with GPG\&.
540 \fBgit-worktree\fR(1)
541 .RS 4
542 Manage multiple working trees\&.
545 \fBgitk\fR(1)
546 .RS 4
547 The Git repository browser\&.
550 \fBscalar\fR(1)
551 .RS 4
552 A tool for managing large Git repositories\&.
554 .SS "Ancillary Commands"
556 Manipulators:
558 \fBgit-config\fR(1)
559 .RS 4
560 Get and set repository or global options\&.
563 \fBgit-fast-export\fR(1)
564 .RS 4
565 Git data exporter\&.
568 \fBgit-fast-import\fR(1)
569 .RS 4
570 Backend for fast Git data importers\&.
573 \fBgit-filter-branch\fR(1)
574 .RS 4
575 Rewrite branches\&.
578 \fBgit-mergetool\fR(1)
579 .RS 4
580 Run merge conflict resolution tools to resolve merge conflicts\&.
583 \fBgit-pack-refs\fR(1)
584 .RS 4
585 Pack heads and tags for efficient repository access\&.
588 \fBgit-prune\fR(1)
589 .RS 4
590 Prune all unreachable objects from the object database\&.
593 \fBgit-reflog\fR(1)
594 .RS 4
595 Manage reflog information\&.
598 \fBgit-refs\fR(1)
599 .RS 4
600 Low\-level access to refs\&.
603 \fBgit-remote\fR(1)
604 .RS 4
605 Manage set of tracked repositories\&.
608 \fBgit-repack\fR(1)
609 .RS 4
610 Pack unpacked objects in a repository\&.
613 \fBgit-replace\fR(1)
614 .RS 4
615 Create, list, delete refs to replace objects\&.
618 Interrogators:
620 \fBgit-annotate\fR(1)
621 .RS 4
622 Annotate file lines with commit information\&.
625 \fBgit-blame\fR(1)
626 .RS 4
627 Show what revision and author last modified each line of a file\&.
630 \fBgit-bugreport\fR(1)
631 .RS 4
632 Collect information for user to file a bug report\&.
635 \fBgit-count-objects\fR(1)
636 .RS 4
637 Count unpacked number of objects and their disk consumption\&.
640 \fBgit-diagnose\fR(1)
641 .RS 4
642 Generate a zip archive of diagnostic information\&.
645 \fBgit-difftool\fR(1)
646 .RS 4
647 Show changes using common diff tools\&.
650 \fBgit-fsck\fR(1)
651 .RS 4
652 Verifies the connectivity and validity of the objects in the database\&.
655 \fBgit-help\fR(1)
656 .RS 4
657 Display help information about Git\&.
660 \fBgit-instaweb\fR(1)
661 .RS 4
662 Instantly browse your working repository in gitweb\&.
665 \fBgit-merge-tree\fR(1)
666 .RS 4
667 Perform merge without touching index or working tree\&.
670 \fBgit-rerere\fR(1)
671 .RS 4
672 Reuse recorded resolution of conflicted merges\&.
675 \fBgit-show-branch\fR(1)
676 .RS 4
677 Show branches and their commits\&.
680 \fBgit-verify-commit\fR(1)
681 .RS 4
682 Check the GPG signature of commits\&.
685 \fBgit-verify-tag\fR(1)
686 .RS 4
687 Check the GPG signature of tags\&.
690 \fBgit-version\fR(1)
691 .RS 4
692 Display version information about Git\&.
695 \fBgit-whatchanged\fR(1)
696 .RS 4
697 Show logs with differences each commit introduces\&.
700 \fBgitweb\fR(1)
701 .RS 4
702 Git web interface (web frontend to Git repositories)\&.
704 .SS "Interacting with Others"
706 These commands are to interact with foreign SCM and with other people via patch over e\-mail\&.
708 \fBgit-archimport\fR(1)
709 .RS 4
710 Import a GNU Arch repository into Git\&.
713 \fBgit-cvsexportcommit\fR(1)
714 .RS 4
715 Export a single commit to a CVS checkout\&.
718 \fBgit-cvsimport\fR(1)
719 .RS 4
720 Salvage your data out of another SCM people love to hate\&.
723 \fBgit-cvsserver\fR(1)
724 .RS 4
725 A CVS server emulator for Git\&.
728 \fBgit-imap-send\fR(1)
729 .RS 4
730 Send a collection of patches from stdin to an IMAP folder\&.
733 \fBgit-p4\fR(1)
734 .RS 4
735 Import from and submit to Perforce repositories\&.
738 \fBgit-quiltimport\fR(1)
739 .RS 4
740 Applies a quilt patchset onto the current branch\&.
743 \fBgit-request-pull\fR(1)
744 .RS 4
745 Generates a summary of pending changes\&.
748 \fBgit-send-email\fR(1)
749 .RS 4
750 Send a collection of patches as emails\&.
753 \fBgit-svn\fR(1)
754 .RS 4
755 Bidirectional operation between a Subversion repository and Git\&.
757 .SS "Reset, restore and revert"
759 There are three commands with similar names: \fBgit reset\fR, \fBgit restore\fR and \fBgit revert\fR\&.
761 .RS 4
762 .ie n \{\
763 \h'-04'\(bu\h'+03'\c
765 .el \{\
766 .sp -1
767 .IP \(bu 2.3
769 \fBgit-revert\fR(1)
770 is about making a new commit that reverts the changes made by other commits\&.
773 .RS 4
774 .ie n \{\
775 \h'-04'\(bu\h'+03'\c
777 .el \{\
778 .sp -1
779 .IP \(bu 2.3
781 \fBgit-restore\fR(1)
782 is about restoring files in the working tree from either the index or another commit\&. This command does not update your branch\&. The command can also be used to restore files in the index from another commit\&.
785 .RS 4
786 .ie n \{\
787 \h'-04'\(bu\h'+03'\c
789 .el \{\
790 .sp -1
791 .IP \(bu 2.3
793 \fBgit-reset\fR(1)
794 is about updating your branch, moving the tip in order to add or remove commits from the branch\&. This operation changes the commit history\&.
796 \fBgit reset\fR
797 can also be used to restore the index, overlapping with
798 \fBgit restore\fR\&.
800 .SH "LOW\-LEVEL COMMANDS (PLUMBING)"
802 Although Git includes its own porcelain layer, its low\-level commands are sufficient to support development of alternative porcelains\&. Developers of such porcelains might start by reading about \fBgit-update-index\fR(1) and \fBgit-read-tree\fR(1)\&.
804 The interface (input, output, set of options and the semantics) to these low\-level commands are meant to be a lot more stable than Porcelain level commands, because these commands are primarily for scripted use\&. The interface to Porcelain commands on the other hand are subject to change in order to improve the end user experience\&.
806 The following description divides the low\-level commands into commands that manipulate objects (in the repository, index, and working tree), commands that interrogate and compare objects, and commands that move objects and references between repositories\&.
807 .SS "Manipulation commands"
809 \fBgit-apply\fR(1)
810 .RS 4
811 Apply a patch to files and/or to the index\&.
814 \fBgit-checkout-index\fR(1)
815 .RS 4
816 Copy files from the index to the working tree\&.
819 \fBgit-commit-graph\fR(1)
820 .RS 4
821 Write and verify Git commit\-graph files\&.
824 \fBgit-commit-tree\fR(1)
825 .RS 4
826 Create a new commit object\&.
829 \fBgit-hash-object\fR(1)
830 .RS 4
831 Compute object ID and optionally create an object from a file\&.
834 \fBgit-index-pack\fR(1)
835 .RS 4
836 Build pack index file for an existing packed archive\&.
839 \fBgit-merge-file\fR(1)
840 .RS 4
841 Run a three\-way file merge\&.
844 \fBgit-merge-index\fR(1)
845 .RS 4
846 Run a merge for files needing merging\&.
849 \fBgit-mktag\fR(1)
850 .RS 4
851 Creates a tag object with extra validation\&.
854 \fBgit-mktree\fR(1)
855 .RS 4
856 Build a tree\-object from ls\-tree formatted text\&.
859 \fBgit-multi-pack-index\fR(1)
860 .RS 4
861 Write and verify multi\-pack\-indexes\&.
864 \fBgit-pack-objects\fR(1)
865 .RS 4
866 Create a packed archive of objects\&.
869 \fBgit-prune-packed\fR(1)
870 .RS 4
871 Remove extra objects that are already in pack files\&.
874 \fBgit-read-tree\fR(1)
875 .RS 4
876 Reads tree information into the index\&.
879 \fBgit-replay\fR(1)
880 .RS 4
881 EXPERIMENTAL: Replay commits on a new base, works with bare repos too\&.
884 \fBgit-symbolic-ref\fR(1)
885 .RS 4
886 Read, modify and delete symbolic refs\&.
889 \fBgit-unpack-objects\fR(1)
890 .RS 4
891 Unpack objects from a packed archive\&.
894 \fBgit-update-index\fR(1)
895 .RS 4
896 Register file contents in the working tree to the index\&.
899 \fBgit-update-ref\fR(1)
900 .RS 4
901 Update the object name stored in a ref safely\&.
904 \fBgit-write-tree\fR(1)
905 .RS 4
906 Create a tree object from the current index\&.
908 .SS "Interrogation commands"
910 \fBgit-cat-file\fR(1)
911 .RS 4
912 Provide contents or details of repository objects\&.
915 \fBgit-cherry\fR(1)
916 .RS 4
917 Find commits yet to be applied to upstream\&.
920 \fBgit-diff-files\fR(1)
921 .RS 4
922 Compares files in the working tree and the index\&.
925 \fBgit-diff-index\fR(1)
926 .RS 4
927 Compare a tree to the working tree or index\&.
930 \fBgit-diff-tree\fR(1)
931 .RS 4
932 Compares the content and mode of blobs found via two tree objects\&.
935 \fBgit-for-each-ref\fR(1)
936 .RS 4
937 Output information on each ref\&.
940 \fBgit-for-each-repo\fR(1)
941 .RS 4
942 Run a Git command on a list of repositories\&.
945 \fBgit-get-tar-commit-id\fR(1)
946 .RS 4
947 Extract commit ID from an archive created using git\-archive\&.
950 \fBgit-ls-files\fR(1)
951 .RS 4
952 Show information about files in the index and the working tree\&.
955 \fBgit-ls-remote\fR(1)
956 .RS 4
957 List references in a remote repository\&.
960 \fBgit-ls-tree\fR(1)
961 .RS 4
962 List the contents of a tree object\&.
965 \fBgit-merge-base\fR(1)
966 .RS 4
967 Find as good common ancestors as possible for a merge\&.
970 \fBgit-name-rev\fR(1)
971 .RS 4
972 Find symbolic names for given revs\&.
975 \fBgit-pack-redundant\fR(1)
976 .RS 4
977 Find redundant pack files\&.
980 \fBgit-rev-list\fR(1)
981 .RS 4
982 Lists commit objects in reverse chronological order\&.
985 \fBgit-rev-parse\fR(1)
986 .RS 4
987 Pick out and massage parameters\&.
990 \fBgit-show-index\fR(1)
991 .RS 4
992 Show packed archive index\&.
995 \fBgit-show-ref\fR(1)
996 .RS 4
997 List references in a local repository\&.
1000 \fBgit-unpack-file\fR(1)
1001 .RS 4
1002 Creates a temporary file with a blob\(cqs contents\&.
1005 \fBgit-var\fR(1)
1006 .RS 4
1007 Show a Git logical variable\&.
1010 \fBgit-verify-pack\fR(1)
1011 .RS 4
1012 Validate packed Git archive files\&.
1015 In general, the interrogate commands do not touch the files in the working tree\&.
1016 .SS "Syncing repositories"
1018 \fBgit-daemon\fR(1)
1019 .RS 4
1020 A really simple server for Git repositories\&.
1023 \fBgit-fetch-pack\fR(1)
1024 .RS 4
1025 Receive missing objects from another repository\&.
1028 \fBgit-http-backend\fR(1)
1029 .RS 4
1030 Server side implementation of Git over HTTP\&.
1033 \fBgit-send-pack\fR(1)
1034 .RS 4
1035 Push objects over Git protocol to another repository\&.
1038 \fBgit-update-server-info\fR(1)
1039 .RS 4
1040 Update auxiliary info file to help dumb servers\&.
1043 The following are helper commands used by the above; end users typically do not use them directly\&.
1045 \fBgit-http-fetch\fR(1)
1046 .RS 4
1047 Download from a remote Git repository via HTTP\&.
1050 \fBgit-http-push\fR(1)
1051 .RS 4
1052 Push objects over HTTP/DAV to another repository\&.
1055 \fBgit-receive-pack\fR(1)
1056 .RS 4
1057 Receive what is pushed into the repository\&.
1060 \fBgit-shell\fR(1)
1061 .RS 4
1062 Restricted login shell for Git\-only SSH access\&.
1065 \fBgit-upload-archive\fR(1)
1066 .RS 4
1067 Send archive back to git\-archive\&.
1070 \fBgit-upload-pack\fR(1)
1071 .RS 4
1072 Send objects packed back to git\-fetch\-pack\&.
1074 .SS "Internal helper commands"
1076 These are internal helper commands used by other commands; end users typically do not use them directly\&.
1078 \fBgit-check-attr\fR(1)
1079 .RS 4
1080 Display gitattributes information\&.
1083 \fBgit-check-ignore\fR(1)
1084 .RS 4
1085 Debug gitignore / exclude files\&.
1088 \fBgit-check-mailmap\fR(1)
1089 .RS 4
1090 Show canonical names and email addresses of contacts\&.
1093 \fBgit-check-ref-format\fR(1)
1094 .RS 4
1095 Ensures that a reference name is well formed\&.
1098 \fBgit-column\fR(1)
1099 .RS 4
1100 Display data in columns\&.
1103 \fBgit-credential\fR(1)
1104 .RS 4
1105 Retrieve and store user credentials\&.
1108 \fBgit-credential-cache\fR(1)
1109 .RS 4
1110 Helper to temporarily store passwords in memory\&.
1113 \fBgit-credential-store\fR(1)
1114 .RS 4
1115 Helper to store credentials on disk\&.
1118 \fBgit-fmt-merge-msg\fR(1)
1119 .RS 4
1120 Produce a merge commit message\&.
1123 \fBgit-hook\fR(1)
1124 .RS 4
1125 Run git hooks\&.
1128 \fBgit-interpret-trailers\fR(1)
1129 .RS 4
1130 Add or parse structured information in commit messages\&.
1133 \fBgit-mailinfo\fR(1)
1134 .RS 4
1135 Extracts patch and authorship from a single e\-mail message\&.
1138 \fBgit-mailsplit\fR(1)
1139 .RS 4
1140 Simple UNIX mbox splitter program\&.
1143 \fBgit-merge-one-file\fR(1)
1144 .RS 4
1145 The standard helper program to use with git\-merge\-index\&.
1148 \fBgit-patch-id\fR(1)
1149 .RS 4
1150 Compute unique ID for a patch\&.
1153 \fBgit-sh-i18n\fR(1)
1154 .RS 4
1155 Git\(cqs i18n setup code for shell scripts\&.
1158 \fBgit-sh-setup\fR(1)
1159 .RS 4
1160 Common Git shell script setup code\&.
1163 \fBgit-stripspace\fR(1)
1164 .RS 4
1165 Remove unnecessary whitespace\&.
1167 .SH "GUIDES"
1169 The following documentation pages are guides about Git concepts\&.
1171 \fBgitcore-tutorial\fR(7)
1172 .RS 4
1173 A Git core tutorial for developers\&.
1176 \fBgitcredentials\fR(7)
1177 .RS 4
1178 Providing usernames and passwords to Git\&.
1181 \fBgitcvs-migration\fR(7)
1182 .RS 4
1183 Git for CVS users\&.
1186 \fBgitdiffcore\fR(7)
1187 .RS 4
1188 Tweaking diff output\&.
1191 \fBgiteveryday\fR(7)
1192 .RS 4
1193 A useful minimum set of commands for Everyday Git\&.
1196 \fBgitfaq\fR(7)
1197 .RS 4
1198 Frequently asked questions about using Git\&.
1201 \fBgitglossary\fR(7)
1202 .RS 4
1203 A Git Glossary\&.
1206 \fBgitnamespaces\fR(7)
1207 .RS 4
1208 Git namespaces\&.
1211 \fBgitremote-helpers\fR(7)
1212 .RS 4
1213 Helper programs to interact with remote repositories\&.
1216 \fBgitsubmodules\fR(7)
1217 .RS 4
1218 Mounting one repository inside another\&.
1221 \fBgittutorial\fR(7)
1222 .RS 4
1223 A tutorial introduction to Git\&.
1226 \fBgittutorial-2\fR(7)
1227 .RS 4
1228 A tutorial introduction to Git: part two\&.
1231 \fBgitworkflows\fR(7)
1232 .RS 4
1233 An overview of recommended workflows with Git\&.
1235 .SH "REPOSITORY, COMMAND AND FILE INTERFACES"
1237 This documentation discusses repository and command interfaces which users are expected to interact with directly\&. See \fB\-\-user\-formats\fR in \fBgit-help\fR(1) for more details on the criteria\&.
1239 \fBgitattributes\fR(5)
1240 .RS 4
1241 Defining attributes per path\&.
1244 \fBgitcli\fR(7)
1245 .RS 4
1246 Git command\-line interface and conventions\&.
1249 \fBgithooks\fR(5)
1250 .RS 4
1251 Hooks used by Git\&.
1254 \fBgitignore\fR(5)
1255 .RS 4
1256 Specifies intentionally untracked files to ignore\&.
1259 \fBgitmailmap\fR(5)
1260 .RS 4
1261 Map author/committer names and/or E\-Mail addresses\&.
1264 \fBgitmodules\fR(5)
1265 .RS 4
1266 Defining submodule properties\&.
1269 \fBgitrepository-layout\fR(5)
1270 .RS 4
1271 Git Repository Layout\&.
1274 \fBgitrevisions\fR(7)
1275 .RS 4
1276 Specifying revisions and ranges for Git\&.
1278 .SH "FILE FORMATS, PROTOCOLS AND OTHER DEVELOPER INTERFACES"
1280 This documentation discusses file formats, over\-the\-wire protocols and other git developer interfaces\&. See \fB\-\-developer\-interfaces\fR in \fBgit-help\fR(1)\&.
1282 \fBgitformat-bundle\fR(5)
1283 .RS 4
1284 The bundle file format\&.
1287 \fBgitformat-chunk\fR(5)
1288 .RS 4
1289 Chunk\-based file formats\&.
1292 \fBgitformat-commit-graph\fR(5)
1293 .RS 4
1294 Git commit\-graph format\&.
1297 \fBgitformat-index\fR(5)
1298 .RS 4
1299 Git index format\&.
1302 \fBgitformat-pack\fR(5)
1303 .RS 4
1304 Git pack format\&.
1307 \fBgitformat-signature\fR(5)
1308 .RS 4
1309 Git cryptographic signature formats\&.
1312 \fBgitprotocol-capabilities\fR(5)
1313 .RS 4
1314 Protocol v0 and v1 capabilities\&.
1317 \fBgitprotocol-common\fR(5)
1318 .RS 4
1319 Things common to various protocols\&.
1322 \fBgitprotocol-http\fR(5)
1323 .RS 4
1324 Git HTTP\-based protocols\&.
1327 \fBgitprotocol-pack\fR(5)
1328 .RS 4
1329 How packs are transferred over\-the\-wire\&.
1332 \fBgitprotocol-v2\fR(5)
1333 .RS 4
1334 Git Wire Protocol, Version 2\&.
1336 .SH "CONFIGURATION MECHANISM"
1338 Git uses a simple text format to store customizations that are per repository and are per user\&. Such a configuration file may look like this:
1340 .if n \{\
1341 .RS 4
1345 # A \*(Aq#\*(Aq or \*(Aq;\*(Aq character indicates a comment\&.
1348 ; core variables
1349 [core]
1350         ; Don\*(Aqt trust file modes
1351         filemode = false
1353 ; user identity
1354 [user]
1355         name = "Junio C Hamano"
1356         email = "gitster@pobox\&.com"
1358 .if n \{\
1363 Various commands read from the configuration file and adjust their operation accordingly\&. See \fBgit-config\fR(1) for a list and more details about the configuration mechanism\&.
1364 .SH "IDENTIFIER TERMINOLOGY"
1366 <object>
1367 .RS 4
1368 Indicates the object name for any type of object\&.
1371 <blob>
1372 .RS 4
1373 Indicates a blob object name\&.
1376 <tree>
1377 .RS 4
1378 Indicates a tree object name\&.
1381 <commit>
1382 .RS 4
1383 Indicates a commit object name\&.
1386 <tree\-ish>
1387 .RS 4
1388 Indicates a tree, commit or tag object name\&. A command that takes a <tree\-ish> argument ultimately wants to operate on a <tree> object but automatically dereferences <commit> and <tag> objects that point at a <tree>\&.
1391 <commit\-ish>
1392 .RS 4
1393 Indicates a commit or tag object name\&. A command that takes a <commit\-ish> argument ultimately wants to operate on a <commit> object but automatically dereferences <tag> objects that point at a <commit>\&.
1396 <type>
1397 .RS 4
1398 Indicates that an object type is required\&. Currently one of:
1399 \fBblob\fR,
1400 \fBtree\fR,
1401 \fBcommit\fR, or
1402 \fBtag\fR\&.
1405 <file>
1406 .RS 4
1407 Indicates a filename \- almost always relative to the root of the tree structure
1408 \fBGIT_INDEX_FILE\fR
1409 describes\&.
1411 .SH "SYMBOLIC IDENTIFIERS"
1413 Any Git command accepting any <object> can also use the following symbolic notation:
1415 HEAD
1416 .RS 4
1417 indicates the head of the current branch\&.
1420 <tag>
1421 .RS 4
1422 a valid tag
1423 \fIname\fR
1424 (i\&.e\&. a
1425 \fBrefs/tags/<tag>\fR
1426 reference)\&.
1429 <head>
1430 .RS 4
1431 a valid head
1432 \fIname\fR
1433 (i\&.e\&. a
1434 \fBrefs/heads/<head>\fR
1435 reference)\&.
1438 For a more complete list of ways to spell object names, see "SPECIFYING REVISIONS" section in \fBgitrevisions\fR(7)\&.
1439 .SH "FILE/DIRECTORY STRUCTURE"
1441 Please see the \fBgitrepository-layout\fR(5) document\&.
1443 Read \fBgithooks\fR(5) for more details about each hook\&.
1445 Higher level SCMs may provide and manage additional information in the \fB$GIT_DIR\fR\&.
1446 .SH "TERMINOLOGY"
1448 Please see \fBgitglossary\fR(7)\&.
1449 .SH "ENVIRONMENT VARIABLES"
1451 Various Git commands pay attention to environment variables and change their behavior\&. The environment variables marked as "Boolean" take their values the same way as Boolean valued configuration variables, e\&.g\&. "true", "yes", "on" and positive numbers are taken as "yes"\&.
1453 Here are the variables:
1454 .SS "The Git Repository"
1456 These environment variables apply to \fIall\fR core Git commands\&. Nb: it is worth noting that they may be used/overridden by SCMS sitting above Git so take care if using a foreign front\-end\&.
1458 \fBGIT_INDEX_FILE\fR
1459 .RS 4
1460 This environment variable specifies an alternate index file\&. If not specified, the default of
1461 \fB$GIT_DIR/index\fR
1462 is used\&.
1465 \fBGIT_INDEX_VERSION\fR
1466 .RS 4
1467 This environment variable specifies what index version is used when writing the index file out\&. It won\(cqt affect existing index files\&. By default index file version 2 or 3 is used\&. See
1468 \fBgit-update-index\fR(1)
1469 for more information\&.
1472 \fBGIT_OBJECT_DIRECTORY\fR
1473 .RS 4
1474 If the object storage directory is specified via this environment variable then the sha1 directories are created underneath \- otherwise the default
1475 \fB$GIT_DIR/objects\fR
1476 directory is used\&.
1479 \fBGIT_ALTERNATE_OBJECT_DIRECTORIES\fR
1480 .RS 4
1481 Due to the immutable nature of Git objects, old objects can be archived into shared, read\-only directories\&. This variable specifies a ":" separated (on Windows ";" separated) list of Git object directories which can be used to search for Git objects\&. New objects will not be written to these directories\&.
1483 Entries that begin with
1484 \fB"\fR
1485 (double\-quote) will be interpreted as C\-style quoted paths, removing leading and trailing double\-quotes and respecting backslash escapes\&. E\&.g\&., the value
1486 \fB"path\-with\-\e"\-and\-:\-in\-it":vanilla\-path\fR
1487 has two paths:
1488 \fBpath\-with\-"\-and\-:\-in\-it\fR
1490 \fBvanilla\-path\fR\&.
1493 \fBGIT_DIR\fR
1494 .RS 4
1495 If the
1496 \fBGIT_DIR\fR
1497 environment variable is set then it specifies a path to use instead of the default
1498 \fB\&.git\fR
1499 for the base of the repository\&. The
1500 \fB\-\-git\-dir\fR
1501 command\-line option also sets this value\&.
1504 \fBGIT_WORK_TREE\fR
1505 .RS 4
1506 Set the path to the root of the working tree\&. This can also be controlled by the
1507 \fB\-\-work\-tree\fR
1508 command\-line option and the core\&.worktree configuration variable\&.
1511 \fBGIT_NAMESPACE\fR
1512 .RS 4
1513 Set the Git namespace; see
1514 \fBgitnamespaces\fR(7)
1515 for details\&. The
1516 \fB\-\-namespace\fR
1517 command\-line option also sets this value\&.
1520 \fBGIT_CEILING_DIRECTORIES\fR
1521 .RS 4
1522 This should be a colon\-separated list of absolute paths\&. If set, it is a list of directories that Git should not chdir up into while looking for a repository directory (useful for excluding slow\-loading network directories)\&. It will not exclude the current working directory or a GIT_DIR set on the command line or in the environment\&. Normally, Git has to read the entries in this list and resolve any symlink that might be present in order to compare them with the current directory\&. However, if even this access is slow, you can add an empty entry to the list to tell Git that the subsequent entries are not symlinks and needn\(cqt be resolved; e\&.g\&.,
1523 \fBGIT_CEILING_DIRECTORIES=/maybe/symlink::/very/slow/non/symlink\fR\&.
1526 \fBGIT_DISCOVERY_ACROSS_FILESYSTEM\fR
1527 .RS 4
1528 When run in a directory that does not have "\&.git" repository directory, Git tries to find such a directory in the parent directories to find the top of the working tree, but by default it does not cross filesystem boundaries\&. This Boolean environment variable can be set to true to tell Git not to stop at filesystem boundaries\&. Like
1529 \fBGIT_CEILING_DIRECTORIES\fR, this will not affect an explicit repository directory set via
1530 \fBGIT_DIR\fR
1531 or on the command line\&.
1534 \fBGIT_COMMON_DIR\fR
1535 .RS 4
1536 If this variable is set to a path, non\-worktree files that are normally in $GIT_DIR will be taken from this path instead\&. Worktree\-specific files such as HEAD or index are taken from $GIT_DIR\&. See
1537 \fBgitrepository-layout\fR(5)
1539 \fBgit-worktree\fR(1)
1540 for details\&. This variable has lower precedence than other path variables such as GIT_INDEX_FILE, GIT_OBJECT_DIRECTORY\&...
1543 \fBGIT_DEFAULT_HASH\fR
1544 .RS 4
1545 If this variable is set, the default hash algorithm for new repositories will be set to this value\&. This value is ignored when cloning and the setting of the remote repository is always used\&. The default is "sha1"\&. See
1546 \fB\-\-object\-format\fR
1548 \fBgit-init\fR(1)\&.
1551 \fBGIT_DEFAULT_REF_FORMAT\fR
1552 .RS 4
1553 If this variable is set, the default reference backend format for new repositories will be set to this value\&. The default is "files"\&. See
1554 \fB\-\-ref\-format\fR
1556 \fBgit-init\fR(1)\&.
1558 .SS "Git Commits"
1560 \fBGIT_AUTHOR_NAME\fR
1561 .RS 4
1562 The human\-readable name used in the author identity when creating commit or tag objects, or when writing reflogs\&. Overrides the
1563 \fBuser\&.name\fR
1565 \fBauthor\&.name\fR
1566 configuration settings\&.
1569 \fBGIT_AUTHOR_EMAIL\fR
1570 .RS 4
1571 The email address used in the author identity when creating commit or tag objects, or when writing reflogs\&. Overrides the
1572 \fBuser\&.email\fR
1574 \fBauthor\&.email\fR
1575 configuration settings\&.
1578 \fBGIT_AUTHOR_DATE\fR
1579 .RS 4
1580 The date used for the author identity when creating commit or tag objects, or when writing reflogs\&. See
1581 \fBgit-commit\fR(1)
1582 for valid formats\&.
1585 \fBGIT_COMMITTER_NAME\fR
1586 .RS 4
1587 The human\-readable name used in the committer identity when creating commit or tag objects, or when writing reflogs\&. Overrides the
1588 \fBuser\&.name\fR
1590 \fBcommitter\&.name\fR
1591 configuration settings\&.
1594 \fBGIT_COMMITTER_EMAIL\fR
1595 .RS 4
1596 The email address used in the author identity when creating commit or tag objects, or when writing reflogs\&. Overrides the
1597 \fBuser\&.email\fR
1599 \fBcommitter\&.email\fR
1600 configuration settings\&.
1603 \fBGIT_COMMITTER_DATE\fR
1604 .RS 4
1605 The date used for the committer identity when creating commit or tag objects, or when writing reflogs\&. See
1606 \fBgit-commit\fR(1)
1607 for valid formats\&.
1610 \fBEMAIL\fR
1611 .RS 4
1612 The email address used in the author and committer identities if no other relevant environment variable or configuration setting has been set\&.
1614 .SS "Git Diffs"
1616 \fBGIT_DIFF_OPTS\fR
1617 .RS 4
1618 Only valid setting is "\-\-unified=??" or "\-u??" to set the number of context lines shown when a unified diff is created\&. This takes precedence over any "\-U" or "\-\-unified" option value passed on the Git diff command line\&.
1621 \fBGIT_EXTERNAL_DIFF\fR
1622 .RS 4
1623 When the environment variable
1624 \fBGIT_EXTERNAL_DIFF\fR
1625 is set, the program named by it is called to generate diffs, and Git does not use its builtin diff machinery\&. For a path that is added, removed, or modified,
1626 \fBGIT_EXTERNAL_DIFF\fR
1627 is called with 7 parameters:
1629 .if n \{\
1630 .RS 4
1633 path old\-file old\-hex old\-mode new\-file new\-hex new\-mode
1635 .if n \{\
1639 where:
1642 <old|new>\-file
1643 .RS 4
1644 are files GIT_EXTERNAL_DIFF can use to read the contents of <old|new>,
1647 <old|new>\-hex
1648 .RS 4
1649 are the 40\-hexdigit SHA\-1 hashes,
1652 <old|new>\-mode
1653 .RS 4
1654 are the octal representation of the file modes\&.
1656 The file parameters can point at the user\(cqs working file (e\&.g\&.
1657 \fBnew\-file\fR
1658 in "git\-diff\-files"),
1659 \fB/dev/null\fR
1660 (e\&.g\&.
1661 \fBold\-file\fR
1662 when a new file is added), or a temporary file (e\&.g\&.
1663 \fBold\-file\fR
1664 in the index)\&.
1665 \fBGIT_EXTERNAL_DIFF\fR
1666 should not worry about unlinking the temporary file \(em it is removed when
1667 \fBGIT_EXTERNAL_DIFF\fR
1668 exits\&.
1670 For a path that is unmerged,
1671 \fBGIT_EXTERNAL_DIFF\fR
1672 is called with 1 parameter, <path>\&.
1674 For each path
1675 \fBGIT_EXTERNAL_DIFF\fR
1676 is called, two environment variables,
1677 \fBGIT_DIFF_PATH_COUNTER\fR
1679 \fBGIT_DIFF_PATH_TOTAL\fR
1680 are set\&.
1683 \fBGIT_EXTERNAL_DIFF_TRUST_EXIT_CODE\fR
1684 .RS 4
1685 If this Boolean environment variable is set to true then the
1686 \fBGIT_EXTERNAL_DIFF\fR
1687 command is expected to return exit code 0 if it considers the input files to be equal or 1 if it considers them to be different, like
1688 \fBdiff(1)\fR\&. If it is set to false, which is the default, then the command is expected to return exit code 0 regardless of equality\&. Any other exit code causes Git to report a fatal error\&.
1691 \fBGIT_DIFF_PATH_COUNTER\fR
1692 .RS 4
1693 A 1\-based counter incremented by one for every path\&.
1696 \fBGIT_DIFF_PATH_TOTAL\fR
1697 .RS 4
1698 The total number of paths\&.
1700 .SS "other"
1702 \fBGIT_MERGE_VERBOSITY\fR
1703 .RS 4
1704 A number controlling the amount of output shown by the recursive merge strategy\&. Overrides merge\&.verbosity\&. See
1705 \fBgit-merge\fR(1)
1708 \fBGIT_PAGER\fR
1709 .RS 4
1710 This environment variable overrides
1711 \fB$PAGER\fR\&. If it is set to an empty string or to the value "cat", Git will not launch a pager\&. See also the
1712 \fBcore\&.pager\fR
1713 option in
1714 \fBgit-config\fR(1)\&.
1717 \fBGIT_PROGRESS_DELAY\fR
1718 .RS 4
1719 A number controlling how many seconds to delay before showing optional progress indicators\&. Defaults to 2\&.
1722 \fBGIT_EDITOR\fR
1723 .RS 4
1724 This environment variable overrides
1725 \fB$EDITOR\fR
1727 \fB$VISUAL\fR\&. It is used by several Git commands when, on interactive mode, an editor is to be launched\&. See also
1728 \fBgit-var\fR(1)
1729 and the
1730 \fBcore\&.editor\fR
1731 option in
1732 \fBgit-config\fR(1)\&.
1735 \fBGIT_SEQUENCE_EDITOR\fR
1736 .RS 4
1737 This environment variable overrides the configured Git editor when editing the todo list of an interactive rebase\&. See also
1738 \fBgit-rebase\fR(1)
1739 and the
1740 \fBsequence\&.editor\fR
1741 option in
1742 \fBgit-config\fR(1)\&.
1745 \fBGIT_SSH\fR, \fBGIT_SSH_COMMAND\fR
1746 .RS 4
1747 If either of these environment variables is set then
1748 \fIgit fetch\fR
1750 \fIgit push\fR
1751 will use the specified command instead of
1752 \fIssh\fR
1753 when they need to connect to a remote system\&. The command\-line parameters passed to the configured command are determined by the ssh variant\&. See
1754 \fBssh\&.variant\fR
1755 option in
1756 \fBgit-config\fR(1)
1757 for details\&.
1759 \fB$GIT_SSH_COMMAND\fR
1760 takes precedence over
1761 \fB$GIT_SSH\fR, and is interpreted by the shell, which allows additional arguments to be included\&.
1762 \fB$GIT_SSH\fR
1763 on the other hand must be just the path to a program (which can be a wrapper shell script, if additional arguments are needed)\&.
1765 Usually it is easier to configure any desired options through your personal
1766 \fB\&.ssh/config\fR
1767 file\&. Please consult your ssh documentation for further details\&.
1770 \fBGIT_SSH_VARIANT\fR
1771 .RS 4
1772 If this environment variable is set, it overrides Git\(cqs autodetection whether
1773 \fBGIT_SSH\fR/\fBGIT_SSH_COMMAND\fR/\fBcore\&.sshCommand\fR
1774 refer to OpenSSH, plink or tortoiseplink\&. This variable overrides the config setting
1775 \fBssh\&.variant\fR
1776 that serves the same purpose\&.
1779 \fBGIT_SSL_NO_VERIFY\fR
1780 .RS 4
1781 Setting and exporting this environment variable to any value tells Git not to verify the SSL certificate when fetching or pushing over HTTPS\&.
1784 \fBGIT_ATTR_SOURCE\fR
1785 .RS 4
1786 Sets the treeish that gitattributes will be read from\&.
1789 \fBGIT_ASKPASS\fR
1790 .RS 4
1791 If this environment variable is set, then Git commands which need to acquire passwords or passphrases (e\&.g\&. for HTTP or IMAP authentication) will call this program with a suitable prompt as command\-line argument and read the password from its STDOUT\&. See also the
1792 \fBcore\&.askPass\fR
1793 option in
1794 \fBgit-config\fR(1)\&.
1797 \fBGIT_TERMINAL_PROMPT\fR
1798 .RS 4
1799 If this Boolean environment variable is set to false, git will not prompt on the terminal (e\&.g\&., when asking for HTTP authentication)\&.
1802 \fBGIT_CONFIG_GLOBAL\fR, \fBGIT_CONFIG_SYSTEM\fR
1803 .RS 4
1804 Take the configuration from the given files instead from global or system\-level configuration files\&. If
1805 \fBGIT_CONFIG_SYSTEM\fR
1806 is set, the system config file defined at build time (usually
1807 \fB/etc/gitconfig\fR) will not be read\&. Likewise, if
1808 \fBGIT_CONFIG_GLOBAL\fR
1809 is set, neither
1810 \fB$HOME/\&.gitconfig\fR
1812 \fB$XDG_CONFIG_HOME/git/config\fR
1813 will be read\&. Can be set to
1814 \fB/dev/null\fR
1815 to skip reading configuration files of the respective level\&.
1818 \fBGIT_CONFIG_NOSYSTEM\fR
1819 .RS 4
1820 Whether to skip reading settings from the system\-wide
1821 \fB$(prefix)/etc/gitconfig\fR
1822 file\&. This Boolean environment variable can be used along with
1823 \fB$HOME\fR
1825 \fB$XDG_CONFIG_HOME\fR
1826 to create a predictable environment for a picky script, or you can set it to true to temporarily avoid using a buggy
1827 \fB/etc/gitconfig\fR
1828 file while waiting for someone with sufficient permissions to fix it\&.
1831 \fBGIT_FLUSH\fR
1832 .RS 4
1833 If this Boolean environment variable is set to true, then commands such as
1834 \fIgit blame\fR
1835 (in incremental mode),
1836 \fIgit rev\-list\fR,
1837 \fIgit log\fR,
1838 \fIgit check\-attr\fR
1840 \fIgit check\-ignore\fR
1841 will force a flush of the output stream after each record have been flushed\&. If this variable is set to false, the output of these commands will be done using completely buffered I/O\&. If this environment variable is not set, Git will choose buffered or record\-oriented flushing based on whether stdout appears to be redirected to a file or not\&.
1844 \fBGIT_TRACE\fR
1845 .RS 4
1846 Enables general trace messages, e\&.g\&. alias expansion, built\-in command execution and external command execution\&.
1848 If this variable is set to "1", "2" or "true" (comparison is case insensitive), trace messages will be printed to stderr\&.
1850 If the variable is set to an integer value greater than 2 and lower than 10 (strictly) then Git will interpret this value as an open file descriptor and will try to write the trace messages into this file descriptor\&.
1852 Alternatively, if the variable is set to an absolute path (starting with a
1853 \fI/\fR
1854 character), Git will interpret this as a file path and will try to append the trace messages to it\&.
1856 Unsetting the variable, or setting it to empty, "0" or "false" (case insensitive) disables trace messages\&.
1859 \fBGIT_TRACE_FSMONITOR\fR
1860 .RS 4
1861 Enables trace messages for the filesystem monitor extension\&. See
1862 \fBGIT_TRACE\fR
1863 for available trace output options\&.
1866 \fBGIT_TRACE_PACK_ACCESS\fR
1867 .RS 4
1868 Enables trace messages for all accesses to any packs\&. For each access, the pack file name and an offset in the pack is recorded\&. This may be helpful for troubleshooting some pack\-related performance problems\&. See
1869 \fBGIT_TRACE\fR
1870 for available trace output options\&.
1873 \fBGIT_TRACE_PACKET\fR
1874 .RS 4
1875 Enables trace messages for all packets coming in or out of a given program\&. This can help with debugging object negotiation or other protocol issues\&. Tracing is turned off at a packet starting with "PACK" (but see
1876 \fBGIT_TRACE_PACKFILE\fR
1877 below)\&. See
1878 \fBGIT_TRACE\fR
1879 for available trace output options\&.
1882 \fBGIT_TRACE_PACKFILE\fR
1883 .RS 4
1884 Enables tracing of packfiles sent or received by a given program\&. Unlike other trace output, this trace is verbatim: no headers, and no quoting of binary data\&. You almost certainly want to direct into a file (e\&.g\&.,
1885 \fBGIT_TRACE_PACKFILE=/tmp/my\&.pack\fR) rather than displaying it on the terminal or mixing it with other trace output\&.
1887 Note that this is currently only implemented for the client side of clones and fetches\&.
1890 \fBGIT_TRACE_PERFORMANCE\fR
1891 .RS 4
1892 Enables performance related trace messages, e\&.g\&. total execution time of each Git command\&. See
1893 \fBGIT_TRACE\fR
1894 for available trace output options\&.
1897 \fBGIT_TRACE_REFS\fR
1898 .RS 4
1899 Enables trace messages for operations on the ref database\&. See
1900 \fBGIT_TRACE\fR
1901 for available trace output options\&.
1904 \fBGIT_TRACE_SETUP\fR
1905 .RS 4
1906 Enables trace messages printing the \&.git, working tree and current working directory after Git has completed its setup phase\&. See
1907 \fBGIT_TRACE\fR
1908 for available trace output options\&.
1911 \fBGIT_TRACE_SHALLOW\fR
1912 .RS 4
1913 Enables trace messages that can help debugging fetching / cloning of shallow repositories\&. See
1914 \fBGIT_TRACE\fR
1915 for available trace output options\&.
1918 \fBGIT_TRACE_CURL\fR
1919 .RS 4
1920 Enables a curl full trace dump of all incoming and outgoing data, including descriptive information, of the git transport protocol\&. This is similar to doing curl
1921 \fB\-\-trace\-ascii\fR
1922 on the command line\&. See
1923 \fBGIT_TRACE\fR
1924 for available trace output options\&.
1927 \fBGIT_TRACE_CURL_NO_DATA\fR
1928 .RS 4
1929 When a curl trace is enabled (see
1930 \fBGIT_TRACE_CURL\fR
1931 above), do not dump data (that is, only dump info lines and headers)\&.
1934 \fBGIT_TRACE2\fR
1935 .RS 4
1936 Enables more detailed trace messages from the "trace2" library\&. Output from
1937 \fBGIT_TRACE2\fR
1938 is a simple text\-based format for human readability\&.
1940 If this variable is set to "1", "2" or "true" (comparison is case insensitive), trace messages will be printed to stderr\&.
1942 If the variable is set to an integer value greater than 2 and lower than 10 (strictly) then Git will interpret this value as an open file descriptor and will try to write the trace messages into this file descriptor\&.
1944 Alternatively, if the variable is set to an absolute path (starting with a
1945 \fI/\fR
1946 character), Git will interpret this as a file path and will try to append the trace messages to it\&. If the path already exists and is a directory, the trace messages will be written to files (one per process) in that directory, named according to the last component of the SID and an optional counter (to avoid filename collisions)\&.
1948 In addition, if the variable is set to
1949 \fBaf_unix:[<socket\-type>:]<absolute\-pathname>\fR, Git will try to open the path as a Unix Domain Socket\&. The socket type can be either
1950 \fBstream\fR
1952 \fBdgram\fR\&.
1954 Unsetting the variable, or setting it to empty, "0" or "false" (case insensitive) disables trace messages\&.
1957 \m[blue]\fBTrace2 documentation\fR\m[]\&\s-2\u[2]\d\s+2
1958 for full details\&.
1961 \fBGIT_TRACE2_EVENT\fR
1962 .RS 4
1963 This setting writes a JSON\-based format that is suited for machine interpretation\&. See
1964 \fBGIT_TRACE2\fR
1965 for available trace output options and
1966 \m[blue]\fBTrace2 documentation\fR\m[]\&\s-2\u[2]\d\s+2
1967 for full details\&.
1970 \fBGIT_TRACE2_PERF\fR
1971 .RS 4
1972 In addition to the text\-based messages available in
1973 \fBGIT_TRACE2\fR, this setting writes a column\-based format for understanding nesting regions\&. See
1974 \fBGIT_TRACE2\fR
1975 for available trace output options and
1976 \m[blue]\fBTrace2 documentation\fR\m[]\&\s-2\u[2]\d\s+2
1977 for full details\&.
1980 \fBGIT_TRACE_REDACT\fR
1981 .RS 4
1982 By default, when tracing is activated, Git redacts the values of cookies, the "Authorization:" header, the "Proxy\-Authorization:" header and packfile URIs\&. Set this Boolean environment variable to false to prevent this redaction\&.
1985 \fBGIT_NO_REPLACE_OBJECTS\fR
1986 .RS 4
1987 Setting and exporting this environment variable tells Git to ignore replacement refs and do not replace Git objects\&.
1990 \fBGIT_LITERAL_PATHSPECS\fR
1991 .RS 4
1992 Setting this Boolean environment variable to true will cause Git to treat all pathspecs literally, rather than as glob patterns\&. For example, running
1993 \fBGIT_LITERAL_PATHSPECS=1 git log \-\- \*(Aq*\&.c\*(Aq\fR
1994 will search for commits that touch the path
1995 \fB*\&.c\fR, not any paths that the glob
1996 \fB*\&.c\fR
1997 matches\&. You might want this if you are feeding literal paths to Git (e\&.g\&., paths previously given to you by
1998 \fBgit ls\-tree\fR,
1999 \fB\-\-raw\fR
2000 diff output, etc)\&.
2003 \fBGIT_GLOB_PATHSPECS\fR
2004 .RS 4
2005 Setting this Boolean environment variable to true will cause Git to treat all pathspecs as glob patterns (aka "glob" magic)\&.
2008 \fBGIT_NOGLOB_PATHSPECS\fR
2009 .RS 4
2010 Setting this Boolean environment variable to true will cause Git to treat all pathspecs as literal (aka "literal" magic)\&.
2013 \fBGIT_ICASE_PATHSPECS\fR
2014 .RS 4
2015 Setting this Boolean environment variable to true will cause Git to treat all pathspecs as case\-insensitive\&.
2018 \fBGIT_NO_LAZY_FETCH\fR
2019 .RS 4
2020 Setting this Boolean environment variable to true tells Git not to lazily fetch missing objects from the promisor remote on demand\&.
2023 \fBGIT_REFLOG_ACTION\fR
2024 .RS 4
2025 When a ref is updated, reflog entries are created to keep track of the reason why the ref was updated (which is typically the name of the high\-level command that updated the ref), in addition to the old and new values of the ref\&. A scripted Porcelain command can use set_reflog_action helper function in
2026 \fBgit\-sh\-setup\fR
2027 to set its name to this variable when it is invoked as the top level command by the end user, to be recorded in the body of the reflog\&.
2030 \fBGIT_REF_PARANOIA\fR
2031 .RS 4
2032 If this Boolean environment variable is set to false, ignore broken or badly named refs when iterating over lists of refs\&. Normally Git will try to include any such refs, which may cause some operations to fail\&. This is usually preferable, as potentially destructive operations (e\&.g\&.,
2033 \fBgit-prune\fR(1)) are better off aborting rather than ignoring broken refs (and thus considering the history they point to as not worth saving)\&. The default value is
2034 \fB1\fR
2035 (i\&.e\&., be paranoid about detecting and aborting all operations)\&. You should not normally need to set this to
2036 \fB0\fR, but it may be useful when trying to salvage data from a corrupted repository\&.
2039 \fBGIT_COMMIT_GRAPH_PARANOIA\fR
2040 .RS 4
2041 When loading a commit object from the commit\-graph, Git performs an existence check on the object in the object database\&. This is done to avoid issues with stale commit\-graphs that contain references to already\-deleted commits, but comes with a performance penalty\&.
2043 The default is "false", which disables the aforementioned behavior\&. Setting this to "true" enables the existence check so that stale commits will never be returned from the commit\-graph at the cost of performance\&.
2046 \fBGIT_ALLOW_PROTOCOL\fR
2047 .RS 4
2048 If set to a colon\-separated list of protocols, behave as if
2049 \fBprotocol\&.allow\fR
2050 is set to
2051 \fBnever\fR, and each of the listed protocols has
2052 \fBprotocol\&.<name>\&.allow\fR
2053 set to
2054 \fBalways\fR
2055 (overriding any existing configuration)\&. See the description of
2056 \fBprotocol\&.allow\fR
2058 \fBgit-config\fR(1)
2059 for more details\&.
2062 \fBGIT_PROTOCOL_FROM_USER\fR
2063 .RS 4
2064 Set this Boolean environment variable to false to prevent protocols used by fetch/push/clone which are configured to the
2065 \fBuser\fR
2066 state\&. This is useful to restrict recursive submodule initialization from an untrusted repository or for programs which feed potentially\-untrusted URLS to git commands\&. See
2067 \fBgit-config\fR(1)
2068 for more details\&.
2071 \fBGIT_PROTOCOL\fR
2072 .RS 4
2073 For internal use only\&. Used in handshaking the wire protocol\&. Contains a colon
2074 \fI:\fR
2075 separated list of keys with optional values
2076 \fI<key>[=<value>]\fR\&. Presence of unknown keys and values must be ignored\&.
2078 Note that servers may need to be configured to allow this variable to pass over some transports\&. It will be propagated automatically when accessing local repositories (i\&.e\&.,
2079 \fBfile://\fR
2080 or a filesystem path), as well as over the
2081 \fBgit://\fR
2082 protocol\&. For git\-over\-http, it should work automatically in most configurations, but see the discussion in
2083 \fBgit-http-backend\fR(1)\&. For git\-over\-ssh, the ssh server may need to be configured to allow clients to pass this variable (e\&.g\&., by using
2084 \fBAcceptEnv GIT_PROTOCOL\fR
2085 with OpenSSH)\&.
2087 This configuration is optional\&. If the variable is not propagated, then clients will fall back to the original "v0" protocol (but may miss out on some performance improvements or features)\&. This variable currently only affects clones and fetches; it is not yet used for pushes (but may be in the future)\&.
2090 \fBGIT_OPTIONAL_LOCKS\fR
2091 .RS 4
2092 If this Boolean environment variable is set to false, Git will complete any requested operation without performing any optional sub\-operations that require taking a lock\&. For example, this will prevent
2093 \fBgit status\fR
2094 from refreshing the index as a side effect\&. This is useful for processes running in the background which do not want to cause lock contention with other operations on the repository\&. Defaults to
2095 \fB1\fR\&.
2098 \fBGIT_REDIRECT_STDIN\fR, \fBGIT_REDIRECT_STDOUT\fR, \fBGIT_REDIRECT_STDERR\fR
2099 .RS 4
2100 Windows\-only: allow redirecting the standard input/output/error handles to paths specified by the environment variables\&. This is particularly useful in multi\-threaded applications where the canonical way to pass standard handles via
2101 \fBCreateProcess()\fR
2102 is not an option because it would require the handles to be marked inheritable (and consequently
2103 \fBevery\fR
2104 spawned process would inherit them, possibly blocking regular Git operations)\&. The primary intended use case is to use named pipes for communication (e\&.g\&.
2105 \fB\e\e\&.\epipe\emy\-git\-stdin\-123\fR)\&.
2107 Two special values are supported:
2108 \fBoff\fR
2109 will simply close the corresponding standard handle, and if
2110 \fBGIT_REDIRECT_STDERR\fR
2112 \fB2>&1\fR, standard error will be redirected to the same handle as standard output\&.
2115 \fBGIT_PRINT_SHA1_ELLIPSIS\fR (deprecated)
2116 .RS 4
2117 If set to
2118 \fByes\fR, print an ellipsis following an (abbreviated) SHA\-1 value\&. This affects indications of detached HEADs (\fBgit-checkout\fR(1)) and the raw diff output (\fBgit-diff\fR(1))\&. Printing an ellipsis in the cases mentioned is no longer considered adequate and support for it is likely to be removed in the foreseeable future (along with the variable)\&.
2120 .SH "DISCUSSION"
2122 More detail on the following is available from the \m[blue]\fBGit concepts chapter of the user\-manual\fR\m[]\&\s-2\u[3]\d\s+2 and \fBgitcore-tutorial\fR(7)\&.
2124 A Git project normally consists of a working directory with a "\&.git" subdirectory at the top level\&. The \&.git directory contains, among other things, a compressed object database representing the complete history of the project, an "index" file which links that history to the current contents of the working tree, and named pointers into that history such as tags and branch heads\&.
2126 The object database contains objects of three main types: blobs, which hold file data; trees, which point to blobs and other trees to build up directory hierarchies; and commits, which each reference a single tree and some number of parent commits\&.
2128 The commit, equivalent to what other systems call a "changeset" or "version", represents a step in the project\(cqs history, and each parent represents an immediately preceding step\&. Commits with more than one parent represent merges of independent lines of development\&.
2130 All objects are named by the SHA\-1 hash of their contents, normally written as a string of 40 hex digits\&. Such names are globally unique\&. The entire history leading up to a commit can be vouched for by signing just that commit\&. A fourth object type, the tag, is provided for this purpose\&.
2132 When first created, objects are stored in individual files, but for efficiency may later be compressed together into "pack files"\&.
2134 Named pointers called refs mark interesting points in history\&. A ref may contain the SHA\-1 name of an object or the name of another ref (the latter is called a "symbolic ref")\&. Refs with names beginning \fBrefs/head/\fR contain the SHA\-1 name of the most recent commit (or "head") of a branch under development\&. SHA\-1 names of tags of interest are stored under \fBrefs/tags/\fR\&. A symbolic ref named \fBHEAD\fR contains the name of the currently checked\-out branch\&.
2136 The index file is initialized with a list of all paths and, for each path, a blob object and a set of attributes\&. The blob object represents the contents of the file as of the head of the current branch\&. The attributes (last modified time, size, etc\&.) are taken from the corresponding file in the working tree\&. Subsequent changes to the working tree can be found by comparing these attributes\&. The index may be updated with new content, and new commits may be created from the content stored in the index\&.
2138 The index is also capable of storing multiple entries (called "stages") for a given pathname\&. These stages are used to hold the various unmerged version of a file when a merge is in progress\&.
2139 .SH "SECURITY"
2141 Some configuration options and hook files may cause Git to run arbitrary shell commands\&. Because configuration and hooks are not copied using \fBgit clone\fR, it is generally safe to clone remote repositories with untrusted content, inspect them with \fBgit log\fR, and so on\&.
2143 However, it is not safe to run Git commands in a \fB\&.git\fR directory (or the working tree that surrounds it) when that \fB\&.git\fR directory itself comes from an untrusted source\&. The commands in its config and hooks are executed in the usual way\&.
2145 By default, Git will refuse to run when the repository is owned by someone other than the user running the command\&. See the entry for \fBsafe\&.directory\fR in \fBgit-config\fR(1)\&. While this can help protect you in a multi\-user environment, note that you can also acquire untrusted repositories that are owned by you (for example, if you extract a zip file or tarball from an untrusted source)\&. In such cases, you\(cqd need to "sanitize" the untrusted repository first\&.
2147 If you have an untrusted \fB\&.git\fR directory, you should first clone it with \fBgit clone \-\-no\-local\fR to obtain a clean copy\&. Git does restrict the set of options and hooks that will be run by \fBupload\-pack\fR, which handles the server side of a clone or fetch, but beware that the surface area for attack against \fBupload\-pack\fR is large, so this does carry some risk\&. The safest thing is to serve the repository as an unprivileged user (either via \fBgit-daemon\fR(1), ssh, or using other tools to change user ids)\&. See the discussion in the \fBSECURITY\fR section of \fBgit-upload-pack\fR(1)\&.
2148 .SH "FURTHER DOCUMENTATION"
2150 See the references in the "description" section to get started using Git\&. The following is probably more detail than necessary for a first\-time user\&.
2152 The \m[blue]\fBGit concepts chapter of the user\-manual\fR\m[]\&\s-2\u[3]\d\s+2 and \fBgitcore-tutorial\fR(7) both provide introductions to the underlying Git architecture\&.
2154 See \fBgitworkflows\fR(7) for an overview of recommended workflows\&.
2156 See also the \m[blue]\fBhowto\fR\m[]\&\s-2\u[4]\d\s+2 documents for some useful examples\&.
2158 The internals are documented in the \m[blue]\fBGit API documentation\fR\m[]\&\s-2\u[5]\d\s+2\&.
2160 Users migrating from CVS may also want to read \fBgitcvs-migration\fR(7)\&.
2161 .SH "AUTHORS"
2163 Git was started by Linus Torvalds, and is currently maintained by Junio C Hamano\&. Numerous contributions have come from the Git mailing list <\m[blue]\fBgit@vger\&.kernel\&.org\fR\m[]\&\s-2\u[6]\d\s+2>\&. \m[blue]\fBhttps://openhub\&.net/p/git/contributors/summary\fR\m[] gives you a more complete list of contributors\&.
2165 If you have a clone of git\&.git itself, the output of \fBgit-shortlog\fR(1) and \fBgit-blame\fR(1) can show you the authors for specific parts of the project\&.
2166 .SH "REPORTING BUGS"
2168 Report bugs to the Git mailing list <\m[blue]\fBgit@vger\&.kernel\&.org\fR\m[]\&\s-2\u[6]\d\s+2> where the development and maintenance is primarily done\&. You do not have to be subscribed to the list to send a message there\&. See the list archive at \m[blue]\fBhttps://lore\&.kernel\&.org/git\fR\m[] for previous bug reports and other discussions\&.
2170 Issues which are security relevant should be disclosed privately to the Git Security mailing list <\m[blue]\fBgit\-security@googlegroups\&.com\fR\m[]\&\s-2\u[7]\d\s+2>\&.
2171 .SH "SEE ALSO"
2173 \fBgittutorial\fR(7), \fBgittutorial-2\fR(7), \fBgiteveryday\fR(7), \fBgitcvs-migration\fR(7), \fBgitglossary\fR(7), \fBgitcore-tutorial\fR(7), \fBgitcli\fR(7), \m[blue]\fBThe Git User\(cqs Manual\fR\m[]\&\s-2\u[1]\d\s+2, \fBgitworkflows\fR(7)
2174 .SH "GIT"
2176 Part of the \fBgit\fR(1) suite
2177 .SH "NOTES"
2178 .IP " 1." 4
2179 Git User\(cqs Manual
2180 .RS 4
2181 \%git-htmldocs/user-manual.html
2183 .IP " 2." 4
2184 Trace2 documentation
2185 .RS 4
2186 \%git-htmldocs/technical/api-trace2.html
2188 .IP " 3." 4
2189 Git concepts chapter of the user-manual
2190 .RS 4
2191 \%git-htmldocs/user-manual.html#git-concepts
2193 .IP " 4." 4
2194 howto
2195 .RS 4
2196 \%git-htmldocs/howto-index.html
2198 .IP " 5." 4
2199 Git API documentation
2200 .RS 4
2201 \%git-htmldocs/technical/api-index.html
2203 .IP " 6." 4
2204 git@vger.kernel.org
2205 .RS 4
2206 \%mailto:git@vger.kernel.org
2208 .IP " 7." 4
2209 git-security@googlegroups.com
2210 .RS 4
2211 \%mailto:git-security@googlegroups.com