#Goto Master/origin Branch
git checkout master
#make sure you have the latest files
git pull
#create new branch in your local repository
git checkout –b NewBranchName
#create remote branch with tracking
git push –u origin NewBranchName
#Goto Master/origin Branch
git checkout master
#make sure you have the latest files
git pull
#create new branch in your local repository
git checkout –b NewBranchName
#create remote branch with tracking
git push –u origin NewBranchName