<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/sven/git.git/Documentation/git-commit.txt, branch v1.5.3.1</title>
<subtitle>Git
</subtitle>
<id>https://git.stealer.net/cgit.cgi/user/sven/git.git/atom?h=v1.5.3.1</id>
<link rel='self' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/atom?h=v1.5.3.1'/>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/'/>
<updated>2007-08-07T06:25:10Z</updated>
<entry>
<title>Documentation/git-commit.txt: correct bad list formatting.</title>
<updated>2007-08-07T06:25:10Z</updated>
<author>
<name>David Kastrup</name>
<email>dak@gnu.org</email>
</author>
<published>2007-08-06T12:56:32Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=f9935bf9312dd6681e5051fbdce03204b6458c73'/>
<id>urn:sha1:f9935bf9312dd6681e5051fbdce03204b6458c73</id>
<content type='text'>
Signed-off-by: David Kastrup &lt;dak@gnu.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>documentation: use the word "index" in the git-commit man page</title>
<updated>2007-08-06T05:08:54Z</updated>
<author>
<name>J. Bruce Fields</name>
<email>bfields@pig.linuxdev.us.dell.com</email>
</author>
<published>2007-08-06T04:34:02Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=a76c2acb28146f5630592f2ba738c0ebf0f3c1c4'/>
<id>urn:sha1:a76c2acb28146f5630592f2ba738c0ebf0f3c1c4</id>
<content type='text'>
As with git-add, I think previous updates to the git-commit man page did
indeed help make it more user-friendly.  But I think the banishment of
the word "index" from the description goes too far; reinstate its use,
to simplify some of the language slightly and smooth the transition to
other documentation.

Signed-off-by: J. Bruce Fields &lt;bfields@citi.umich.edu&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Document commit.template configuration variable.</title>
<updated>2007-07-26T23:57:24Z</updated>
<author>
<name>Brian Gernhardt</name>
<email>benji@silverinsanity.com</email>
</author>
<published>2007-07-26T20:34:59Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=383e45cec40a0b881e59e44e011c410218ef476a'/>
<id>urn:sha1:383e45cec40a0b881e59e44e011c410218ef476a</id>
<content type='text'>
Add it to the list in config.txt and explicitly say that the
--template option to git-commit overrides the configuration variable.

Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Teach git-commit about commit message templates.</title>
<updated>2007-07-25T03:46:54Z</updated>
<author>
<name>Steven Grimm</name>
<email>koreth@midwinter.com</email>
</author>
<published>2007-07-23T04:17:42Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=d1cc130a5eb50d5bfe1e8b76cab3d8970fd70ad1'/>
<id>urn:sha1:d1cc130a5eb50d5bfe1e8b76cab3d8970fd70ad1</id>
<content type='text'>
These are useful in organizations that enforce particular formats
for commit messages, e.g., to specify bug IDs or test plans.
Use of the template is not enforced; it is simply used as the
initial content when the editor is invoked.

Signed-off-by: Steven Grimm &lt;koreth@midwinter.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Add GIT_EDITOR environment and core.editor configuration variables</title>
<updated>2007-07-20T07:46:34Z</updated>
<author>
<name>Adam Roben</name>
<email>aroben@apple.com</email>
</author>
<published>2007-07-20T05:09:35Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=ef0c2abf3e5061f891b7f07953ef3b0695f52c89'/>
<id>urn:sha1:ef0c2abf3e5061f891b7f07953ef3b0695f52c89</id>
<content type='text'>
These variables let you specify an editor that will be launched in
preference to the EDITOR and VISUAL environment variables. The order
of preference is GIT_EDITOR, core.editor, EDITOR, VISUAL.

[jc: added a test and config variable documentation]

Signed-off-by: Adam Roben &lt;aroben@apple.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Document git commit --untracked-files and --verbose</title>
<updated>2007-07-13T03:22:07Z</updated>
<author>
<name>Jakub Narebski</name>
<email>jnareb@gmail.com</email>
</author>
<published>2007-07-12T23:54:08Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=af83bed6903256c581f081ba7bba372f19804b30'/>
<id>urn:sha1:af83bed6903256c581f081ba7bba372f19804b30</id>
<content type='text'>
Documentation based on description of commit 443f8338 which added
'-u'|'--untracked-files' option to git-status, and on git-runstatus(1)
man page.

Note that those options apply also to git-status.

Signed-off-by: Jakub Narebski &lt;jnareb@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Document long options '--message=&lt;msg&gt;' and '--no-commit'</title>
<updated>2007-07-13T03:22:06Z</updated>
<author>
<name>Jakub Narebski</name>
<email>jnareb@gmail.com</email>
</author>
<published>2007-07-12T23:54:07Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=fd0368f985c2d6179d76cdf3569b0798d42f9196'/>
<id>urn:sha1:fd0368f985c2d6179d76cdf3569b0798d42f9196</id>
<content type='text'>
Document that '--message=&lt;msg&gt;' is long version of '-m &lt;msg&gt;' in
git-commit, and that '--no-checkout' is long version of '-n' in
git-clone.

Signed-off-by: Jakub Narebski &lt;jnareb@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git-commit: add a --interactive option</title>
<updated>2007-03-09T08:05:23Z</updated>
<author>
<name>Paolo Bonzini</name>
<email>paolo.bonzini@lu.unisi.ch</email>
</author>
<published>2007-03-05T07:57:53Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=6cbf07efc5702351897dee4742525c9b9f7828ac'/>
<id>urn:sha1:6cbf07efc5702351897dee4742525c9b9f7828ac</id>
<content type='text'>
The --interactive option behaves like "git commit", except that
"git add --interactive" is executed before committing.  It is
incompatible with -a and -i.

Signed-off-by: Paolo Bonzini  &lt;bonzini@gnu.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Documentation: --amend cannot be combined with -c/-C/-F.</title>
<updated>2007-01-24T23:32:52Z</updated>
<author>
<name>Peter Eriksen</name>
<email>s022018@student.dtu.dk</email>
</author>
<published>2007-01-24T19:54:46Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=497171e765b7b4f903d21379bee050380e539cf3'/>
<id>urn:sha1:497171e765b7b4f903d21379bee050380e539cf3</id>
<content type='text'>
We used to get the following confusing error message:

    $ git commit --amend -a -m foo
    Option -m cannot be combined with -c/-C/-F

This is because --amend cannot be combined with -c/-C/-F, which makes
sense, because they try to handle the same log message in different ways.
So update the documentation to reflect this.

Signed-off-by: Peter Eriksen &lt;s022018@student.dtu.dk&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Documentation: sync git.txt command list and manual page title</title>
<updated>2007-01-18T23:53:37Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2007-01-18T23:53:37Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/git.git/commit/?id=c3f0baacadbd7b5710052213a2ec3cdd5b77bb6e'/>
<id>urn:sha1:c3f0baacadbd7b5710052213a2ec3cdd5b77bb6e</id>
<content type='text'>
Also reorders a handful entries to make each list sorted
alphabetically.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
</feed>
