Skip to content

Latest commit

 

History

History
68 lines (60 loc) · 1.84 KB

contributing.md

File metadata and controls

68 lines (60 loc) · 1.84 KB

Contribution Rules 👇👇

🛑 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

Geting Started😁😁:

✔ Star mark this repo.
✔ Fork this repo.
✔ Clone on your local machine

git clone https://github.com/s-bhalode/Hacktoberfest_starter_2k23.git

✔ Navigate to project directory.

cd Hacktoberfest_starter_2k23

✔ 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

Avoid Conflicts {Syncing your fork}

➡ 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_starter_2k23.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