> Before doing that, my branch was ahead by 6 commits and was behind by several 
> commits, while after rebasing it is written that my branch is ahead by 6 
> commits.  
> 
> How can I fix the rebasing if it was incorrect. 

Yeah, the problem as Noel indicated is that to do the review now, we have to 
sift through dozens of completely unrelated changes. I can't tell at all what 
are your changes for this particular pull request. It's a mess now.

So the best solution is to create a new branch for a new request with just your 
commits.

# Create a new branch:
git checkout master
git reset -- hard upstream/master # make sure your "master" only has the same 
as upstream
git checkout -b my-new-patch

# now "cherry-pick" the commits from your previous branch
git cherry-pick # git commit ids.. maybe  9fdfc11 for example??

# Then push the new branch as a pull request

Hope that helps,
-Geoff
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
OpenBabel-Devel mailing list
OpenBabel-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openbabel-devel

Reply via email to