可视化 github 上的 git 存储库
I have a repository on github and i want a tool that produces a visualization video like this:
Koha Library Software History Visualization
is there a step by step tutorial to make such a video in windows ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
gource wiki 提供了有关如何执行此操作的详细信息。
The gource wiki has good info on how to do it.
如果有人只想要一个衬垫复制粘贴,请使用这个(需要 ffmpeg 和 libx264):
If somebody wants just a one liner copy paste, use this (needs ffmpeg with libx264):
要在 Windows 中生成实际视频(使用 Gource),请查看 http: //code.google.com/p/gource/wiki/Videos。在 Gource on Windows 的旧 SO 帖子中运行了一个相关命令。此处的说明:http://nooshu.com/visualising-subversion-with-gource 展示如何为 svn 生成 gource 日志文件,然后 gource 可以回放该文件。 git 变体应该是类似的。请注意,最初的问题涉及古尔斯。
For generating the actual video in Windows (with Gource), check out the Windows section of http://code.google.com/p/gource/wiki/Videos. There is a related command run at an old SO post at Gource on Windows. The instructions here: http://nooshu.com/visualising-subversion-with-gource show how to generate a gource log file for svn, which gource can then play back. The git variation should be similar. Note that the original question concerned Gource.
文档中未解释的内容;在标准 Windows GIT 安装中,默认情况下,git 二进制文件的路径不会添加到 Windows PATH 环境变量中。相反,GIT 在 Windows 上使用它自己的命令提示符。因此,从 Windows 命令提示符运行 gource 将导致找不到 git。
要从标准 Windows 命令提示符启用 git,您需要将其添加到 PATH 环境变量中。
从 Windows 命令提示符中键入(其中 C:\Program Files (x86)\Git\bin 是计算机上 git 的路径):
Something not explained in the docs; In a standard Windows GIT install the path to the git binary is not added to windows PATH environment variable by default. Instead GIT uses it's own command-prompt on windows. Thus running gource from the windows command-prompt will result in git not being found.
To enable git from standard windows command-prompt you will need to add it to the PATH environment variable.
From the windows command-prompt type (where C:\Program Files (x86)\Git\bin is the path to git on your computer):
嗯,该视频是使用 Gource 创建的。它可以理解 Git 日志,并且有 Windows 版本。此外,此处还提供了有关使用它创建视频的 Wiki 文章。
Well, that video was created using Gource. It understands Git logs and there's a Windows version. Also, there's a Wiki write-up on creating videos with it here.