Git post-commit hook to keep master and gh-pages branch in sync :
In your Git repository create a file .git/hooks/post-commit and fill it with this:
#!/bin/sh
git checkout gh-pages
git rebase master
git checkout master
Git post-commit hook to keep master and gh-pages branch in sync :
In your Git repository create a file .git/hooks/post-commit and fill it with this:
#!/bin/sh
git checkout gh-pages
git rebase master
git checkout master
| # -*- coding: utf-8 -*- | |
| """ | |
| Go to Google Bookmarks: https://www.google.com/bookmarks/ | |
| On the bottom left, click "Export bookmarks": https://www.google.com/bookmarks/bookmarks.html?hl=en | |
| After downloading the html file, run this script on it to generate a KML. | |
| """ |