Hi Usman
On 13/10/2024 10:42, Usman Akinyemi wrote:
On Sat, Oct 12, 2024 at 11:09 PM Usman Akinyemi via GitGitGadget
I also want to ask if this is the right way to send another patch as I
noticed that it is showing my previous patch which is not related to
this. Thank you.
When you start working on a new patch series you should create a new
branch from origin/master with
git switch -c my-new-branch origin/master
that way your new work will be based on Junio's master branch rather
than your other patch series. You can use
git branch --set-upstream-to origin/master
git rebase HEAD^
to drop the first two patches and set the correct upstream for your branch.
Best Wishes
Phillip