π You are allowed to make pull requests that break the rules. We just merge it.
π Do NOT add any build steps e.g npm install (keep this as a simple static site).
π Do NOT remove other content.
π Add your name to the contributorsList file.
π Try to keep pull requests small to minimize merge conflicts
β Star mark this repo.
β Fork this repo.
β Clone on your local machine
git clone https://github.com/s-bhalode/Hacktoberfest-2023.git
β Navigate to project directory.
cd Hacktoberfest-2023
β Create a new branch
git checkout -b your-name-branch
β Create new readme.md file with your name at the following path
constributors/participants/yourName.md
β Add your details in the newly created file contributors/participants/yourName.md
Name : Your name <br/>
Email : your email <br/>
Institution Name : your institution name <br/>
Github url : your username <br/>
Skills : your skills (optional) <br/>
About (short introduction)<br/>
β Add your changes
git add .
β Commit your changes.
git commit -m "message"
β Then push
git push origin your-name-branch
β Create a new pull request from your forked repository
β‘ An easy way to avoid conflicts is to add an 'upstream' for your git repo, as other PR's may be merged while you're working on your branch/fork.
git remote add upstream https://github.com/s-bhalode/Hacktoberfest-2023.git
β‘ You can verify that the new remote has been added by typing
git remote -v
β‘ To pull any new changes from your parent repo simply run
git merge upstream/master
β Do follow this account