Spaces:
Running
Running
File size: 1,548 Bytes
db97677 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# Contributing to headshot
Thank you for considering contributing to headshot! Please take a moment to review the following guidelines.
## Code of Conduct
This project and everyone participating in it are governed by the [Code of Conduct](CODE_OF_CONDUCT.md). By participating, you agree to uphold this code. Please report unacceptable behavior to [your email or a dedicated email for issues].
## How to Contribute
1. Fork the repository.
2. Clone the forked repository to your local machine:
```bash
git clone https://github.com/zaibutcooler/headshot.git
```
3. Create a new branch for your feature or bug fix:
```bash
git checkout -b feature-name
```
4. Make your changes and commit them with a descriptive commit message:
```bash
git add .
git commit -m "Add your descriptive message here"
```
5. Push the changes to your fork:
```bash
git push origin feature-name
```
6. Create a pull request (PR) from your fork to the main repository.
7. Ensure your PR title and description are clear and concise.
## Reporting Issues
If you find any issues or have suggestions, please open an issue on the [Issue Tracker](https://github.com/zaibutcooler/headshot/issues).
## Style Guide
- Follow the existing coding style.
- Use meaningful variable and function names.
- Write clear and concise documentation.
## License
By contributing, you agree that your contributions will be licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
Thank you for contributing to headshot!
|