This is a starter template for Learn Next.js. Test commit.
How to push commit to main git add . git commit -m "Some message" git push
How to do work on your branch (safe place to play around code) git branch [branch name]: create a branch git branch: checks all the branches git checkout [branch name]: go to this branch
how to delete your local branch
- checkout to another branch (not the one you want to delete)
- git stash
- git branch -d [branch name]
git pull: pulls from the origin (the website)