Create local branch from remote branch git code example

Example 1: create local branch to track remote

git checkout --track origin/some_remote_branch

Example 2: create local and remote branch

git checkout -b yourBranchName
git push -u origin yourBanchName

Example 3: create new remote branch

git checkout -b <new-branch-name>	#Create new branch locally
git push <remote-name> <new-branch-name> #Create new branch remotely

Example 4: git link local branch to remote branch

git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'