You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
Come up with a name for the branch.
prefix with username/, not too long, and not too generic.
Switching branches.
git switch -c username/branch_name, switch = switch to the branch with name ..., -c = create the branch, before giving the name
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
git push to push this committed work to the branch, or skip this step to keep it local.