- Install Git from https://git-scm.com/downloads
- Learn more about Git https://git-scm.com/book/en/v1/Getting-Started-About-Version-Control
- Open a Bash/Powershell and create a folder using mkdir TheHidden
- cd TheHidden
- git init
- git remote add origin https://github.com/DelandPo/TheHidden.git
- git remote -v
- git pull origin development
- Now you should have unity project on local machine
- git push --set-upstream origin development
- git push
- From Unity open the project
- git add --all
- git commit -m "Helpful messages"
- git push
- Create a branch -> git branch [branch-name]
- Switch to specified branches and updates the directory -> git checkout [branch-name]
- Combine specified branch with current one -> git merge [branch-name]
- Delete a branch -> git branch -d [branch-name]