-
Notifications
You must be signed in to change notification settings - Fork 1
Notes
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 pushto push this committed work to the branch, or skip this step to keep it local.
Usages of branch main:
git pullgit switch -c <branch_name>