Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2376ea commit eb67fa3Copy full SHA for eb67fa3
1 file changed
doc/devel/coding_guide.rst
@@ -224,6 +224,14 @@ rebase it to the new master::
224
git checkout whizbang-branch
225
git rebase master
226
227
+If you get the dreaded "Unable to determine upstream SVN information
228
+from working tree history" error when running "git svn rebase", try
229
+creating a new git branch based on subversion trunk and cherry pick
230
+your patches onto that::
231
+
232
+ git checkout -b work remotes/trunk # create a new "work" branch
233
+ git cherry-pick <commit> # where <commit> will get applied to new branch
234
235
Working on a maintenance branch from git
236
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
237
0 commit comments