-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Ventsislav Tanev edited this page Feb 11, 2017
·
2 revisions
Clone repo to local drive and create a new local development branch (based on remote development branch)
git clone https://github.com/Nerfix/unity-project1.git
git checkout -b development origin/development
git checkout -b some-feature development
git status
git add <some-file>
git commit
git pull origin development
git checkout development
git merge some-feature
git push
git branch -d some-feature