Git - Browse remote repository

2020-04-07 04:32发布

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 in the morning high on caffeine.

So my question is:

Is there a way to browse remote repositories to list all the branches?

Any help is greatly appreciated!

标签: git
3条回答
够拽才男人
2楼-- · 2020-04-07 05:05

git branch -a will list all branches, local and remote tracking.

查看更多
何必那么认真
3楼-- · 2020-04-07 05:14

To list only remote branches, first fetch (to ensure you have a local reference to them all), then list them:

git fetch
git branch -r

You may wish to, after fetching, do a git remote prune <remotename> (where <remotename> is the name of your remote—usually origin) to remove obsolete local references to remote branches that have been deleted.

The only way to directly “browse” a remote repository is to log into the server it resides on and do so (or setup gitweb or similar). Git is centered around the idea that your local copy has everything the remote does.

查看更多
甜甜的少女心
4楼-- · 2020-04-07 05:24

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

git branch -a | grep remote
查看更多
登录 后发表回答