- Respectful Collaboration: Be respectful and constructive in your interactions.
- Coding Standards: Use clear variable and function names.
- Commit Messages: Write concise, clear, and meaningful commit messages.
- Pull Requests: Submit small, focused pull requests that solve a single issue or add a single feature.
We’re excited to have you contribute to this project! Follow these steps to get started:
- Fork the Repository
- Navigate to the top of this repository and click the Fork button to create a copy of this repo in your GitHub account.
- Clone Your Forked Repository
- Clone your fork to your local machine by running:
git clone git@github.com:nisbweb/Code-Alchemy.git
- Create a New Branch
- Create a new branch for your feature or bug fix:
git checkout -b feature/your-feature-name
Keep your branch name descriptive of the feature or fix you’re working on. 4. Make Your Changes
- Implement your changes or feature.
- Commit Your Changes
- Once you’re satisfied with your changes, stage them:
git add .
- Commit the changes with a meaningful message:
git commit -m "commit message"
- Push to GitHub
- Push your branch to your forked repository:
git push origin feature/your-feature-name
- Create a Pull Request
- Go to the original repository on GitHub and click on Pull Requests.
- Click the New Pull Request button.
- Select your branch from the Compare dropdown and the original repository’s main branch in the Base dropdown.
- Add a description of the changes and submit the pull request.
- Wait for Review
- We will review your pull request.
- Once approved, your changes will be merged into the main branch!