标签: android git android-studio refresh remote-branch
远程存储库中有一个新分支,但它不会出现在android studio的git分支中。如何刷新该列表以显示新分支?
我试过git branch -r 但是新的分支没有显示在列表中。
git branch -r
答案 0 :(得分:50)
在Android Studio菜单栏中,点击VCS > Git > Fetch
VCS > Git > Fetch
检查图像:
答案 1 :(得分:3)
您可以尝试使用VCS (from menu),然后点击Git,然后点击Fetch。 或者,您可以使用git fetch --all
VCS (from menu)
Git
Fetch
git fetch --all
答案 2 :(得分:2)
尝试使用git fetch或使用git fetch --all