Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion reference.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ <h4>Branch</h4>
<p>Displays a list of existing branches and indicates the current branch.</p>
<pre><code>git branch &lt;name&gt;</code></pre>
<p>Creates a new branch with the specified name.</p>
<pre><code>git commit -b &lt;name&gt;</code></pre>
<pre><code>git checkout -b &lt;name&gt;</code></pre>
<p>Creates a new branch with the specified name and checks it out so that it is the current branch.</p>
<pre><code>git branch -d &lt;name&gt;</code></pre>
<p>Deletes branch unless the branch has never been merged.</p>
Expand Down