Walied Yassen
Walied Yassen

Reputation: 23

Gource with github

Well, recently, I was doing a project on GitHub and I have done good progress in it so far, so I wanted to make a visualization for change log, there is more than 2 people in the project, so I made my researches and found there is something called Gource, I could not find good tutorials about using it with git repositories, I have tried YouTube videos etc. But I came up with nothing, so hopefully you guys can help with this, assuming the repository path is: https://github.com/xxxx/yyyy

Upvotes: 2

Views: 1177

Answers (1)

Sébastien Dawans
Sébastien Dawans

Reputation: 4626

Gource is run locally on your machine and is meant to analyse the history of local repositories.

Therefore, you need to clone the repo:

git clone https://github.com/xxxx/yyyy.git

Then run gource on the root folder:

gource yyyy

Upvotes: 8

Related Questions