• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

contrib/H25-Jul-2019-1,7371,266

data/H25-Jul-2019-648626

gitg/H25-Jul-2019-17,88615,000

libgitg/H25-Jul-2019-15,15112,437

libgitg-ext/H25-Jul-2019-1,7551,481

osx/H25-Jul-2019-2,4381,933

plugins/H25-Jul-2019-930761

po/H25-Jul-2019-89,91671,433

tests/H25-Jul-2019-3,1262,424

vapi/H25-Jul-2019-8,8748,218

win32/H25-Jul-2019-669610

AUTHORSH A D25-Jul-2019142 74

COPYINGH A D25-Jul-201917.6 KiB341281

Disable-cached-hunks.patchH A D25-Jul-2019679 2620

NEWSH A D25-Jul-201918.9 KiB646523

PACKAGINGH A D25-Jul-20194 KiB11290

README.mdH A D25-Jul-20191.5 KiB4329

gitg.doapH A D25-Jul-20191.8 KiB4740

libgitg.mapH A D25-Jul-201932 76

meson.buildH A D03-May-20226.3 KiB221181

meson_post_install.pyH A D25-Jul-20191.1 KiB3423

org.gnome.gitgDevel.jsonH A D25-Jul-20195.2 KiB183182

test.valaH A D25-Jul-2019334 169

README.md

1# Gitg
2
3<a href="https://flathub.org/apps/details/org.gnome.gitg"><img height="51" alt="Download on Flathub" src="https://flathub.org/assets/badges/flathub-badge-en.svg"/> </a>
4
5gitg is a graphical user interface for git. It aims at being a small, fast and convenient tool to visualize the history of git repositories.  Besides visualization, gitg also provides several utilities to manage your repository and commit your work.
6
7The latest version of gitg is 3.32.1.
8
9- Website:      https://wiki.gnome.org/Apps/Gitg
10- Issues:       https://gitlab.gnome.org/GNOME/gitg/issues
11- Download:     http://download.gnome.org/sources/gitg/
12- Mailing list: http://mail.gnome.org/mailman/listinfo/gitg-list
13
14## Installing gitg
15
16To install the latest version of gitg, make sure to download gitg-3.32.1.tar.xz from the download site. After downloading the following procedure installs gitg:
17
18```
19$ tar Jxf gitg-3.32.1.tar.xz
20$ cd gitg-3.32.1
21$ meson --prefix=/usr build
22$ ninja -C build
23$ sudo ninja -C build install
24```
25
26## Building gitg from git
27
28The gitg repository is hosted on git.gnome.org. To build from git:
29
30```
31$ git clone http://gitlab.gnome.org/GNOME/gitg.git
32$ cd gitg
33$ meson --prefix=/usr build
34$ ninja -C build
35$ sudo ninja -C install
36```
37
38Alternatively you can build using Flatpak with the org.gnome.gitgDevel.json manifest.
39
40## Using gitg
41
42When gitg is installed, you can run gitg from the GNOME menu, or from a terminal by issueing: 'gitg'. Type 'gitg --help' to show the options you can specify on the command line.
43