blob: 3e05871fd6113408ed6ca55f178f42bd4369b91e [file] [log] [blame]
Andreas Bollecd5c7c2012-06-12 09:05:03 +02001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html lang="en">
3<head>
4 <meta http-equiv="content-type" content="text/html; charset=utf-8">
5 <title>Code Repository</title>
6 <link rel="stylesheet" type="text/css" href="mesa.css">
7</head>
8<body>
Brian464e3632006-12-05 16:14:14 -07009
10<h1>Code Repository</h1>
11
12<p>
Brian Pauld23fefe2010-02-11 09:02:53 -070013Mesa uses <a href="http://git.or.cz/"target="_parent">git</a>
Brian464e3632006-12-05 16:14:14 -070014as its source code management system.
Brian464e3632006-12-05 16:14:14 -070015</p>
16
Andreas Bolldf2be222012-06-12 09:05:22 +020017<p>
Brian464e3632006-12-05 16:14:14 -070018The master git repository is hosted on
19<a href="http://www.freedesktop.org" target="_parent">freedesktop.org</a>.
20</p>
21
22<p>
23You may access the repository either as an
24<a href="#anonymous">anonymous user</a> (read-only) or as a
25<a href="#developer">developer</a>
26(read/write).
27</p>
28
29<p>
30You may also
Brian Paulca1b2da2012-02-16 13:35:02 -070031<a href="http://cgit.freedesktop.org/mesa/mesa/"
Brian Paul7ba1a872010-06-04 17:47:06 -060032target="_parent">browse the main Mesa git repository</a> and the
33<a href="http://cgit.freedesktop.org/mesa/demos"
34target="_parent">Mesa demos and tests git repository</a>.
Brian464e3632006-12-05 16:14:14 -070035</p>
36
37
Andreas Bollcc418882012-06-12 09:05:33 +020038<h2 id="anonymous">Anonymous git Access</h2>
Brian464e3632006-12-05 16:14:14 -070039
40<p>
41To get the Mesa sources anonymously (read-only):
42</p>
43
44<ol>
45<li>Install the git software on your computer if needed.<br><br>
46<li>Get an initial, local copy of the repository with:
47 <pre>
48 git clone git://anongit.freedesktop.org/git/mesa/mesa
49 </pre>
50<li>Later, you can update your tree from the master repository with:
51 <pre>
52 git pull origin
53 </pre>
Brian Paul7ba1a872010-06-04 17:47:06 -060054<li>If you also want the Mesa demos/tests repository:
55 <pre>
56 git clone git://anongit.freedesktop.org/git/mesa/demos
57 </pre>
Brian464e3632006-12-05 16:14:14 -070058</ol>
59
60
Andreas Bollcc418882012-06-12 09:05:33 +020061<h2 id="developer">Developer git Access</h2>
Brian464e3632006-12-05 16:14:14 -070062
63<p>
64Mesa developers need to first have an account on
65<a href="http://www.freedesktop.org" target="_parent">freedesktop.org</a>.
66To get an account, please ask Brian or the other Mesa developers for
67permission.
68Then, if there are no objections, follow this
69<a href="http://www.freedesktop.org/wiki/AccountRequests" target="_parent">
70procedure</a>.
71</p>
72
73<p>
74Once your account is established:
75</p>
76
77<ol>
78<li>Install the git software on your computer if needed.<br><br>
79<li>Get an initial, local copy of the repository with:
80 <pre>
81 git clone git+ssh://username@git.freedesktop.org/git/mesa/mesa
82 </pre>
83 Replace <em>username</em> with your actual login name.<br><br>
84<li>Later, you can update your tree from the master repository with:
85 <pre>
86 git pull origin
87 </pre>
Brian Paul7ba1a872010-06-04 17:47:06 -060088<li>If you also want the Mesa demos/tests repository:
89 <pre>
90 git clone git+ssh://username@git.freedesktop.org/git/mesa/demos
91 </pre>
Brian464e3632006-12-05 16:14:14 -070092</ol>
93
94
Andreas Boll210a27d2012-06-12 09:05:36 +020095<h2>Windows Users</h2>
Brianddbfa8c2008-02-28 08:03:04 -070096
97<p>
98If you're <a href="http://git.or.cz/gitwiki/WindowsInstall" target="_parent">
99using git on Windows</a> you'll want to enable automatic CR/LF conversion in
100your local copy of the repository:
101</p>
102<pre>
103 git config --global core.autocrlf true
104</pre>
105
106<p>
107This will cause git to convert all text files to CR+LF on checkout,
108and to LF on commit.
109</p>
110<p>
111Unix users don't need to set this option.
112</p>
113<br>
114
115
Andreas Bollcc418882012-06-12 09:05:33 +0200116<h2>Development Branches</h2>
Brian464e3632006-12-05 16:14:14 -0700117
118<p>
119At any given time, there may be several active branches in Mesa's
120repository.
121Generally, the trunk contains the latest development (unstable)
122code while a branch has the latest stable code.
123</p>
124
125<p>
Brian18e9ca52007-02-20 09:24:06 -0700126The command <code>git-branch</code> will list all available branches.
127</p>
128
129<p>
130Questions about branch status/activity should be posted to the
131mesa3d-dev mailing list.
Brian464e3632006-12-05 16:14:14 -0700132</p>
133
Andreas Boll210a27d2012-06-12 09:05:36 +0200134<h2>Developer Git Tips</h2>
Karl Schultz207ad942010-02-11 10:54:18 -0700135
136<ol>
137<li>Setting up to edit the master branch
138<p>
139If you try to do a pull by just saying<code> git pull </code>
140and git complains that you have not specified a
141branch, try:
142<pre>
143 git config branch.master.remote origin
144 git config branch.master.merge master
145</pre>
Andreas Bolldf2be222012-06-12 09:05:22 +0200146<p>
Karl Schultz207ad942010-02-11 10:54:18 -0700147Otherwise, you have to say<code> git pull origin master </code>
148each time you do a pull.
149</p>
150<li>Small changes to master
151<p>
152If you are an experienced git user working on substancial modifications,
153you are probably
154working on a separate branch and would rebase your branch prior to
155merging with master.
156But for small changes to the master branch itself,
157you also need to use the rebase feature in order to avoid an
158unnecessary and distracting branch in master.
159</p>
160<p>
161If it has been awhile since you've done the initial clone, try
162<pre>
163 git pull
164</pre>
Andreas Bolldf2be222012-06-12 09:05:22 +0200165<p>
Karl Schultz207ad942010-02-11 10:54:18 -0700166to get the latest files before you start working.
167</p>
168<p>
169Make your changes and use
170<pre>
171 git add &lt;files to commit&gt;
172 git commit
173</pre>
Andreas Bolldf2be222012-06-12 09:05:22 +0200174<p>
Karl Schultz207ad942010-02-11 10:54:18 -0700175to get your changes ready to push back into the fd.o repository.
176</p>
177<p>
178It is possible (and likely) that someone has changed master since
179you did your last pull. Even if your changes do not conflict with
180their changes, git will make a fast-forward
181merge branch, branching from the point in time
182where you did your last pull and merging it to a point after the other changes.
183</p>
184<p>
185To avoid this,
186<pre>
187 git pull --rebase
188 git push
189</pre>
Andreas Bolldf2be222012-06-12 09:05:22 +0200190<p>
Karl Schultz207ad942010-02-11 10:54:18 -0700191If you are familiar with CVS or similar system, this is similar to doing a
192<code> cvs update </code> in order to update your source tree to
193the current repository state, instead of the time you did the last update.
194(CVS doesn't work like git in this respect, but this is easiest way
195to explain it.)
Andreas Bolldf2be222012-06-12 09:05:22 +0200196<br>
Karl Schultz207ad942010-02-11 10:54:18 -0700197In any case, your repository now looks like you made your changes after
198all the other changes.
199</p>
200<p>
201If the rebase resulted in conflicts or changes that could affect
202the proper operation of your changes, you'll need to investigate
203those before doing the push.
204</p>
205<p>
206If you want the rebase action to be the default action, then
207<pre>
208 git config branch.master.rebase true
209 git config --global branch.autosetuprebase=always
210</pre>
211<p>
212See <a href="http://www.eecs.harvard.edu/~cduan/technical/git/" target="_parent">Understanding Git Conceptually</a> for a fairly clear explanation about all of this.
213</p>
214</ol>
Brian464e3632006-12-05 16:14:14 -0700215
216</body>
217</html>