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 GitHub repository.

Note: To Upload Project on GitHub please refer to this article How to Upload Project on GitHub from Android Studio?

Step to Create New Branch

Step 1: Firstly We will open our project in which we want to create a New Branch. Go to the bottom right side of Android Studio. Here we will find Git master as shown in the figure. We will click on it.   

Step 2: Then this will come as shown in the figure. Here we will click on New Branch.

Step 3: Then a new box will pop up. Here we will Type the name of New branch. Here, we have taken testing for showing. Then, click on Ok.

Step 4: Then we will make the required changes in the project and then Push the project on Github.

Step 5: Now, In Github, we can see that a new branch is showing.


Contact Us