@@ -82,12 +82,12 @@ In more detail
82
82
# (use "git add <file>..." to update what will be committed)
83
83
# (use "git checkout -- <file>..." to discard changes in working directory)
84
84
#
85
- # modified: README
85
+ # modified: README
86
86
#
87
87
# Untracked files:
88
88
# (use "git add <file>..." to include in what will be committed)
89
89
#
90
- # INSTALL
90
+ # INSTALL
91
91
no changes added to commit (use "git add" and/or "git commit -a")
92
92
93
93
#. Check what the actual changes are with ``git diff `` (`git diff `_).
@@ -151,7 +151,8 @@ When you are ready to ask for the merge of your code:
151
151
152
152
#. If the branch is to be merged into a maintenance branch on the main
153
153
repo, make sure the "base branch" indicates the maintenance branch
154
- and not master.
154
+ and not master. Github can not automatically determine the branch
155
+ to merge into.
155
156
156
157
Staying up to date with changes in the central repository
157
158
=========================================================
@@ -197,24 +198,12 @@ If you were to merge ``upstream/master`` to your ``master``, you
197
198
would start to diverge from the upstream. If this command fails, see
198
199
the section on accidents _.
199
200
200
- .. Doesn't one then need to push this up to the private repository? I
201
- .. have multiple machines I use for development, and I don't want to
202
- .. have to do this on all of them - MGD
203
-
204
- .. Not really; does the paragraph below explain this enough? - JKS
205
-
206
201
The letters 'ff' in ``--ff-only `` mean 'fast forward', which is a
207
202
special case of merge where git can simply update your branch to point
208
203
to the other branch and not do any actual merging of files. For
209
204
``master `` and other integration branches this is exactly what you
210
205
want.
211
206
212
- .. Does this need to be done for each maintenance branch as well?
213
- .. This doesn't seem to be sufficient to pull in changes on an
214
- .. upstream maintenance branch. - MGD
215
-
216
- .. Does the section below answer this? - JKS
217
-
218
207
Other integration branches
219
208
--------------------------
220
209
0 commit comments