Hacktoberfest encourages participation in giving back to the open source community by completing pull requests, participating in events, and donating to open source projects.
We here at Tenet-Coding will be maintaining the Projects with MIT License and make the use of open source rights. Kindly, Follow the Steps to contribute to submit your Hacktoberfest Pull Request to us.
- Plagiarism is strictly not allowed. Any work that is found to be suspicious of plagiarized work will not be merged.
- Issues will be assigned on a first come, first serve basis. You just have to comment on the issue, asking to be assigned, and it will be done if found fit.
- Preferably, you cannot work on any issue that is not assigned to you.
- In case you want to submit an improvement to an existing algorithm, we prefer that you create an issue, describing in details your improvement. This will help others to analyze your contribution. You can use the templates that we have provided :)
- If you have anything else in mind, create an issue and please wait for it to be assigned to you. You can then start working on it and create a PR.
- All PRs must be made from a Branch. Create a separate branch for every Issue you are working upon and once found fit, make a PR.
- If you have no idea what are issues or PRs, please do refer to this link
Make sure your code works before submitting it :D
- If you are looking to make your first contribution, follow the steps below
- Fork the repository.
- Make any changes in your forked repository.
- Now submit the
Pull Request
.
- Fork this repository by clicking on the
Fork
button on the top of this page. - This will create a copy of this repository in your account.
- Now clone the forked repository to your machine.
- Go to your GitHub account, open your forked repository, click on the code button and then click the copy to clipboard icon.
- Open your terminal and run the following git command:
git clone https://github.com/Your-username/Hacktoberfest-Projects.git
- Switch to the cloned folder on your computer.
cd Hacktoberfest-Projects
- Now create a branch using the
git checkout
command:
git checkout -b projectname-username
- Add your projects to a new directory, the name of the directory should be your
ProjectName/USERNAME
- Add
One Project
at a time.
-
Stage your changes
- Stage all files:
git add .
- Stage a file:
git add <file_name.html>
- Stage a folder:
git add <projectfolder>
- Stage all files:
-
Check the status of your repository by entering the following command.
git status
-
Now commit those changes to the branch you just created:
git commit -m "Added <projectname> by <your_username>
- Push your changes using the
git push
command:
git push origin <projectname-username> Compare & pull request button
- If you go to your repository on GitHub, you'll see a new section containing contribute buttom! Click on that button.
- Now click the pull request button on the drop down.
- Wait for your changes to be merged.
Hurray! You successfully made a contribution! 🎉
- Do not spam, Else you will be banned.
- Submit your Projects in Appropriate folders as mentioned to you while assigning.
Refer Our Wiki If you are new to Github Tenet Contributing Wiki
You can refer to Sample Issue Created here And Create Pull Request Accordingly.