Posts

Showing posts from 2017

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]