Skip to content
Jeffrey Horn edited this page Oct 5, 2015 · 1 revision

How do I submit practice assignments?

Before working on the assignment...

  1. Change into your WDI directory.
  2. Fork and clone the assignment repository.
  3. Change into the new directory.
  4. Create and checkout a branch. Name it whatever you like.
    git branch <some_name>
    git checkout <some_name>
    
    # OR
    
    git checkout -b <some_name>
    

While working on the assignment...

  1. Follow any further instructions in the assignment README.
  2. Make small, cohesive commits with a good commit message.

After working on the assignment...

  1. Push your changes to your fork.
    git push -u origin
    
  2. Issue a pull request from your branch to the upstream master branch.
Clone this wiki locally