patacongo commented on pull request #1617: URL: https://github.com/apache/incubator-nuttx/pull/1617#issuecomment-677862024
> I tried these steps, but it didn't work for #1618 It looks like your also did some 'git merge' . Merging and rebasing are incompatible because merging screws up the history. You should rebase only so that you changes are always applied on top of master. Once you merge, you can never recover the clean branch. You would have to start over like: * git -m <oldcode> * git checkout master * git pull upstream master * git checkout -b <newcode> * git cherry-pick <commits> * git push -f origin <newcode> That will re-create a clean branch with only your last changes on top of master. So, th ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
