The HMT workflow with git
Summary
Your regular work cycle is:
- git pull
- (do a little work)
- validate+verify in sbt console
- git add FILENAME
- git commit -m “MESSAGE”
- git push
Notes on git
git status is a good way to see whether anything in your repository has changed
In your regular workflow
git pull = “bring down changes from the shared repository”
git add FILENAME = “add a file to the list to save locally”
git commit = “save files on the list in your local copy of the repository”
git push = “send your locally saved changes back to the shared repository”