2012-01-07 22:13:12 +00:00
|
|
|
[Gource](http://code.google.com/p/gource/) is an amazing animated
|
|
|
|
visualisation of a git repository.
|
|
|
|
|
|
|
|
Normally, gource shows files being added, removed, and changed in
|
|
|
|
the repository, and the user(s) making the changes. Of course it can be
|
|
|
|
used in this way in a repository using git-annex too; just run `gource`.
|
|
|
|
|
|
|
|
The other way to use gource with git-annex is to visualise the movement of
|
|
|
|
annexed file contents between repositories. In this view, the "users" are
|
|
|
|
repositories, and they move around the file contents that are being added
|
|
|
|
or removed from them with git-annex.
|
|
|
|
|
2012-01-08 01:46:32 +00:00
|
|
|
[[!img screenshot.jpg]]
|
|
|
|
|
2012-01-07 22:13:12 +00:00
|
|
|
To use gource this way, first go into the directory you want to visualize,
|
|
|
|
and use `git annex log` to make an input file for `gource`:
|
|
|
|
|
2012-01-19 23:10:25 +00:00
|
|
|
git annex log --gource | tee gource.log
|
2012-01-07 22:13:12 +00:00
|
|
|
sort gource.log | gource --log-format custom -
|
|
|
|
|
|
|
|
The `git annex log` can take a while, to speed it up you can use something
|
2012-01-19 23:10:25 +00:00
|
|
|
like `--after "4 months ago"` to limit how far back it goes.
|