I want to create a branch from an existing remote branch (let\'s say remote-A) and then commit the changes to the repository.
I have used the below commands to create a
To make sure your changes are on top, you must not pull from remote. you must fetch and rebase. il will be something like this:
fetch->stash->rebase->stash pop->commit->push