Jump to content

What's going on?


Recommended Posts

Posted

Ive read it, but it still doesnt seem to do what I want :/ For example that guide says: You're asking github to pull 3 commits into ... Id like to make it 1 commit, not everything that has been commited since the commit in base branch.

Posted

Hrm, I see what you mean now. It looks like it really only is doing a merge.

The simplest work around would be to cherry pick your commit into a new branch based on master:

git checkout -b pull-request origin/master && git cherry-pick [commit hash]

Then push the new branch to github, and open pull request for it.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use