gource

History visualization tools for version control systems? [closed]

送分小仙女□ 提交于 2019-12-20 08:27:19
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . Specifically, I'm looking for something that, given a single file, and an SVN history, will display insertions and deletions as a pretty animation. That said: I figure that a list of version control visualizers might be a useful resource. 回答1: http://code.google.com/p/gource/ looks very pretty 回答2: I am not sure

full clearcase history for gource

[亡魂溺海] 提交于 2019-12-07 23:22:20
问题 I have tried to get the full history of a clearcase vob to parse it and use it with gource to get a visual representation of the changes, but I do not find the right commands to get an easy log history to parse with clearcase2gource python script. I do not use UCM, there are no streams, just plain cleacase. With this command I get elements with @@ in the middle of a path: cleartool lshistory -fmt "Element: %n| Date: %d| User:%u| Operation: %e| Object:%[type]p| SimpleType: %m| OperationKind:

full clearcase history for gource

雨燕双飞 提交于 2019-12-06 10:50:16
I have tried to get the full history of a clearcase vob to parse it and use it with gource to get a visual representation of the changes, but I do not find the right commands to get an easy log history to parse with clearcase2gource python script. I do not use UCM, there are no streams, just plain cleacase. With this command I get elements with @@ in the middle of a path: cleartool lshistory -fmt "Element: %n| Date: %d| User:%u| Operation: %e| Object:%[type]p| SimpleType: %m| OperationKind: %o\n" -all /vobs/vob_name With this command I get elements like this (deleted at some point): Element:

Gource on Windows

流过昼夜 提交于 2019-12-03 01:12:23
问题 We're having problems on windows creating a video file from gource (gource). We can run gource and watch the video live but don't seem to be able to get any useful physical output. 回答1: gource -1024x768 --stop-position 1.0 --highlight-all-users --hide-filenames --seconds-per-day 5 --output-framerate 60 --output-ppm-stream output.ppm ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i output.ppm -vcodec wmv1 -r 60 -qscale 0 out.wmv The key was the image2pipe format which seems to extract all the

History visualization tools for version control systems? [closed]

可紊 提交于 2019-12-02 15:36:46
Specifically, I'm looking for something that, given a single file, and an SVN history, will display insertions and deletions as a pretty animation. That said: I figure that a list of version control visualizers might be a useful resource. http://code.google.com/p/gource/ looks very pretty VonC I am not sure about pretty, but codeswarm is certainly one of the most impressive "commit history visualization" tool I have ever seen. (source: infovis-wiki.net ) VonC In a more practical way, you may also consider SVN Time-Lapse View SVN Time-Lapse View is a cross-platform viewer that downloads all

Gource on Windows

心已入冬 提交于 2019-12-02 14:31:45
We're having problems on windows creating a video file from gource ( gource ). We can run gource and watch the video live but don't seem to be able to get any useful physical output. Chris Meek gource -1024x768 --stop-position 1.0 --highlight-all-users --hide-filenames --seconds-per-day 5 --output-framerate 60 --output-ppm-stream output.ppm ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i output.ppm -vcodec wmv1 -r 60 -qscale 0 out.wmv The key was the image2pipe format which seems to extract all the frames from the ppm rather than treating it as an individual image. I made gource video on windows