Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1006 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (27 loc) · 1006 Bytes

Contributing Guidelines

Thank you for showing interest in contributing to the project.♥️

Please follow the instructions below:

ISSUES 🐛

When you're creating a new issue make sure to share as much information as you can. This helps to better understand the issue and fix/add new features quickly.

  • Open an issue if you found a bug
  • If you want me to add any missing feature, please open an issue

GitHub Workflow

  1. Fork the repository
  2. Clone the forked repository using the command
git clone https://github.com/<YOUR-USERNAME>/build-discord-bot.git
  1. Create a new branch. If you're fixing a bug start the branch name with fix/ or if you're adding a new feature start the branch name with feature/
git checkout -b fix/<WHAT-YOU-FIXING>
  1. Make changes. Commit the changes with a relevant commit message
git add . // or file name
git commit -m '<WHAT-WAS-THE-CHANGE>'
  1. Push the changes to GitHub
git push origin main
  1. Create a Pull Request.