Contribute to Racket - racket/racket GitHub Wiki

Summary

  1. raco pkg update --clone <PKG>
  2. fork the racket/ repo on GitHub
  3. add your fork as a remote: git remote add fork https://github.com/<YOUR-USERNAME>/<PKG>
  4. make a new branch, git checkout -b my-edits
  5. do edits
  6. rebuild documentation using scribble colour.scrbl or raco pkg update gui
  7. always do the following:
raco pkg setup [package]
raco test [package]
  1. commit changes, git commit
  2. push to the fork, git push fork my-edits
  3. create a pull request on GitHub

If you are new to GitHub, the following GitHub documentation is helpful;

⚠️ **GitHub.com Fallback** ⚠️