Problem Statement
How do you set the current local branch to track `origin/develop`?
Explanation
Use `git branch --set-upstream-to=<remote>/<branch>` from the local branch. Alternatively, the first push can set it: `git push --set-upstream origin <branch>`.
Practice Sets
This question appears in the following practice sets:
