• Home
  • Raw
  • Download

Lines Matching full:git

20 Mesa uses <a href="http://git-scm.com">git</a>
25 The master git repository is hosted on
39 >browse the main Mesa git repository</a> and the
41 >Mesa demos and tests git repository</a>.
45 <h2 id="anonymous">Anonymous git Access</h2>
52 <li>Install the git software on your computer if needed.<br><br>
55 git clone git://anongit.freedesktop.org/git/mesa/mesa
59 git pull origin
63 git clone git://anongit.freedesktop.org/git/mesa/demos
68 <h2 id="developer">Developer git Access</h2>
71 If you wish to become a Mesa developer with git-write privilege, please
82 <li>Use <code>git send-mail</code> to post your patches to mesa-dev.
90 <li>Occasionally, but rarely, someone may be given a git account sooner, but
107 git clone git+ssh://username@git.freedesktop.org/git/mesa/mesa
112 git pull origin
116 git clone git+ssh://username@git.freedesktop.org/git/mesa/demos
124 If you're <a href="http://git.wiki.kernel.org/index.php/WindowsInstall">
125 using git on Windows</a> you'll want to enable automatic CR/LF conversion in
129 git config --global core.autocrlf true
133 This will cause git to convert all text files to CR+LF on checkout,
152 The command <code>git-branch</code> will list all available branches.
160 <h2>Developer Git Tips</h2>
165 If you try to do a pull by just saying<code> git pull </code>
166 and git complains that you have not specified a
169 git config branch.master.remote origin
170 git config branch.master.merge master
173 Otherwise, you have to say<code> git pull origin master </code>
178 If you are an experienced git user working on substantial modifications,
189 git pull
197 git add &lt;files to commit&gt;
198 git commit
206 their changes, git will make a fast-forward
213 git pull --rebase
214 git push
220 (CVS doesn't work like git in this respect, but this is easiest way
234 git config branch.master.rebase true
235 git config --global branch.autosetuprebase=always
238 See <a href="http://www.eecs.harvard.edu/~cduan/technical/git/">Understanding Git Conceptually</a> …