How to create branch from remote branch
git command to create a new local branch from the remote branch git remote add <name> <remote_repo> git fetch <name> then, git checkout -b [branch] [remotename]/[branch]
Share what you learned :)