{"id":23209812,"url":"https://github.com/suraj-kumar00/getting-started-with-git-github","last_synced_at":"2025-08-19T04:32:36.988Z","repository":{"id":180933499,"uuid":"604607541","full_name":"Suraj-kumar00/Getting-started-with-Git-Github","owner":"Suraj-kumar00","description":"In this Repository, you'll learn about Git and GitHub. You'll start your open-source journey by contributing to this repository. All the resources are provided to get started.","archived":false,"fork":false,"pushed_at":"2024-06-20T18:00:17.000Z","size":16757,"stargazers_count":11,"open_issues_count":1,"forks_count":11,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-06-21T11:52:38.175Z","etag":null,"topics":["git","github","open-source","opensource-projects"],"latest_commit_sha":null,"homepage":"https://surajk00.hashnode.dev/getting-to-know-git-and-github-your-codes-best-friends","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Suraj-kumar00.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-21T12:22:17.000Z","updated_at":"2024-06-20T18:00:20.000Z","dependencies_parsed_at":"2023-10-16T04:30:47.543Z","dependency_job_id":"80a5290d-0d39-42c3-8b34-aad4c17c4476","html_url":"https://github.com/Suraj-kumar00/Getting-started-with-Git-Github","commit_stats":null,"previous_names":["suraj-kumar00/getting-started-with-git-github"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Suraj-kumar00%2FGetting-started-with-Git-Github","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Suraj-kumar00%2FGetting-started-with-Git-Github/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Suraj-kumar00%2FGetting-started-with-Git-Github/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Suraj-kumar00%2FGetting-started-with-Git-Github/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Suraj-kumar00","download_url":"https://codeload.github.com/Suraj-kumar00/Getting-started-with-Git-Github/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230319015,"owners_count":18207893,"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":["git","github","open-source","opensource-projects"],"created_at":"2024-12-18T18:20:34.065Z","updated_at":"2024-12-18T18:20:34.734Z","avatar_url":"https://github.com/Suraj-kumar00.png","language":null,"readme":"# Welcome to Git and Github Beginner Friendly Guide 👋\n\n---\n\n## [Getting to Know Git and GitHub: _Your Code's Best Friends_](https://surajk00.hashnode.dev/getting-to-know-git-and-github-your-codes-best-friends#heading-what-is-git)\n\n![Git and Github](./Assets/git_github_banner.png)\n\n---\n\n# Getting-Started\n\n\u003e ## ⚠️Prerequisites\n\u003e\n\u003e \u003e - Before getting into it, make sure you have read this [blog](https://surajk00.hashnode.dev/getting-to-know-git-and-github-your-codes-best-friends#heading-what-is-git)\n\u003e \u003e - Also, make sure to read the [CONTRIBUTING guidelines](https://github.com/Suraj-kumar00/Getting-started-with-Git-Github/blob/main/CONTRIBUTING.md)\n\n---\n\n# How to Be a Participant.\n\n\u003e \u0026#8544;. First star ⭐️ the [repo](https://github.com/Suraj-kumar00/Getting-started-with-Git-Github).\n\n\u003e \u0026#8545;. [Fork](https://github.com/Suraj-kumar00/Getting-started-with-Git-Github/fork) the project.\n\n\u003e \u0026#8546;. Clone the project to run on your local machine using the following command:\n\n```bash\ngit clone URL of forked repo\n```\n\n\u003e \u0026#8547;. Get into the root directory if you are not\n\n```sh\ncd Getting-started-with-Git-Github\n```\n\n\u003e \u0026#8548; . Create your branch.\n\n```sh\ngit checkout -b \u003cyour_github_username\u003e\n\nexample: git checkout -b suraj/contributor\n```\n\n\u003e \u0026#8549;. Move to Contributors directory.\n\n```sh\ncd Contributors\n```\n\n\u003e \u0026#8550;. Create a directory.\n\n```sh\nmkdir your_github_username\n```\n\n\u003e \u0026#8551;. Create a markdown file.\n\n```sh\ntouch your_github_username/your_name.md\n```\n\n\u003e \u0026#8552;. Add your details in the markdown file and save it.\n\n```sh\n---\nName: John Doe\nGitHub_username: JohnD-00\nLinkedin/Twitter: Link_of_Social_post_where_you_share_your_learning\n---\n```\n\n\u003e \u0026#8553;. Stage your changes\n\n```bash\ngit add filename\nor\ngit add . # the '.' means here to add all the files\n```\n\n\u003e \u0026#8554;. Commit your changes\n\n```sh\ngit commit -m \"your-commit-message\"\n```\n\n\u003e \u0026#8555;.Push your changes to your branch\n\n```\ngit push origin \"your_branch_name\"\n```\n\n\u003e \u0026#8556;. Create a [pull request](https://github.com/Suraj-kumar00/Getting-started-with-Git-Github/compare) so, that we can merge it.\n\n\u003e XIII. Share your learning with this repo on social.\n\n```\nhttps://github.com/Suraj-kumar00/Getting-started-with-Git-Github\n```\n\n---\n\n## What will you gain?\n\n- Basic of the Git and Github.\n- You start your open-source journey by contributing to this repository.\n\n---\n\n## Contributors ✨\n\nThank you so much for your time, effort, and dedication! 😄\n\n\u003ca href=\"https://github.com/Suraj-kumar00/Getting-started-with-Git-Github/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=Suraj-kumar00/Getting-started-with-Git-Github\" /\u003e\n\u003c/a\u003e\n\n_View the list of all contributors [here](https://github.com/Suraj-kumar00/Getting-started-with-Git-Github/graphs/contributors)._\n\n---\n\n## Star History\n\n[![Star History Chart](https://api.star-history.com/svg?repos=Suraj-kumar00/Getting-started-with-Git-Github\u0026type=Date)](https://star-history.com/#Suraj-kumar00/Getting-started-with-Git-Github\u0026Date)\n\n---\n\n## Resources\n\n- Git-Cheat-Sheet [pdf](https://github.com/Suraj-kumar00/Getting-started-with-Git-Github/blob/main/Resources/git-cheat-sheet-education.pdf)\n- Git and Github (_Handwritten_) [pdf](https://github.com/Suraj-kumar00/Getting-started-with-Git-Github/blob/main/Resources/Git%20And%20Github%20Notes.pdf)\n- You can learn more about open source [here](https://surajk00.hashnode.dev/what-is-open-source-beginners-guide-how-to-get-started)\n- How Git Works: Explained in 4 Minutes(ByteByteGo) [here](https://www.youtube.com/watch?v=e9lnsKot_SQ\u0026t=51s)\n\n---\n\n## License 📝\n\nThis repo is licensed under the terms of the MIT License. check out [LICENSE](https://github.com/Suraj-kumar00/Getting-started-with-Git-Github/blob/main/LICENSE.txt) for details.\n\n---\n\n## Support 🌱\n\n_We would love to have you, feel free to open issues and pull requests, and Don't forget to leave a star⭐_\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuraj-kumar00%2Fgetting-started-with-git-github","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuraj-kumar00%2Fgetting-started-with-git-github","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuraj-kumar00%2Fgetting-started-with-git-github/lists"}