To help me learn all things technical writing related!
-
git branch
: Create new branch to make changes -
git checkout branch
: Brings you to the branch that you listNote: Use
git checkout -b branchname
to create new branch and check it out at the same time -
Save changes made
-
git add .
: Stages changes -
git commit -m "message"
: Commits changes -
git push origin branchname
: Pushes changes to the GitHub repo
git pull
: Pulls all changes from GitHub down to the local clone
- Local: personal computer folders