How to contribute to this book ?
Contribute via GitBook
Create an account on Gitbook.com and request to become a collaborator to the Adopt OpenJDK GitBook
Some documentation and how to install GitBook locally should also help in the process.
Contribute via GitHub
Create a fork Visit this website to create a fork: https://github.com/adoptopenjdk/adoptopenjdk-getting-started-kit#fork-destination-box
Clone your version into your workspace
git clone [email protected]:{YOUR_GITHUB_ACCOUNT}/adoptopenjdk-getting-started-kit.git
Add Upstream
git remote add --track master upstream git://github.com/adoptopenjdk/adoptopenjdk-getting-started-kit.git
Now you can update your fork with the original repository:
git fetch upstream
and
git merge upstream/master
Commit modified files
git add <changes files / wild-card pattern>
git commit -am "meaningful description about your changes"
Push files
git push
Create a pull request Visit your repository on GitHub: https://github.com/{YOUR_GITHUB_ACCOUNT}/adoptopenjdk-getting-started-kit/pulls and click on New Pull Request button and create a new one.
How to identify changes to the book ?
We have two scripts in the root folder of the repo, that creates a What's changed markdown page, like this one.
The What's changed markdown generator scripts are called whatsChanged.sh and whatsChangedForAllLanguages.sh.
Please feel free to improve it, provided it continues to do what it currently does and more.
See also Feedback, and How to contribute to Adopt OpenJDK and OpenJDK ?