Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Ensure core.autocrlf is set to true or input . Line endings on GitHub are LF only, not CRLF!

Instructions

Make sure anything on the current branch has been saved, either through commit or stash.

...

Code Block
git status  # Working tree should be clean, otherwise save or discard the modified file(s)
git checkout main
git pull
git submodule update --remote
git checkout -b new-branch-name

...

  • Test cases (including unit tests) have been written

  • Documentation and comments have been written

  • No new TODOs. If there are, a written comment with a clear explanation of why it cannot be resolved

  • Formatting follows the style guide and generally passes linting

  • Functionality works for all use cases

    • Your code should work to the best of your ability; no one wants to deal with fixing code that’s “good enough” or “works most of the time” when they’re trying to focus on their own code

...