Assumes you have [email protected]:MaptimeSEA/maptimesea.github.io.git
cloned on your local machine.
- pull down all recent changes from
master
:git pull origin master
- checkout a new branch,
git checkout -b BRANCH-NAME
- add a new file under
_posts/
with the proper date formatted file nameYYYY-MM-DD-NAME.markdown
- add the proper YAML to the top of the new file (copy paste from another file)
- add all the stuff, make changes, do your thing
- add file to local git:
git add FILE-NAME.markdown
- commit file with note:
git commit -m 'NOTE ABOUT CHANGES
- push changes to new remote branch:
git push origin HEAD
(actually write the word HEAD in all caps)