Skip to content

Latest commit

 

History

History
113 lines (89 loc) · 5.75 KB

README.md

File metadata and controls

113 lines (89 loc) · 5.75 KB

Proposing Changes to a Project w/ Pull Requests

With this exercise we are attempting to collect the GitHub accounts of all students in the class.

FEWD GitHub Accounts

Winter 2016 Class

Spring 2016 Class

Fall 2016 Class

Winter 2017 Class

Summer 2017 Class

Fall 2017 Class

Winter 2018 Class

Spring 2018 Class

Follow these steps to add your name and GitHub account to the above list:

  • Fork this repository (make a personal copy into your GitHub account)
  • Clone your fork (download the forked repo to the Betamore folder on your laptop)
  • Create a branch off master and switch to it
  • Open this file in your text editor and add your name and GitHub account to the above list
  • Commit your changes
  • Push your changes
  • Open a pull request

Sync with upstream

To minimize the likelihood of merge conflicts, ensure that your fork is up to date with the destination repo of your pull request. Do this before creating a branch off master:

  • git remote add upstream https://github.com/betamore/fewd-pull-request-exercise.git
  • git fetch upstream
  • git checkout master
  • git rebase upstream/master

For additional instructions, visit GitHub Help.