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