How to Create Pull Request on GitHub Without Using any IDE? Last Updated : 07 Jun, 2024 Comments Improve Suggest changes Like Article Like Report Creating a pull request (PR) on GitHub is an important part of collaborative software development. It allows you to propose changes to a project, which can then be reviewed and merged by other contributors. You don't need an Integrated Development Environment (IDE) to create a pull request. In this article, we will see how to Create Pull Request on GitHub without Using any IDE. Steps to Create Pull Request on GitHub Step 1: Go to the page on Github on which you want to create a pull request or for now Go to the above-given project and try to create Pull Request. Then click on the edit button as shown in the figure. Then make the changes that you want to make. Create Pull RequestStep 2: Then Go to the bottom of the page and give the commit message(like the changes you have done) and then Click On Propose Changes. Make changes in repositoryStep 3: Then a new Web Page will Open. Click On Create Pull Request. Create pull requestStep 4: Go below and Again Click On Create Pull Request. Confirm Create Pull Request And then You Will See (This Branch has no conflicts with the base Branch) and Yes, You have Created Your First Pull Request Without using any IDE. How to Create Pull Request on GitHub without Using any IDE? Comment More infoAdvertise with us Next Article Creating New Branch on Github without using any IDE A annianni Follow Improve Article Tags : Git GitHub Technical Scripter 2020 Similar Reads How To Create a Pull Request in GitHub? Pull requests are an important part of collaborative software development on GitHub. They allow developers to propose changes, review code, and discuss improvements before integrating new code into a project. This guide will walk you through the process of creating a pull request in GitHub, ensuring 3 min read How to Create a Pull Request on GitHub using Android Studio? Creating a pull request is an important part of collaborating on projects hosted on GitHub. It allows you to propose changes to a repository, enabling others to review, discuss, and merge your changes. Hereâs a step-by-step guide on how to create a pull request on GitHub using Android Studio. Steps 2 min read Creating New Branch on Github without using any IDE GitHub is a powerful platform for version control and collaboration, widely used by developers around the world. Creating a new branch is a common task that allows you to work on different features or fixes separately without affecting the main codebase. In this guide, we will walk you through the p 2 min read How to create a comment in a pull request using octokit? Introduction: The Octokit client can be used to send requests to GitHub's REST API and queries to GitHub's GraphQL API. The octokit package integrates the three main Octokit libraries:API client (REST API requests, GraphQL API queries, Authentication)App client (GitHub App & installations, Webho 4 min read How To Create A Merge Request In GitLab? GitLab is a popular platform for version control, CI/CD, and DevOps lifecycle management. One of the core features of GitLab is the merge request (also known as a pull request in other version control platforms like GitHub). In this article, we will walk you through the process of creating a merge r 5 min read How to Authenticate Git Push with Github Using a Token? Git is a powerful version control system used by developers to track changes in their codebase. GitHub, a platform built around Git, allows developers to collaborate on projects and manage repositories.For years, developers have been using their GitHub username and password to authenticate Git opera 4 min read Like