Lines Matching full:branch
48 <p>Use <code>repo start</code> to start a new topic branch.</p>
75 <p>Start a topic branch in your local work environment whenever you begin a change, for example when you begin work on a bug or new feature. A topic branch is not a copy of the original files; it is a pointer to a particular commit. This makes creating local branches and switching among them a light-weight operation. By using branches, you can isolate one aspect of your work from the others. For an interesting article about using topic branches, see <a href="http://www.kernel.org/pub/software/scm/git/docs/howto/separating-topic-branches.txt">Separating topic branches</a>.
77 <p>To start a topic branch using Repo: </p>
80 <p>To verify that your new branch was created:</p>
84 <p>To assign the branch to a particular project:</p>
87 <p>To switch to another branch that you have created in your local work environment:</p>
91 <pre><code>$ git branch
96 <p>The name of the current branch will be preceded by an asterisk.</p>
97 <p><em>Note: A bug might be causing <code>repo sync</code> to reset the local topic branch. If <code>git branch</code> shows * (no branch) after you run <code>repo sync</code>, then run <code>git checkout</code> again.</em></p>
127 <p>This will list the changes you have committed and prompt you to select which branches to upload to the review server. If there is only one branch, you will see a simple <code>y/n</code> prompt.</p>