We highly appreciate any contribution to sandbox ❤️
- Make sure your fork is up to date with the main repository:
cd sandbox
git remote add upstream https://github.com/ton-community/sandbox.git
git fetch upstream
git pull --rebase upstream main
NOTE: The directory sandbox
represents your fork's local copy.
- Branch out from
main
intofix/some-bug-#123
orfeat/some-feat
for features: Postfixing #123 will associate your PR with the issue #123 and make everyone's life easier
git checkout -b fix/some-bug-#123
- Make your changes, add your files, commit, and push to your fork.
git add SomeFile.js
git commit "fix: issue #123"
git push origin fix/some-bug-#123
- Make sure tests pass and build succeeds:
yarn build
(build
runs tests automatically)
- Go to github.com/ton-community/sandbox in your web browser and issue a new pull request.
IMPORTANT Read the PR template very carefully and make sure to follow all the instructions.
- Maintainers will review your code and possibly ask for changes before your code is pulled in to the main repository. We'll check that all tests pass, review the coding style, and check for general code correctness. If everything is OK, we'll merge your pull request and your code will be part of sandbox.
If you have any questions, feel free to join ton-community dev chat at Telegram: https://t.me/ton_dev_community.
Thanks for your time and code!