码迷,mamicode.com
首页 > 其他好文 > 详细

列出远程git的全部分支

时间:2016-09-06 13:41:02      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

列出全部分支

git ls-remote --heads your.git | awk ‘sub(/refs\/heads\//,""){print $2}‘

其中awk中sub替换 refs/heads/ 为空,然后显示第二列。

 

列出全部tag

git ls-remote --tags your.git | awk ‘sub(/refs\/tags\//,""){print $2}‘

 

列出全部

git ls-remote your.git

 

列出远程git的全部分支

标签:

原文地址:http://www.cnblogs.com/Bob-wei/p/5845347.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!