首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何轻松预览多个git -repos?

如何轻松预览多个git -repos?
EN

Stack Overflow用户
提问于 2012-01-22 22:14:38
回答 1查看 146关注 0票数 3

我在不同的项目中有很多git回复,我希望看到更多关于他们的发展的鸽子的看法。我目前只是进入个别回购,但必须有更容易的方式。我在团队工作(使用RSS)时使用了Flow多克,但这并不是我真正想要的。我需要一些鸽子的意见,在控制台中的git报告,而不是重复输入每个项目。(我目前在github/bitbucket中看到了鸽子视图,但我想在控制台或类似的地方看到它。)如何轻松预览多个git -repos?

试1:一些总结?

代码语言:javascript
复制
$ find . -iname ".git"     # find me all git -repos
...
$  find . -iname ".git"|wc # shows the amount of repos
     40      40     434
$ How can I execute here a command to preview the developments in each repo?
$ They may be related projects so it would be extremely useful to see where
$ things are going!
$ 
$ find . -iname ".git" -exec cd '{}' & cd .. & git log $PWD|head -n7 \; # err
$ Some tool to do this kind of erroneous things? 
$ (there is some small mistake but it is just sketching my idea about pigeon view)
$ (also some sort of graphical connection diagram between repos would be useful)

相关的问题,但不是关于我正在寻找的工具

  1. Using git for a project with many, many repos
  2. Is anyone really using git super/subprojects?
  3. Git: how to avoid repetitive committing with sub-sub-sub... Git -repos?
EN

回答 1

Stack Overflow用户

发布于 2012-01-23 06:19:30

或者用你的每个回复作为遥控器进行一个回购,然后从所有人中提取,然后过滤你的git log --all --或者--用你的repos的多个子模块进行一个回购,然后执行一个git submodule foreach git log或类似的操作。

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/8965213

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档