Suppose I created a pull request on a new branch, then I need to push some additional updates in the same pull request on the same new remote branch, here are my operations, wondering if correct or any better solutions? Thanks.
git checkout -b newFooBranch git add <name of file changed> git commit -m 'add some initial changes' git push origin newFooBranch // make some changes git add <name of same file changed> git commit -m 'add some new changes on the same file' git push origin newFooBranch regards, Lin
-uto whichpushin my above commands? I have twopushcommands.