mesecraft/docs/dev-notes/coding/git-notes.txt
2022-07-07 22:00:45 -05:00

20 lines
266 B
Plaintext

add changes
git add .
commit changes to branch
git commit
push changes to repo
git push
Switch working branch in git:
git checkout <branch-name>
merges changes from master into current working branch.
git merge master
updates local files from git
git pull