我在不同的项目中有很多git回复,我希望看到更多关于他们的发展的鸽子的看法。我目前只是进入个别回购,但必须有更容易的方式。我在团队工作(使用RSS)时使用了Flow多克,但这并不是我真正想要的。我需要一些鸽子的意见,在控制台中的git报告,而不是重复输入每个项目。(我目前在github/bitbucket中看到了鸽子视图,但我想在控制台或类似的地方看到它。)如何轻松预览多个git -repos?
试1:一些总结?
$ 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)与相关的问题,但不是关于我正在寻找的工具
发布于 2012-01-23 06:19:30
或者用你的每个回复作为遥控器进行一个回购,然后从所有人中提取,然后过滤你的git log --all --或者--用你的repos的多个子模块进行一个回购,然后执行一个git submodule foreach git log或类似的操作。
https://stackoverflow.com/questions/8965213
复制相似问题