Skip to content

Latest commit

 

History

History
39 lines (19 loc) · 985 Bytes

CONTRIBUTING.md

File metadata and controls

39 lines (19 loc) · 985 Bytes

Contribution Guide:

Your task is to the create a markdown file inside the participants folder and name it as your GitHub username. Example: JoeNeilson.md

Inside the file add contents as shown in the soumyaa1804.md file and then push the changes.

Make sure not to change any other file but yours.

Steps:

Register to Hacktoberfest website to make your pull request count. https://hacktoberfest.digitalocean.com/

Fork the repository and then clone it by running this command:

git clone https://github.com/<github username>/Hacktoberfest-IGDTUW.git

Add a remote to the original repository:

git remote add upstream https://github.com/ACM-IGDTUW/Hacktoberfest-IGDTUW

Create a branch:

git checkout -b <branch-name>

Make changes to the file.

Check status: git status

Stage all the changes: git add .

Commit the changes: git commit -m <commit message>

Push the branch to your remote repository: git push origin <branch name>

Create a Pull Request.