-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
Andrew Cope edited this page Oct 12, 2017
·
2 revisions
- Make sure you have XCode 9 installed on your computer
- On our DCSCiOS github page, click "Clone or Download", then "Open in Xcode".
- The project will open in Xcode. Save it somewhere on your computer.
- There's two account details to need to fill in: Apple Account and Github Account
- Navigate to Xcode > Preferences > Accounts
- Select the
+
button in the botom left corner of the window - Select Apple Id. Insert your Apple Id
- Select
+
button again. Select Github. Insert Github credentials.
-> At this point, you should be able to run the app in the simulator. If you are having difficulties, let me know. Don't let this annoying account stuff discourage you!
- Github allow you to "branch" changes to keep everything organized.
- Create a new branch in Xcode:
a) Navigate to the "Source Control Panel"
b) Option+Click
Branches > master > branch from "master"
c) name your branch with you first and last name
Now any changes you make are only contained in your specific branch. This way, if multiple people are changing things at the same time, things won't brake.
-
Change things to your little's heart's content.
-
When you want to add your changes to Github, select
Source Control > Commit
-
Write a commit message briefly describing your changes.
-
Select
Source Control > Push
. This will upload your branch to Github for all to see. -
When you would like to add your changes to the master branch, create a Pull Request on Github. I (Andrew) will then merge your changes into the master branch.