Skip to content Skip to sidebar Skip to footer

Refresh Remote Git Branches In Android Studio

There is a new branch in the remote repository, but it does not appear in the git branches in android studio. How can I refresh that list to show the new branch? I have tried git b

Solution 1:

In your Android Studio menu bar, click on VCS > Git > Fetch

Check the image:

Git Fetch in Android Studio

Solution 2:

You can try using VCS (from menu) then click on Git and then on Fetch. Alternatively, you can use git fetch --all

Solution 3:

Try using git fetch or use git fetch --all

Post a Comment for "Refresh Remote Git Branches In Android Studio"