On Mon, Oct 14, 2024 at 9:00 AM Phillip Wood <phillip.wood123@xxxxxxxxx> wrote: > > 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 > Thanks Philip, I actually created another branch but I was really confused if to base the new branch on master or the branch which has the previous commits. Thanks for clarifying this.