Source code for Bangalore Python User Group Blog. Read blog at https://bangalore.pythonindia.org
Follow Testing your GitHub Pages site locally with Jekyll
bundle exec jekyll serve
You can use --livereload
to keep auto-updating changes.
- Setup Upstream repo:
git remote add upstream [email protected]:pythonindia/bangalore.pythonindia.org.git
- Fetch upstream content:
git fetch upstream
- Checkout to master branch:
git checkout master
- Rebase with upstream master:
git rebase upstream/master
- Push (forcefully if needed):
git push -f origin master