We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a98d0be commit 41ccb62Copy full SHA for 41ccb62
1 file changed
src/content/docs/programming_stuff/Git/see-animated-git-history.md
@@ -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
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
23
+cd ~/Downloads/gource-0.55/ &&
24
+./configure &&
25
+make &&
26
+make install
27
0 commit comments