cd ~/dev
git clone https://git.zipcode.rocks/MyRepositoryHost/NameOfProject
cd NameOfProject
git checkout -b teambranch
git add .
git commit -m 'first commit'
git push -u origin teambranch
git fetch origin
git checkout teambranch
git checkout -b featurebranch
git fetch origin
git checkout featurebranch
git pull origin teambranch
git add .
git commit -m 'feature branch synched with team branch'
git push -u featurebranch
git fetch origin
git checkout teambranch
git merge featurebranch
git add .
git commit -m 'merged featurebranch into teambranch'
git push -u origin teambranch