Blame | Last modification | View Log | Download
# Contributing to UIkitYou want to contribute to UIkit? Awesome. Please take a few moments toreview the following guidelines to get you started. Cheers.* [Communication channels](#communication)* [Team members](#team)* [Documentation](#documentation)* [Issue tracker](#issues)* [Bug reports](#bugs)* [Pull requests](#pull-requests)* [Versioning](#versioning)* [License](#license)<a name="communication"></a>## Communication channelsBefore you get lost in the repository, here are a few starting pointsfor you to check out. You might find that others have had similarquestions or that your question rather belongs in one place than another.* Chat: https://gitter.im/uikit/uikit* Website: https://getuikit.com* Twitter: https://twitter.com/getuikit<a name="team"></a>## Team membersUIkit is developed as an open source project by [YOOtheme](http://yootheme.com)in Hamburg, Germany. The core maintainers you will encounter in this projectare all part of YOOtheme.## DocumentationThe UIkit documentation is maintained as a collection of Markdown files in its[own repository](https://github.com/uikit/uikit-site). Any pull requests are highly appreciated.<a name="issues"></a>## Using the issue trackerThe issue tracker is the preferred channel for [bug reports](#bugs),[features requests](#features) and [submitting pullrequests](#pull-requests), but please respect the following restriction:Please **do not** use the issue tracker for personal support requests (use [Gitter chat](https://gitter.im/uikit/uikit)).<a name="bugs"></a>## Bug reportsA bug is a _demonstrable problem_ that is caused by the code in the repository.Good bug reports are extremely helpful - thank you!A good bug report shouldn't leave others needing to chase you up for moreinformation. Please try to be as detailed as possible in your report. What isyour environment? What steps will reproduce the issue? What would you expect tobe the outcome? All these details will help people to fix any potential bugs.<a name="pull-requests"></a>## Pull requestsGood pull requests - patches, improvements, new features - are a fantastichelp. Thanks for taking the time to contribute.**Please ask first** before embarking on any significant pull request,otherwise you risk spending a lot of time working on something that theproject's developers might not want to merge into the project.UIkit follows the [GitFlow branching model](http://nvie.com/posts/a-successful-git-branching-model). The ```master``` branch always reflects a production-ready state while the latest development is taking place in the ```develop``` branch.Each time you want to work on a fix or a new feature, create a new branch based on the ```develop``` branch: ```git checkout -b BRANCH_NAME develop```. Only pull requests to the ```develop``` branch will be merged.## VersioningUIkit is maintained by using the [Semantic Versioning Specification (SemVer)](http://semver.org).<a name="license"></a>## LicenseBy contributing your code, you agree to license your contribution under the [MIT license](LICENSE)