I know how to make a new branch that tracks remote branches, but how do I make an existing branch track a remote branch?
I know I can just edit the
For creating new branch, we could use following command
git checkout --track -b example origin/example
git branch -u origin/remote-branch-name