stb/docs/git_how.txt
2014-05-30 14:20:16 -07:00

12 lines
146 B
Plaintext

git checkout working
-- do work
git add ...
git commit
to upload:
git checkout master
git pull ; usually unnecessary
git merge working
git push