{"id":16084341,"url":"https://github.com/avidrucker/how-to-make-a-pull-request","last_synced_at":"2025-04-05T13:27:18.453Z","repository":{"id":208714834,"uuid":"716677500","full_name":"avidrucker/how-to-make-a-pull-request","owner":"avidrucker","description":null,"archived":false,"fork":false,"pushed_at":"2023-11-22T22:31:56.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-11T09:18:31.008Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/avidrucker.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,"governance":null}},"created_at":"2023-11-09T16:29:50.000Z","updated_at":"2023-11-09T16:29:51.000Z","dependencies_parsed_at":"2023-11-22T23:25:02.393Z","dependency_job_id":null,"html_url":"https://github.com/avidrucker/how-to-make-a-pull-request","commit_stats":null,"previous_names":["avidrucker/how-to-make-a-pull-request"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avidrucker%2Fhow-to-make-a-pull-request","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avidrucker%2Fhow-to-make-a-pull-request/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avidrucker%2Fhow-to-make-a-pull-request/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avidrucker%2Fhow-to-make-a-pull-request/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/avidrucker","download_url":"https://codeload.github.com/avidrucker/how-to-make-a-pull-request/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247341407,"owners_count":20923438,"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":[],"created_at":"2024-10-09T12:45:49.725Z","updated_at":"2025-04-05T13:27:18.244Z","avatar_url":"https://github.com/avidrucker.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# How to Open a Pull Request on GitHub\n\n\u003e Note: Pull requests can technically be done without knowledge of Git, especially for small typo fixes, etc. that can be done completely in the browser. For bigger (code) changes, I recommend first learning [how to Git](https://github.com/avidrucker/how-to-git) on your computer locally.\n\n## 1. Introduction to Pull Requests\n- **What is a Pull Request?** A pull request (PR) is a method to submit contributions to a project on GitHub. It's how you propose changes and request that someone reviews and pulls your contribution into their branch.\n- **Purpose:** Pull requests are central to collaboration in GitHub. They allow you to share your changes, discuss improvements, and collaborate with others.\n\n## 2. Find a Project to Contribute To\n- Explore GitHub to find a project you're interested in.\n- Look for projects with a `CONTRIBUTING.md` file, as it often provides guidelines on how to contribute.\n\n## 3. Fork the Repository\n- **Forking:** Click the \"Fork\" button at the top-right of the repository page to create a copy of the project in your account.\n- This allows you to freely experiment with changes without affecting the original project.\n\n## 4. Clone the Forked Repository\n- **Cloning:** Clone the forked repository to your local machine.\n  ```bash\n  git clone [URL of the forked repository]\n  ```\n- This step requires Git installed on your computer. See [How to Git](https://github.com/avidrucker/how-to-git) for instructions on how to install Git.\n\n## 5. Create a New Branch\n- Navigate into the cloned repository on your machine.\n- Create a new branch for your changes:\n  ```bash\n  git checkout -b [new-branch-name]\n  ```\n- Keeping your changes in a separate branch allows for easier management and isolation of your contributions.\n\n## 6. Make Your Changes\n- Edit, add, or delete files in your local repository as necessary.\n- Ensure your changes are aligned with the project's contribution guidelines.\n\n## 7. Commit and Push Your Changes\n- Commit your changes locally:\n  ```bash\n  git commit -m \"Add a descriptive message about your changes\"\n  ```\n- Push the changes to your forked repository on GitHub:\n  ```bash\n  git push origin [new-branch-name]\n  ```\n\n## 8. Open a Pull Request\n- Go to your forked repository on GitHub.\n- Click on \"Pull requests\" \u003e \"New pull request.\"\n- Select your branch.\n- Click \"Create pull request.\"\n- Add a title and description for your pull request.\n- If the repository has a template for pull requests, fill it out to provide the necessary information.\n\n## 9. Review and Submit\n- Review your changes to ensure they are correct and complete.\n- Submit the pull request.\n\n## 10. Collaborate and Update\n- Maintainers of the original repository might request changes. Be ready to collaborate.\n- You can make additional changes in your branch and push them; they'll automatically show up in your pull request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favidrucker%2Fhow-to-make-a-pull-request","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favidrucker%2Fhow-to-make-a-pull-request","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favidrucker%2Fhow-to-make-a-pull-request/lists"}