Gource
Gource copied to clipboard
Support bare git repositories
Raw git repositories are created by using git clone --mirror, and are preferable to normal git clones in my opinion because they include all pull requests and branches.
They're basically just the .git folder of a normal git clone, but as its own folder.
I also face that issue. In my case I wanted to use bare repositories (cloned with --bare
) to save file space by avoiding the files being extracted. I can clone with --no-checkout
but it would be cleaner to support those bare repositories.
I'm getting this message when trying to run gource
on a bare repository:
gource: directory not supported
Did anyone find a solution to this?
No solution but a hacky workaround is to just clone the repo somewhere else and use gource on that.
@wertercatt : your last sentence brought us to the idea to use it like this:
mkdir project-name
git clone --bare <URL> project-name/.git
gource project-name
seems to work :)