Or simply do: git checkout -b develop origin/develop
The problem you encountered is that clone does not create local tracking branches automatically. See the first line in the clone documentation (always should be your first stop when troubleshooting Git): git-scm.com/docs/git-clone#_descri...
Or simply do: git checkout -b develop origin/develop
The problem you encountered is that clone does not create local tracking branches automatically. See the first line in the clone documentation (always should be your first stop when troubleshooting Git): git-scm.com/docs/git-clone#_descri...
Hey Jonathan,
Thank you for sharing that link and taking the time to read.
:)