This website is hosted in its own git repository solr-site
(see Github and Gitbox).
The content of the main
branch will update the staging site while the content of the production
branch will be published to the main website. Read the README.md file for further instructions.
If you want to contribute some content or bugfix to this website, you may follow these steps:
Clone your fork to your computer
git clone https://github.com/<your-github-id>/lucene-site
cd lucene-site
git pull
Create a new branch for your edits
git checkout -b my-typo-fix
Edit the site following the instructions in README
When done, push your changes to your branch (in your fork)
git add .
git commit -m "Fixing a typo on the resources page"
git push origin
Visit your fork again on GitHub, and you'll se a button to add your branch as a Pull Request
For more detailed instructions, see GitHub documentation.
TIP: For very simple edits to one page only, you may find the page (markdown or html) in GitHub, then click the edit button and submit your PR directly from the UI.