I had a problem with git
This answer solved it, I needed to do
git checkout -t remotes/origin/branch-name
What does -t mean...?
I can't find any answers on google or here...
I had a problem with git
This answer solved it, I needed to do
git checkout -t remotes/origin/branch-name
What does -t mean...?
I can't find any answers on google or here...
You can get more information on a specific command using --help flag. In this case, git checkout --help would show you that -t is the shorthand form for --track.
