Skip to content
StanPlayzz edited this page Jan 9, 2026 · 4 revisions

Welcome to the Stan's notes!

Rules of a good disciple of karn:

  • After changing anything in the rendering pipeline, ie: drawing an object, always check the validation layers

Git Branching 101:

  1. Come up with a name for the branch. prefix with username/, not too long, and not too generic.
  2. Switching branches. git switch -c username/branch_name, switch = switch to the branch with name ..., -c = create the branch, before giving the name
  3. Decide on a commit message, and add and commit. git add . & git commit -m "<message>" or remove -m "<message>" to open the configured text editor, to edit earlier commits: git commit --amend
  4. git push to push this committed work to the branch, or skip this step to keep it local.

Usages of branch main:

  1. git pull
  2. git switch -c <branch_name>

Clone this wiki locally