mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-08 05:02:40 -05:00
36 lines
1.0 KiB
Markdown
36 lines
1.0 KiB
Markdown
# Contribute to Libation
|
|
|
|
We welcome contributions! Whether it's fixing bugs, adding features, or improving documentation, your help is appreciated.
|
|
|
|
> [!WARNING]
|
|
> Read the [Development - Getting Started](/docs/development/getting-started) guide first.
|
|
|
|
## Getting Started
|
|
|
|
1. **Fork the repository** on GitHub.
|
|
2. **Clone your fork** locally.
|
|
3. **Create a branch** for your feature or fix:
|
|
```bash
|
|
git checkout -b feature/my-new-feature
|
|
```
|
|
|
|
## Code Style
|
|
|
|
- Follow standard C# coding conventions.
|
|
- Ensure your code builds and runs without errors.
|
|
- Clean up any unused dependencies or imports.
|
|
|
|
## Submitting a Pull Request
|
|
|
|
1. **Commit your changes** with a clear message.
|
|
2. **Push to your fork**:
|
|
```bash
|
|
git push origin feature/my-new-feature
|
|
```
|
|
3. **Open a Pull Request** on the main repository.
|
|
4. Describe your changes and link any related issues.
|
|
|
|
## Reporting Issues
|
|
|
|
If you find a bug or have a feature request, please [open an issue](https://github.com/rmcrackan/Libation/issues) on GitHub.
|