64 lines
2.2 KiB
Markdown
Raw Normal View History

# How to Contribute
Welcome to [OpenMetadata](https://open-metadata.org). Our goal is to build an Open standard for Metadata. We genuinely believe this mission can only be achieved through building a great community.
We ❤️ all contributions, big and small!
## Github issues
Look for issues under [github/issues tab](https://github.com/open-metadata/OpenMetadata/issues) . If you have a feature request or found a bug please file an issue. This will help us track and will help community overall as well.
![./images/new-issue.png](../../.gitbook/assets/new-issue.png)
## Fork Github project
OpenMetadata Github repository can be accessed here [https://github.com/open-metadata/OpenMetadata](https://github.com/open-metadata/OpenMetadata) .
2021-08-29 21:24:50 +00:00
![./images/fork-github.png](../../.gitbook/assets/fork-github%20%281%29.png)
2021-08-19 13:08:12 +05:30
Create a local clone of your fork
```bash
2021-08-19 13:08:12 +05:30
git clone https://github.com/<username>/OpenMetadata.git
```
2021-08-19 13:08:12 +05:30
Set a new remote repository that points to the OpenMetadata repository to pull changes from the open source OpenMetadata codebase into your clone
2021-08-19 13:08:12 +05:30
```bash
cd OpenMetadata/
git remote add upstream https://github.com/open-metadata/OpenMetadata.git
git remote -v
```
## Create a branch in your fork
```bash
git checkout -b ISSUE-200
```
Make changes. Follow the [Coding Style](coding-style.md) Guide on best practices and [Build the code & run tests](build-code-run-tests.md) on how to setup Intellij, Maven
## Push your changes to Github
```bash
git add .
git commit -m "ISSUE-200: Meaningful commit message"
git push origin HEAD:refs/heads/issue-200
```
## Open a PR
1. Go to [https://github.com/open-metadata/OpenMetadata/pulls](https://github.com/open-metadata/OpenMetadata/pulls)
2. It should show an option to open a pull request. ![./images/pull-request-1.png](../../.gitbook/assets/pull-request-1.png)
3. If not, click on "New Pull request"
![./images/pull-request.png](../../.gitbook/assets/pull-request.png)
4. Select your fork repository and branch ![./images/pull-request-2.png](../../.gitbook/assets/pull-request-2.png)
5. Click "Create pull request"
## We are here to help
2021-09-24 09:40:07 -07:00
Please reach out to us anytime you need any help. [Slack](https://slack.open-metadata.org/) would be fastest way to get a response.