@@ -4,15 +4,18 @@ Branches
4
4
.. image :: /images/branch.png
5
5
:align: right
6
6
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.
16
19
17
20
.. image :: /images/branch_name.png
18
21
@@ -24,9 +27,9 @@ context menu in the commit log. This will create a new branch on the revision th
24
27
25
28
.. image :: /images/new_branch.png
26
29
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 .
30
33
31
34
.. image :: /images/create_branch_dialog.png
32
35
@@ -35,8 +38,8 @@ branch the next commit will be committed to the new branch.
35
38
36
39
.. image :: /images/refactor_branch.png
37
40
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.
40
43
41
44
Orphan branches
42
45
^^^^^^^^^^^^^^^
@@ -52,8 +55,20 @@ Checkout branch
52
55
---------------
53
56
54
57
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
+ +------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
57
72
58
73
.. image :: /images/checkout_branch.png
59
74
@@ -72,13 +87,13 @@ To merge the Refactor branch into the master branch, we first need to switch to
72
87
.. image :: /images/merge2.png
73
88
74
89
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.
76
91
77
92
.. image :: /images/merge_dialog.png
78
93
79
94
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.
82
97
83
98
.. image :: /images/merge3.png
84
99
@@ -121,12 +136,15 @@ the Refactor branch are created after the commits on the master branch.
121
136
Delete branch
122
137
-------------
123
138
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.
128
146
129
147
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.
131
149
132
150
.. image :: /images/delet_branch.png
0 commit comments