{"id":24488503,"url":"https://github.com/lil-projects/opensource-contribution","last_synced_at":"2026-01-02T06:34:29.828Z","repository":{"id":50458835,"uuid":"300949139","full_name":"Lil-Projects/OpenSource-Contribution","owner":"Lil-Projects","description":"🎯 Help beginners to contribute to Open Source projects","archived":false,"fork":false,"pushed_at":"2022-07-29T09:21:02.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-21T16:19:47.149Z","etag":null,"topics":["contributing","contributions-welcome","first-contributions","first-pull-request","hacktoberfest","hactoberfest2020","opensource-contribution","opensource-contributions","tutorial"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Lil-Projects.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-10-03T18:27:34.000Z","updated_at":"2022-02-18T14:35:49.000Z","dependencies_parsed_at":"2022-09-24T10:20:48.776Z","dependency_job_id":null,"html_url":"https://github.com/Lil-Projects/OpenSource-Contribution","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lil-Projects%2FOpenSource-Contribution","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lil-Projects%2FOpenSource-Contribution/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lil-Projects%2FOpenSource-Contribution/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lil-Projects%2FOpenSource-Contribution/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lil-Projects","download_url":"https://codeload.github.com/Lil-Projects/OpenSource-Contribution/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243663577,"owners_count":20327306,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["contributing","contributions-welcome","first-contributions","first-pull-request","hacktoberfest","hactoberfest2020","opensource-contribution","opensource-contributions","tutorial"],"created_at":"2025-01-21T16:19:50.253Z","updated_at":"2026-01-02T06:34:29.796Z","avatar_url":"https://github.com/Lil-Projects.png","language":null,"readme":"# opensource-contribution\n\n\n## How to Contribute?\n\n\u003cimg align=\"right\" width=\"300\" src=\"https://media.discordapp.net/attachments/716523839634407436/762003277553336360/1.png\" alt=\"fork this repository\" /\u003e\n\n#### If you don't have git on your machine, [install it](https://help.github.com/articles/set-up-git/).\n\n## Fork this repository\n\nFork this repository by clicking on the fork button \nThis will create a copy of this repository in your account.\n\n## Clone the repository\n\n\u003cimg align=\"right\" width=\"300\" src=\"https://media.discordapp.net/attachments/716523839634407436/762005779947323412/aaaaa.PNG\" alt=\"clone this repository\" /\u003e\n\nopen the forked repository, click on the code button and then click the _copy to clipboard_ icon.\n\nOpen a terminal and run the following git command:\n\n```\ngit clone \"url you just copied\"\n```\n\n\u003cimg align=\"right\" width=\"300\" src=\"https://media.discordapp.net/attachments/716523839634407436/762003278317355038/2.png\" alt=\"copy URL to clipboard\" /\u003e\n\nFor example:\n\n```\ngit clone https://github.com/Your-Username/opensource-contribution.git\n```\n\n## Create a branch\n\nChange to the repository directory on your computer (if you are not already there):\n\n```\ncd opensource-contribution\n```\n\nNow create a branch using the `git checkout` command:\n\n```\ngit checkout -b Your-Branch-Name\n```\n\nFor example:\n\n```\ngit checkout -b add-Henzo-Dev\n```\n\n## Make necessary changes and commit those changes\n\nNow open `Contributors.md` file in a text editor, add your name to it.\n\n\u003cimg align=\"right\" width=\"450\" src=\"https://raw.githubusercontent.com/firstcontributions/first-contributions/master/assets/git-status.png\" alt=\"git status\" /\u003e\n\nAdd those changes to the branch you just created using the `git add` command:\n\n```\ngit add Contributors.md\n```\n\nNow commit those changes using the `git commit` command:\n\n```\ngit commit -m \"Add \u003cyour-name\u003e to Contributors list\"\n```\n\nreplacing `\u003cyour-name\u003e` with your name.\n\n## Push changes to GitHub\n\nPush your changes using the command `git push`:\n\n```\ngit push origin \u003cadd-your-branch-name\u003e\n```\n\nreplacing `\u003cadd-your-branch-name\u003e` with the name of the branch you created earlier.\n\n## Submit your changes for review\n\nIf you go to your repository on GitHub, you'll see a `Compare \u0026 pull request` button. Click on that button.\n\n\u003cimg style=\"float: right;\" src=\"https://media.discordapp.net/attachments/716523839634407436/762003279882092584/3.png\" alt=\"create a pull request\" /\u003e\n\nNow submit the pull request.\n\n\u003cimg style=\"float: right;\" src=\"https://media.discordapp.net/attachments/716523839634407436/762003285455405166/4.png\" alt=\"submit pull request\" /\u003e\n\nSoon I'll be merging all your changes into the master branch of this project. You will get a notification email once the changes have been merged.\n\n## Where to go from here?\n\nCongrats! You just completed the standard _fork -\u003e clone -\u003e edit -\u003e pull request_ workflow that you'll encounter often as a contributor!\n\nCelebrate your contribution and share it with your friends and followers , also with who are participating in hacktoberfest .\n\n\u003ch3\u003eJoin Our \u003ca href=\"https://skidee.me/discord\" target=\"_blank\"\u003e\u003cimg align=\"center\" src=\"https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/discord.svg\" alt=\"NerdGang\" height=\"30\" width=\"30\" /\u003e Discord\u003c/a\u003e \u003c/h3\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flil-projects%2Fopensource-contribution","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flil-projects%2Fopensource-contribution","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flil-projects%2Fopensource-contribution/lists"}