Lines Matching refs:branch
106 (unstable) code while a branch has the latest stable code.
108 The command ``git branch`` will list all available branches.
110 Questions about branch status/activity should be posted to the mesa-dev
116 #. Setting up to edit the main branch
119 complains that you have not specified a branch, try:
123 git config branch.main.remote origin
124 git config branch.main.merge main
132 modifications, you are probably working on a separate branch and
133 would rebase your branch prior to merging with main. But for small
134 changes to the main branch itself, you also need to use the rebase
135 feature in order to avoid an unnecessary and distracting branch in
158 changes, Git will make a fast-forward merge branch, branching from
186 git config branch.main.rebase true
187 git config --global branch.autosetuprebase=always