Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 1.62 KB

lab-submission-guide.md

File metadata and controls

31 lines (27 loc) · 1.62 KB

Lab Assignment Submission Guide

How Will Lab Assignments Be Submitted?

All lab assignments in the iOS 401 class will be submitted through a pull request to the appropriate assignment repository.

Each week's Lab will have a unique repository with a README.md with the instructions for the assignment. Any special materials needed for the assignment will be included in the assignment repository.

For each week's lab assignment:

  • You will fork the assignment repository
  • Clone your fork onto your computer.
  • Make a directory named with your name.
  • Do all of the work for the assignment in that directory. As you work in your fork you will work in a branch that follows the naming convention <YourName>-Class<#>.
  • When you are ready to submit your assignment you will make a pull request from the master-branch of your GitHub fork to the master-branch of the original Assignment.
  • Then you will copy the url of your pull request and paste it into the assignment URL on Canvas.
    • Eg: https://github.com/Codefellows-Seattle-iOS-401/Week1-Intro-to-Swift/pull/1

Practice Exercise

  • Follow the steps above and fork this repository.
  • Fork this repository
  • Clone your fork
  • Make a directory named YourName
  • Create a branch named YourName-ReadMe
  • In the directory with your name make a file called <YourName>.md
  • Edit <YourName>.md with the following.
<YourName>
  • using git, add your changed files.
  • Commit your changes with Created First README as the commit message.
  • Push it up to your fork on GitHub. Eg:git push origin **BranchName**
  • Create a pull request to this assignment from your fork.