I have a fork of a project. The project has two branches: v1.0-test, v1.0-stable
In my fork I created a branch jira-118 from v1.0-stable with my code modification
I was requested to change my PR to v1.0-stable
I changed the base branch according to https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/changing-the-base-branch-of-a-pull-request
However it added commits that are not mine (commits that are already in v1.0-stable)
Attempts to fix this has failed. Now my PR try to submit changes of 169 files instead of 1 file.
What I want to do is simply:
- Get branch jira-118 to be aligned with v1.0-stable (locally)
- apply my commit to branch jira-118 (locally)
- update the remote repo of my fork according to the local copy.
It should be simple but I can't find a way to do that.