Lines Matching full:git
4 Mesa uses `Git <https://git-scm.com>`__ as its source code management
7 The upstream Git repository is hosted on
14 You may also `browse the main Mesa Git
16 demos and tests Git
21 Anonymous Git Access
26 #. Install the Git software on your computer if needed.
31 git clone https://gitlab.freedesktop.org/mesa/mesa.git
37 git pull origin
43 git clone https://gitlab.freedesktop.org/mesa/demos.git
47 Developer Git Access
82 … git remote set-url --push origin https://USER:TOKEN@gitlab.freedesktop.org/your~user~name/mesa.git
87 If you're `using Git on
88 Windows <https://git-scm.com/book/en/v2/Getting-Started-Installing-Git#_installing_on_windows>`__
94 git config --global core.autocrlf true
96 This will cause Git to convert all text files to CR+LF on checkout, and
108 The command ``git branch`` will list all available branches.
113 Developer Git Tips
118 If you try to do a pull by just saying\ ``git pull`` and Git
123 git config branch.main.remote origin
124 git config branch.main.merge main
126 Otherwise, you have to say\ ``git pull origin main`` each time you
131 If you are an experienced Git user working on substantial
142 git pull
150 git add <files to commit>
151 git commit
158 changes, Git will make a fast-forward merge branch, branching from
166 git pull --rebase
167 git push
172 update. (CVS doesn't work like Git in this respect, but this is
186 git config branch.main.rebase true
187 git config --global branch.autosetuprebase=always
189 See `Understanding Git
190 Conceptually <https://www.cduan.com/technical/git/>`__