Skip to content

Commit 013e902

Browse files
committedSep 23, 2014
Reword branches chapter
1 parent f710c60 commit 013e902

File tree

2 files changed

+42
-24
lines changed

2 files changed

+42
-24
lines changed
 

‎source/branches.rst

+42-24
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,18 @@ Branches
44
.. image:: /images/branch.png
55
:align: right
66

7-
Branches are used to commit changes separate from other commits. It is very common to create a branch when you
8-
start working on a feature and you are not sure if this feature will be finished in time for the next release. The
9-
image on the right illustrates a branch created on top of commit B.
10-
11-
In Git branches are created very often. Creating a branch is very easy to do and it is recommended to create a branch
12-
very often. In fact, when you make a commit to a cloned repository you start a new branch. I will explain this in the
13-
pull chapter.
14-
15-
You can check on what branch you are working in the toolbar.
7+
Branches are used to commit changes separate from other commits. It is very common to create a new branch when you
8+
start working on a feature to keep the work done on that feature separate from other work. When the feature is
9+
complete the branch can be merged or rebased as you choose such that the commits for the feature either remain as a
10+
parallel branch or appear as a continuous single line of development as if the branch had never existed in the first
11+
place. The image on the right illustrates a branch created on top of commit B.
12+
13+
You can see the name of your current branch in a combo box in the toolbar. You can switch to another branch by
14+
choosing from the combo box list. In the commit log the current branch has an arrow head to the left of its name. If
15+
you are not currently on a branch because you have checked out a specific commit but not any particular branch then
16+
Git Extensions will show ``(no branch)`` in place of a branch name in the toolbar. This is called "Detached HEAD
17+
mode". In Git you can refer to your current branch or commit by the special reference ``HEAD`` in place of the
18+
branch name or commit reference.
1619

1720
.. image:: /images/branch_name.png
1821

@@ -24,9 +27,9 @@ context menu in the commit log. This will create a new branch on the revision th
2427

2528
.. image:: /images/new_branch.png
2629

27-
I will create a new branch called ``Refactor``. In this branch I can do whatever I want without considering others.
28-
In the ``Create branch`` dialog there is a checkbox you can check if you want to checkout this branch immediately after
29-
the branch is created.
30+
I will create a new branch called ``Refactor``. In this branch I can do whatever I want without affecting others.
31+
The default in Git Extensions is to check out a new branch after it is created. If you want to create a new branch
32+
but remain on your current branch, uncheck the ``Checkout after create`` checkbox in the ``Create branch`` dialog.
3033

3134
.. image:: /images/create_branch_dialog.png
3235

@@ -35,8 +38,8 @@ branch the next commit will be committed to the new branch.
3538

3639
.. image:: /images/refactor_branch.png
3740

38-
Creating branches in Git requires only 41 bytes of space in the repository. Creating a new branch is very easy and is
39-
very fast. The complete work flow of Git is optimized for branching and merging.
41+
Creating branches in Git requires only 41 bytes of space in the repository. Creating a new branch is very easy and
42+
fast. The complete work flow of Git is optimized for branching and merging.
4043

4144
Orphan branches
4245
^^^^^^^^^^^^^^^
@@ -52,8 +55,20 @@ Checkout branch
5255
---------------
5356

5457
You can switch from the current branch to another branch using the checkout command. Checking out a branch sets the current
55-
branch and updates all sources in the working directory. Uncommitted changes in the working directory can be overwritten so
56-
make sure your working directory is clean.
58+
branch and updates all of the source files in the working directory. Uncommitted changes in the working directory can be
59+
overwritten so it is best practice to make sure your working directory is clean by either committing or stashing any current
60+
changes before checking out a branch. If you do not clean your working directory then, in the ``Checkout branch`` dialog, you
61+
can choose between four options for your local uncommitted changes:
62+
63+
+------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
64+
| ``Don't change`` | Local changes will be retained if there are not conflicting changes from the branch you are checking out. |
65+
+------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
66+
| ``Merge`` | Performs a three-way merge between your current branch, your local changes and the branch you are checking out. |
67+
+------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
68+
| ``Stash`` | Your local changes are stashed and the new branch is checked out. You can retrieve your changes on the new branch with stash-pop. |
69+
+------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
70+
| ``Reset`` | Your local changes are discarded and the new branch is checked out. Use caution with this option as Git has no record of uncommitted changes so they cannot be retrieved. |
71+
+------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
5772

5873
.. image:: /images/checkout_branch.png
5974

@@ -72,13 +87,13 @@ To merge the Refactor branch into the master branch, we first need to switch to
7287
.. image:: /images/merge2.png
7388

7489
Once we are on the master branch we can choose merge by choosing ``Merge branches`` from the ``Commands`` menu. In the merge
75-
dialog you can check the branch you are working on. After selecting the branch to merge with, click the ``Merge`` button.
90+
dialog you can verify which branch you are working on. Select the branch to merge with then click the ``Merge`` button.
7691

7792
.. image:: /images/merge_dialog.png
7893

7994
After the merge the commit log will show the new commit containing the merge. Notice that the Refactor branch is not changed
80-
by this merge. If you want to continue working on the Refactor branch you can merge the Refactor branch with master. You could
81-
also delete the Refactor branch if it is not used anymore.
95+
by this merge. If you want to continue working on the Refactor branch you can merge the Refactor branch with master. You can
96+
instead delete the Refactor branch if it is not used anymore.
8297

8398
.. image:: /images/merge3.png
8499

@@ -121,12 +136,15 @@ the Refactor branch are created after the commits on the master branch.
121136
Delete branch
122137
-------------
123138

124-
It is very common to create a lot of branches. You can delete branches when they are not needed anymore and you do not want
125-
to keep the work done in that branch. When you delete a branch that is not yet merged, all commits will be lost. When you
126-
delete a branch that is already merged with another branch, the merged commits will not be lost because they are also part
127-
of another branch.
139+
Since it is common to create many branches, it is often necessary to delete branches. Most commonly you will need to delete
140+
branches on which work has finished and their contents are merged into master or your main branch. You can also delete
141+
unmerged branches when they are not needed anymore and you do not want to keep the work done in that branch.
142+
143+
When you delete a branch that is not yet merged, all of the commits that are in only the deleted branch will be lost.
144+
When you delete a branch that is already merged with another branch, the merged commits will not be lost because they are
145+
also part of another branch.
128146

129147
You can delete a branch using ``Delete branch`` from the ``Commands`` menu. If you want to delete a branch that is not merged into
130-
another branch, you need to check the ``Force delete`` checkbox.
148+
your current branch (``HEAD`` in Git), you need to check the ``Force delete`` checkbox.
131149

132150
.. image:: /images/delet_branch.png

‎source/images/checkout_branch.png

7.62 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.