# Contributing As an open-source project, contributions to the Dagor Engine are welcome. If you would like to contribute, follow the steps outlined below: 1. **Fork the Repository** Create a fork of the Dagor Engine repository on GitHub to have your own copy where you can make changes. 2. **Create a New Branch** Create a new branch for your feature or bug fix: ```text git checkout -b feature-name ``` 3. **Make Changes and Commit** Make your desired changes, then commit them to your branch: ```text git commit -m "Description of the changes" ``` 4. **Push and Submit a Pull Request** Push your changes to your forked repository and submit a pull request to the original Dagor Engine repository for review. ```text git push origin feature-name ```