0

我已经尝试了所有可能的方法

git fetch origin
git fetch --all 

但是我在本地看不到任何远程分支。

C:\Jboss_WP_TN_MAVEN\tdhs_ebms_wp>git branch -r
  origin/feature/tdhs_ebms_wp_feature
4

1 回答 1

0

git remote -v如果您的遥控器设置正确,应该会告诉您。如果不是,请执行以下操作:git remote add origin git@github.com:someUser/someRepo.git

跟随它,git fetch以便您的客户知道远程更改。

git branch --remote应该列出您的客户已知的所有远程分支。要列出分支,您不应将分支名称附加到命令中。

于 2021-09-17T20:57:10.430 回答