Link to final project assignment: https://github.com/aprilbingham-neu/seainfo6150/blob/master/assignments/final-project.md
https://github.com/SEAINFO6150/seainfo6150-final-project-team-8
- Go to the team git repo for your team from above
- Click “Fork” to create your copy of the repo
- Click “Clone or download” to get a link to copy your fork on your computer
- Click “Use HTTPS”
- Copy link
- Open command line/terminal window and use these commands in a directory where you have admin permissions
git clone [copied link]
cd seainfo6150-final-project-team-8
git remote add upstream https://github.com/SEAINFO6150/seainfo6150-final-project-team-8
git pull upstream master
- Make changes in your fork
- Open command line and use these commands inside your final project directory
git add .
git commit -m “[commit name]”
git push origin master
You should make a habit of pulling from the team repo often in order to get the latest changes from your teammates. Failure to pull increases the chances of creating merge conflicts and code collisions.
- Open command line and use this command inside your final project directory
git push upstream master
Creating pull requests assures your team that code isn't being overwritten accidentally and keeps everyone aware of the code that is changing. Teammates should review, approve and merge each others' code.
- Go to the team git repo for your team from above
- Click "New pull request"
- Click "compare across forks" in the top paragraph.
- Leave base repository as-is, and choose your fork in the "head repository" dropdown. Leave both branch dropdowns as "master" unless you have created a branch for your work.
- Verify that the code is able to merge (there are no merge conflicts). If so, click "create pull request".
If the code is not able to merge, it's most likely because there is a merge conflict -- you need to
- Pull from the team repo to get the latest code
- Find out what code is in conflict
- Resolve the conflict by reconciling the differences
- Save, commit and push the changes to your fork
- Try your pull request again
This project was bootstrapped with Create React App.
In the project directory, you can run:
Runs the install scripts to gather and install all dependent modules into node_modules. You must do this once before you run the app for the first time.
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.