none
authorDerrick Brashear <shadow@dementia.org>
Tue, 7 Jul 2009 21:15:29 +0000 (21:15 +0000)
committerDerrick Brashear <shadow@dementia.org>
Tue, 7 Jul 2009 21:15:29 +0000 (21:15 +0000)
AFSLore/GitDevelopers.mdwn

index f63e218..8486ab1 100644 (file)
@@ -64,7 +64,7 @@ Again, whilst a direct checkout of a remote tag is fine for code browsing, it sh
 
 ## <a name="Viewing deltas"></a> Viewing deltas
 
-In git, a delta should be simply a single changeset. Deltas are represented by means of a special form of git tag, allowing you to locally view the change, and commit message, that corresponds to each one. In order to keep down the transfer size, deltas are not included in the repository you get when you do a git clone - there are over 10,000 delta references, and having them in your locally can cause performance issues. If you really wish to be able to locally browse deltas, then run the following
+In git, a delta should be simply a single changeset. Deltas are represented by means of a special form of git tag, allowing you to locally view the change, and commit message, that corresponds to each one. In order to keep down the transfer size, deltas are not included in the repository you get when you do a git clone - there are over 10,000 delta references, and having them in your local repository can cause performance issues. If you really wish to be able to locally browse deltas, then run the following
 
     git config remote.origin.fetch '+refs/deltas/*:refs/remotes/deltas/*' git fetch origin