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 master
git checkout -b feature-branch-name
git status
git add
git commit
git pull --rebase upstream master
git push origin feature-branch
If 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