🚀 Welcome to Enyanjyoti! Thank you for considering contributing to this project. Please take a moment to review the guidelines below to help streamline the process.
When contributing to this repository, please first discuss the change you wish to make via an issue.
📚 Make sure to read our Wiki and familiarize yourself with the repository’s structure and objectives before making any contributions.
❌ Do not open issues for general support questions — we want to keep GitHub issues focused on bug reports and feature requests. If you have any questions, feel free to email us via our Discord: sk_miraj or join our real-time discussion on Discort: GSSOC.
Please remember: This is an inclusive community. We are committed to fostering a safe and positive environment. Be sure to follow our Code of Conduct in all interactions.
- 🔍 Search First: Before submitting, please search the issue tracker to avoid duplicates.
- 📝 Use the Issue Template: Always follow the issue template provided.
- 📸 Screenshots: Include them for UI-related issues.
- 🖼️ Mockups: Provide mockups when suggesting UI or workflow enhancements.
- 🚀 Express Your Interest: Comment on the issue to request assignment.
- ✅ Reproduce the Issue: Ensure you can reproduce the problem before starting.
- 🚫 Don’t Work on Already Assigned Issues: Allow the assigned contributor 2 days to make progress before stepping in. If no progress is made, feel free to claim it.
⚠️ Note: Avoid working on an issue already assigned to another contributor. Allow the assigned person at least 2 days to work on the issue. If no progress is made, feel free to ask for an update.
-
Fork the Project:
git clone https://github.com/your-username/Enyanjyoti.git
-
Switch to the
master
branch:git checkout master
-
Create a New Branch with a meaningful name:
git checkout -b branch-name
-
Add specific files (avoid
git add .
):git add file-name
-
Write meaningful commit messages (see Commit Message Guidelines):
git commit
-
Squash commits if needed:
git rebase --interactive HEAD~2
-
Push your branch:
git push origin branch-name
-
Submit the PR: Follow the PR template and ensure you provide clear context for your changes.
-
During review: If requested to make changes, rebase and squash your commits before pushing the changes.
Note: Do not create multiple PRs for the same issue. Avoid duplicating effort. Be patient if others are working on the same issue.
Keep track of the original repository by adding an upstream remote:
- Set
upstream
:git remote add upstream https://github.com/Vin205/Enyanjyoti.git
- Verify remotes:
git remote -v
- Sync changes with
upstream
:git fetch upstream git checkout master git merge upstream/master git push origin master
- Delete remote branch:
git push origin --delete branch-name
- Switch to
master
:git checkout master
- Delete local branch:
git branch -D branch-name
- Pull the latest changes:
git pull upstream master
If a build is not required (e.g., for documentation updates), include [ci skip]
or [skip ci]
in your commit message to skip Travis CI.
That’s it! Thank you for your contribution to the Enyanjyoti project! 😊
For more information, see our Code of Conduct, License, and README.