Home | History | Annotate | Download | only in docs

Lines Matching full:git

13 Mesa uses <a href="http://git-scm.com"target="_parent">git</a>
18 The master git repository is hosted on
32 target="_parent">browse the main Mesa git repository</a> and the
34 target="_parent">Mesa demos and tests git repository</a>.
38 <h2 id="anonymous">Anonymous git Access</h2>
45 <li>Install the git software on your computer if needed.<br><br>
48 git clone git://anongit.freedesktop.org/git/mesa/mesa
52 git pull origin
56 git clone git://anongit.freedesktop.org/git/mesa/demos
61 <h2 id="developer">Developer git Access</h2>
78 <li>Install the git software on your computer if needed.<br><br>
81 git clone git+ssh://username@git.freedesktop.org/git/mesa/mesa
86 git pull origin
90 git clone git+ssh://username@git.freedesktop.org/git/mesa/demos
98 If you're <a href="http://git.wiki.kernel.org/index.php/WindowsInstall" target="_parent">
99 using git on Windows</a> you'll want to enable automatic CR/LF conversion in
103 git config --global core.autocrlf true
107 This will cause git to convert all text files to CR+LF on checkout,
126 The command <code>git-branch</code> will list all available branches.
134 <h2>Developer Git Tips</h2>
139 If you try to do a pull by just saying<code> git pull </code>
140 and git complains that you have not specified a
143 git config branch.master.remote origin
144 git config branch.master.merge master
147 Otherwise, you have to say<code> git pull origin master </code>
152 If you are an experienced git user working on substancial modifications,
163 git pull
171 git add &lt;files to commit&gt;
172 git commit
180 their changes, git will make a fast-forward
187 git pull --rebase
188 git push
194 (CVS doesn't work like git in this respect, but this is easiest way
208 git config branch.master.rebase true
209 git config --global branch.autosetuprebase=always
212 See <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.