summaryrefslogtreecommitdiff
path: root/docs/repository.html
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-02-28 08:03:04 -0700
committerBrian <brian.paul@tungstengraphics.com>2008-02-28 08:03:34 -0700
commitddbfa8c4625326cd7b8326f74da7f3636888960e (patch)
tree2bebaa2df5f3ae015190cc6fd92e0389b7c17ea7 /docs/repository.html
parentcef71f58c9ad71eca814189e15ceebeb25b711b3 (diff)
added git on Windows section
Diffstat (limited to 'docs/repository.html')
-rw-r--r--docs/repository.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/repository.html b/docs/repository.html
index 39f5da4bbe..ed385288ea 100644
--- a/docs/repository.html
+++ b/docs/repository.html
@@ -85,6 +85,27 @@ Once your account is established:
</ol>
+<H2>Windows Users</H2>
+
+<p>
+If you're <a href="http://git.or.cz/gitwiki/WindowsInstall" target="_parent">
+using git on Windows</a> you'll want to enable automatic CR/LF conversion in
+your local copy of the repository:
+</p>
+<pre>
+ git config --global core.autocrlf true
+</pre>
+
+<p>
+This will cause git to convert all text files to CR+LF on checkout,
+and to LF on commit.
+</p>
+<p>
+Unix users don't need to set this option.
+</p>
+<br>
+
+
<a name="developer">
<H2>Development Branches</H2>