Git - Browse remote repository

后端 未结 3 1715
鱼传尺愫
鱼传尺愫 2021-01-18 21:41

I have a small problem at work.

We commit all the different projects to different remote repositories and sometimes people get confused by the names they create at 4

3条回答
  •  滥情空心
    2021-01-18 22:21

    If you fetch all branches using git fetch --all then you can view all remote branches using:

    git branch -a | grep remote
    

提交回复
热议问题