...by forking and submitting pull requests.
First, form your teams and establish a point person.
- Point person creates a repo for your project.
- Teammates fork the repo to their own accounts.
- Clone your respective remote of the repo. Point person has the "original" repo, teammmates have the forked repo and Divvy up!
- Point person: add an
index.html
and add the names of your team in that file. Use<li>
. - Teammate A: add a
site.js
. For now the file consists of one line:console.log('This will be the js used by the project.')
. - Teammate B: add a
site.css
. For now the file consists of one style:body>* {box-sizing: border-box;}
.
- Everyone will add, commit, push to their respective repo.
- Consolidate
- Teammate A and B create pull requests.
- Point person accepts the pull request.
- Keep updated
- Teammate A and B add another remote of the "original" repo from point person, as
upstream
. - Teammate A and B pull from the
upstream
to get the most up-to-date version of their project.
Have a good day! 🚀🍻🔛