Skip to content

Commit 41ccb62

Browse files
feat: add initial gource installation guide
1 parent a98d0be commit 41ccb62

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: animated history for a git repo
3+
description: A guide to install Gource on linux which show us an animated history of a Git repo
4+
---
5+
6+
## Install Dependencies
7+
8+
```sh
9+
sudo apt install libsdl2-dev libsdl2-image-dev libpcre2-dev libfreetype6-dev libglew-dev libglm-dev libboost-filesystem-dev libpng-dev libtinyxml-dev
10+
11+
```
12+
13+
## Download from Source and extract
14+
15+
```sh
16+
curl -L -o ~/Downloads/gource.tar.gz https://github.com/acaudwell/Gource/releases/download/gource-0.55/gource-0.55.tar.gz &&
17+
tar -xvf ~/Downloads/gource.tar.gz
18+
```
19+
20+
## Compile
21+
22+
```sh
23+
cd ~/Downloads/gource-0.55/ &&
24+
./configure &&
25+
make &&
26+
make install
27+
```

0 commit comments

Comments
 (0)