How to Create Pull Request on GitHub Without Using any IDE? Last Updated : 07 Jun, 2024 Summarize Comments Improve Suggest changes Share 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 How to Create Pull Request on GitHub Without Using any IDE? A annianni Follow Improve Article Tags : Git GitHub Technical Scripter 2020 Similar Reads Frontend Developer Interview Questions and Answers Frontend development is an important part of web applications, and it is used to build dynamic and user-friendly web applications with an interactive user interface (UI). Many companies are hiring skilled Frontend developers with expertise in HTML, CSS, JavaScript, and modern frameworks and librarie 15+ min read Types of Functional dependencies in DBMS In relational database management, functional dependency is a concept that specifies the relationship between two sets of attributes where one attribute determines the value of another attribute. It is denoted as X â Y, where the attribute set on the left side of the arrow, X is called Determinant, 6 min read Understanding TF-IDF (Term Frequency-Inverse Document Frequency) TF-IDF (Term Frequency-Inverse Document Frequency) is a statistical measure used in natural language processing and information retrieval to evaluate the importance of a word in a document relative to a collection of documents (corpus). Unlike simple word frequency, TF-IDF balances common and rare w 6 min read List Comprehension in Python List comprehension is a way to create lists using a concise syntax. It allows us to generate a new list by applying an expression to each item in an existing iterable (such as a list or range). This helps us to write cleaner, more readable code compared to traditional looping techniques.For example, 4 min read Git Tutorial Git is an essential tool for developers, enabling them to manage and track project changes. Whether you're working on a solo project or collaborating with a team, Git keeps everything organized and under control. This Git Tutorial, from beginner to advanced, will give you a complete understanding of 12 min read Mean, Median and Mode Mean, Median, and Mode are measures of the central tendency. These values are used to define the various parameters of the given data set. The measure of central tendency (Mean, Median, and Mode) gives useful insights about the data studied, these are used to study any type of data such as the avera 15+ min read Git Cheat Sheet Git Cheat Sheet is a comprehensive quick guide for learning Git concepts, from very basic to advanced levels. By this Git Cheat Sheet, our aim is to provide a handy reference tool for both beginners and experienced developers/DevOps engineers. This Git Cheat Sheet not only makes it easier for newcom 10 min read Stock Buy and Sell - Max one Transaction Allowed Given an array prices[] of length N, representing the prices of the stocks on different days, the task is to find the maximum profit possible by buying and selling the stocks on different days when at most one transaction is allowed. Here one transaction means 1 buy + 1 Sell.Note: Stock must be boug 8 min read 30 Days of SQL - From Basic to Advanced Level This basic to advanced SQL tutorial covers the entire SQL syllabus in a structured way and provides the best learning material and strategies to master complete SQL in 30 Days. We have laid out the complete SQL roadmap, and following this roadmap, you will learn all the concepts of SQL. All Importan 8 min read Data Scientist Roadmap - A Complete Guide [2025] Welcome to your comprehensive Data Science Roadmap! If youâve ever wondered, about âSteps or Path to Become a Data Scientistâ, youâre in the right place. This guide is perfect for Data Science for Beginners and seasoned professionals alike, covering everything from mastering Python for Data Science 8 min read Like