/fewd-pull-request-exercise

Exercise for collaborating on projects using pull requests.

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.

Betamore FEWD Academy Instructors

Winter 2016 Class

Spring 2016 Class

Fall 2016 Class

Winter 2017 Class

Summer 2017 Class

Fall 2017 Class

Winter 2018 Class

Spring 2018 Class

Fall 2018 Class

Winter 2019 Class

Spring 2019 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 directory on your machine)
  • Set up and pull from the upstream remote to ensure you are working with the most recent version of the repo (see Sync with upstream notes below)
  • Create a your own branch off master and switch to it
  • Open this file in your text editor and add your name and line to your 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 source 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 checkout master
  • git pull upstream master

For additional instructions, visit GitHub Help.