Please look here and here for the concepts.
I want to start new project 'SuperProject'.
- Local project, only working repo:
- git clone git://github.com/vsemyonoff/template SuperProject
- cd SuperProject
- ./mkproject
- Local project with custom local origin:
- git clone git://github.com/vsemyonoff/template SuperProject
- cd SuperProject
- ./mkproject /mnt/projects/superproject
- Project with custom remote origin:
- Go to github.com
- Create new repo (for example 'superproject')
- git clone git://github.com/vsemyonoff/template SuperProject
- cd SuperProject
- ./mkproject git://[email protected]:githubuser/superproject
Open 'SuperProject.xcodeproj' and build it. To be able to run/debug
Edit Scheme > Run > Other > '/project/path/SuperProject/bin/SuperProject'.
- First example will create local project and init repo without origin.
- Second will also create local master repo and push initial commit there.
- Third will do the same but setup as origin GitHub repo and push there.