Skip to content

Latest commit

 

History

History
69 lines (59 loc) · 1.89 KB

contributing.md

File metadata and controls

69 lines (59 loc) · 1.89 KB

Hacktoberfest_Starter_2k23

HacktoberFest2k23

Instructions for PR Approval 👍✅

  • First Star⭐ this Repository.

  • Second Fork this Repository using the button at the top on the right corner

  • Clone this repository using this command ("Using command :- git clone ")

git clone https://github.com/HardikPanwar/Hacktoberfest_Starter_2k23.git
  • Create a new branch of your name to make changes and modification.
git checkout -b <YOUR-NAME>
  • Add your Images in assets/Images folder
assets/Images/<YOUR_IMAGE>.png 
  • Create a Readme.md file of your name (Example .md) at Path .
contributors/Participants/<YOUR-NAME>.md
  • The content you have to add on your file is :-
---
Name: Your Name
Email:- Your Email
University/College Name:- Institution name
Github Username :- Your Username
Skills:- Your Skills (optional)

About yourself (Short Introduction of yourself)
---
  • Then add your files using
git add .
  • Commit
git commit -m "Added My Details"
  • Push
git push origin <YOUR-NAME> 
  • Create a New Pull Request (PR) from your Forked Repository

To Avoid the Conflict (While Syncing your fork repo)

For more information take reference of this article.

➡ 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