## Understanding the basics Not sure what a pull request is, or how to submit one? Take a look at GitHub's excellent [help documentation] first. We also have [guidelines for setting up a local workspace](https://github.com/JabRef/jabref/wiki/Guidelines-for-setting-up-a-local-workspace). ## Add your change to the CHANGELOG You should edit the [CHANGELOG](CHANGELOG) located in the root directory of the JabRef source. Add a line with your changes and your name. Nicknames are OK ## Add yourself to src/main/resources/help/About.html We try to keep an updated list of contributors in `About.html`. Open `About.html` and add yourself below `Contributions from:`. ## Adapt the year in the header The years stated in the header of each .java file should match the years where the file has been modified. For instance, ```plain /* Copyright (C) 2003-2011 JabRef contributors. ``` gets ```plain /* Copyright (C) 2003-2014 JabRef contributors. ``` ## Write a good commit message. See [good commit message] or [commit guidelines section of Pro Git]. [commit guidelines section of Pro Git]: http://git-scm.com/book/en/Distributed-Git-Contributing-to-a-Project#Commit-Guidelines [good commit message]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html [help documentation]: http://help.github.com/send-pull-requests