<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/Documentation/gitcore-tutorial.txt, branch v1.7.2</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v1.7.2</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v1.7.2'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2010-07-05T20:39:13Z</updated>
<entry>
<title>Documentation: link to gitrevisions rather than git-rev-parse</title>
<updated>2010-07-05T20:39:13Z</updated>
<author>
<name>Michael J Gruber</name>
<email>git@drmicha.warpmail.net</email>
</author>
<published>2010-07-05T16:11:41Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f028cdae6663166ebfd777e73aacce1f5e7159d6'/>
<id>urn:sha1:f028cdae6663166ebfd777e73aacce1f5e7159d6</id>
<content type='text'>
Currently, whenever we need documentation for revisions and ranges, we
link to the git-rev-parse man page, i.e. a plumbing man page, which has
this along with the documentation of all rev-parse modes.

Link to the new gitrevisions man page instead in all cases except
- when the actual git-rev-parse command is referred to or
- in very technical context (git-send-pack).

Signed-off-by: Michael J Gruber &lt;git@drmicha.warpmail.net&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge remote branch 'remotes/trast-doc/for-next'</title>
<updated>2010-01-21T04:28:49Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2010-01-21T04:28:49Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=add0951ab0bee43b5f634d1be68a7a80f627c18f'/>
<id>urn:sha1:add0951ab0bee43b5f634d1be68a7a80f627c18f</id>
<content type='text'>
* remotes/trast-doc/for-next:
  Documentation: spell 'git cmd' without dash throughout
  Documentation: format full commands in typewriter font
  Documentation: warn prominently against merging with dirty trees
  Documentation/git-merge: reword references to "remote" and "pull"

Conflicts:
	Documentation/config.txt
	Documentation/git-config.txt
	Documentation/git-merge.txt
</content>
</entry>
<entry>
<title>Documentation: Update git core tutorial clarifying reference to scripts</title>
<updated>2010-01-17T00:46:40Z</updated>
<author>
<name>Ramkumar Ramachandra</name>
<email>artagnon@gmail.com</email>
</author>
<published>2010-01-16T18:05:38Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=52eb5173ac0a84c4cd4545176871a7dd8a4da91f'/>
<id>urn:sha1:52eb5173ac0a84c4cd4545176871a7dd8a4da91f</id>
<content type='text'>
Back when the git core tutorial was written, porcelain commands were
shell scripts. This patch adds a paragraph explaining this.

Signed-off-by: Ramkumar Ramachandra &lt;artagnon@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Documentation: spell 'git cmd' without dash throughout</title>
<updated>2010-01-10T12:01:28Z</updated>
<author>
<name>Thomas Rast</name>
<email>trast@student.ethz.ch</email>
</author>
<published>2010-01-09T23:33:00Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=0b444cdb19bcfcc7f59b7b00783cbfbbc5ddcf63'/>
<id>urn:sha1:0b444cdb19bcfcc7f59b7b00783cbfbbc5ddcf63</id>
<content type='text'>
The documentation was quite inconsistent when spelling 'git cmd' if it
only refers to the program, not to some specific invocation syntax:
both 'git-cmd' and 'git cmd' spellings exist.

The current trend goes towards dashless forms, and there is precedent
in 647ac70 (git-svn.txt: stop using dash-form of commands.,
2009-07-07) to actively eliminate the dashed variants.

Replace 'git-cmd' with 'git cmd' throughout, except where git-shell,
git-cvsserver, git-upload-pack, git-receive-pack, and
git-upload-archive are concerned, because those really live in the
$PATH.
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2009-12-01T20:47:04Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-12-01T20:47:04Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=32ef08f4e5ab6ce8f3b47201f1df46d1a33deb80'/>
<id>urn:sha1:32ef08f4e5ab6ce8f3b47201f1df46d1a33deb80</id>
<content type='text'>
* maint:
  help: Do not unnecessarily look for a repository
  Documentation: Fix a few i.e./e.g. mix-ups
  Documentation: Document --branch option in git clone synopsis
</content>
</entry>
<entry>
<title>Documentation: Fix a few i.e./e.g. mix-ups</title>
<updated>2009-12-01T20:09:46Z</updated>
<author>
<name>Michael J Gruber</name>
<email>git@drmicha.warpmail.net</email>
</author>
<published>2009-12-01T09:19:05Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=3c652d16713c27d0abb2003d83a237f7d47ef569'/>
<id>urn:sha1:3c652d16713c27d0abb2003d83a237f7d47ef569</id>
<content type='text'>
A git bundle can be transported by several means (such as e-mail), not
only by snekaernet, so use e.g. instead of i.e.

The mix-up in git-bundle.txt is obvious.

Signed-off-by: Michael J Gruber &lt;git@drmicha.warpmail.net&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>t1200: fix a timing dependent error</title>
<updated>2009-11-25T08:00:32Z</updated>
<author>
<name>Nanako Shiraishi</name>
<email>nanako3@lavabit.com</email>
</author>
<published>2009-11-24T23:08:08Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=5d166ccb89faadb7ce5f36d2e33abbd7bb103117'/>
<id>urn:sha1:5d166ccb89faadb7ce5f36d2e33abbd7bb103117</id>
<content type='text'>
The fourth test of show-branch in t1200 test was failing but only
sometimes. It only failed when two commits created in an earlier
test had different timestamps. When they were created within the
same second, the actual output matched the expected output.

Fix this by using test_tick to force reliable timestamps and update
the expected output so it does not to depend on the commits made in
the same sacond.

Signed-off-by: Nanako Shiraishi &lt;nanako3@lavabit.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'sb/tutorial-test'</title>
<updated>2009-11-18T06:03:02Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-11-18T06:03:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=aa17bacc14362dbe076c5ea20531a21dea8677a7'/>
<id>urn:sha1:aa17bacc14362dbe076c5ea20531a21dea8677a7</id>
<content type='text'>
* sb/tutorial-test:
  t1200: prepare for merging with Fast-forward bikeshedding
  t1200: further modernize test script style
  t1200: Make documentation and test agree
  t1200: cleanup and modernize test style
</content>
</entry>
<entry>
<title>t1200: Make documentation and test agree</title>
<updated>2009-11-07T06:44:34Z</updated>
<author>
<name>Stephen Boyd</name>
<email>bebarino@gmail.com</email>
</author>
<published>2009-11-05T06:33:53Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=7c5858a643724a9a4a67f1290c03d57f483ed261'/>
<id>urn:sha1:7c5858a643724a9a4a67f1290c03d57f483ed261</id>
<content type='text'>
There were some differences between t1200 and the gitcore-tutorial. Add
missing tests for manually merging two branches, and use the same
commands in both files.

Signed-off-by: Stephen Boyd &lt;bebarino@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Use 'fast-forward' all over the place</title>
<updated>2009-10-25T06:50:28Z</updated>
<author>
<name>Felipe Contreras</name>
<email>felipe.contreras@gmail.com</email>
</author>
<published>2009-10-24T08:31:32Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=a75d7b54097ef0d0945cbe673a9940d6c561f95c'/>
<id>urn:sha1:a75d7b54097ef0d0945cbe673a9940d6c561f95c</id>
<content type='text'>
It's a compound word.

Signed-off-by: Felipe Contreras &lt;felipe.contreras@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
