Git command:
#Goto Master Branch
git checkout master
#make sure you have the latest files
git pull
#create new branch in your local repository
git checkout –b <BranchName>
#create remote branch with tracking
git push –u origin <BranchName>
Git command:
#Goto Master Branch
git checkout master
#make sure you have the latest files
git pull
#create new branch in your local repository
git checkout –b <BranchName>
#create remote branch with tracking
git push –u origin <BranchName>