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 branch -r
but new branch is not showing in the list.
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 branch -r
but new branch is not showing in the list.
You can try using
VCS (from menu)
then click onGit
and then onFetch
. Alternatively, you can usegit fetch --all
In your Android Studio menu bar, click on
VCS > Git > Fetch
Check the image:
Try using git fetch or use
git fetch --all