Creating New Branch on Github without using any IDE Last Updated : 20 Jun, 2024 Comments Improve Suggest changes Like Article Like Report 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 process of creating a new branch on GitHub without using any Integrated Development Environment (IDE). All you need is a terminal and a web browser. What is Branching?Branching is an essential feature in Git that allows developers to diverge from the main line of development and work on something new without disturbing the main project. Once the work on the branch is complete, it can be merged back into the main branch. This article will show you how to create and manage branches using Git and GitHub without the need for an IDE. Steps to Create a New BranchStep 1: Go to the file and click on the Edit button as shown in the below image. Step 2: Then make the required changes in the file and then go to the bottom and click on Create a new branch for this commit and start a pull request. Learn more about pull requests and then name your branch and click on Propose Changes and a new page will open. Step 3: Then go to the main page of your project by clicking on Code at top and check all branches by clicking on the button master. Here you will see your newly created branch. And after moving to that branch you can find the changes done by you. Step 4: If you find that you want to merge those changes into the master branch then click on Compare & pull request. Then Click on Create Pull Request. Step 5: Click on Merge Pull Request. Step 6: Click on Confirm merge and you have successfully merged your newly-created branch with your master branch. Comment More infoAdvertise with us Next Article Creating New Branch on Github without using any IDE A annianni Follow Improve Article Tags : Technical Scripter Web Technologies Git How To GitHub Technical Scripter 2020 +2 More Similar Reads How to Create Pull Request on GitHub Without Using any IDE? 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 2 min read How to Create a New Branch on Github using Pycharm? Git is an open-source version control system. It means that whenever a developer develops some project (like an app or website) or something, he/she can constantly update, Git is a version control system that lets you manage and keep track of your source code history. Letâs say you have a project, a 2 min read How to Create a New Branch on GitHub using Android Studio? Creating a new branch on GitHub using Android Studio can help your development workflow by allowing you to work on new features or fixes without affecting the main codebase. In this article, we will walk you through the steps to create a new branch directly from Android Studio and push it to your Gi 2 min read How to Create a New Branch in Git? Git is a powerful and widely used version control system that helps developers manage code changes across projects efficiently. One of the fundamental features of Git is branching, which allows developers to diverge from the main line of development and work on different tasks or features independen 4 min read How to Create a New Branch in Git and Push the Code? Branching in Git is a helpful feature for software developers working on a big team project. It allows the team members to work on different aspects of the software by creating a branch from the main branch. The main branch is not affected by the changes in the created branch until it is merged into 8 min read Like