I am trying to push changes to a remote branch.
I ran following commands:
git fetch origin
git checkout <remote branch>
made my changes
 git add .
 git commit .
Now I want to push my changes. Which command should I use to push the changes to remote branch.
 
    