0
Good morning, everyone! There is a repository on github with 02 branch: (Master and Develop). I cloned the Master branch in my local environment and from this Master branch I created the Feature-enhancements, however, the branch that is updated on github is Develop.
Doubt: How would I access the Develop branch and create another branch of it on my site?
Thank you!
when I execute the
git checkout develop
appears the following errorerror: pathspec 'feature/teleconsulta' did not match any file(s) known to git.
– Sena Oliveira
@Senaoliveira, you can use
git remote update
,git fetch
andgit switch develop
– Valdeir Psr
Now it worked!!! I executed the
git remote update
and it was!! Thank you!!!!– Sena Oliveira