This project uses a linear history workflow, i.e., rebase instead of merge.
This project uses the Airbnb style guide. Refer to: https://github.com/airbnb/javascript.
| TERM | REPO |
|---|---|
| Upstream | stoneandsand/stoneandsand |
| Origin | your github/stoneandsand |
| Local | Local files in git. |
git checkout master
git pull --rebase upstream mastergit checkout -b feature-branch-namegit status
git add
git commitgit pull --rebase upstream mastergit push origin feature-branchIf your pull request was rejected, return to step 3.
Update your local master branch, then your github master branch.
git checkout master
git pull --rebase upstream master
git push origin master -f