writing notes
ALWAYS do it on working-branch!!!!
- notes (with dataview)
- layout files
- config files
- anything in VS Code
git checkout workingonce ready:
git add .
git commit -m "update layout / notes"
git push origin workingwhen deploying to the live site
Now you need those changes to reach deploy (the live site).
git checkout deploy
git merge working-branch
git push origin deploy- merges the changes from the working branch ONTO deploy, so deploy (the quartz syncer dataview→markdown notes) NEVER TOUCHES your working stuff.
cheat sheet
| Command | Meaning |
|---|---|
git checkout -b deploy | create + switch to deploy branch |
git branch -m working-branch | rename current branch to working-branch |
git checkout v4 | switch to working-branch |