ec8d97d5c4
As described in bug 771290, the window got slightly larger each time gitg was run. This was due to the way we accidentally mixed APIs when saving/restoring the window size. To fix this, use GtkWindow methods when saving the window size. This is consistent with our prior use of GtkWindow methods to set the window size on startup. https://bugzilla.gnome.org/show_bug.cgi?id=771290 |
||
---|---|---|
contrib | ||
data | ||
gitg | ||
libgitg | ||
libgitg-ext | ||
osx | ||
plugins | ||
po | ||
tests | ||
vapi | ||
win32 | ||
.editorconfig | ||
.gitlab-ci.yml | ||
AUTHORS | ||
ChangeLog | ||
COPYING | ||
gitg.doap | ||
libgitg.map | ||
meson.build | ||
meson_options.txt | ||
meson_post_install.py | ||
NEWS | ||
org.gnome.gitgDevel.json | ||
PACKAGING | ||
README.md | ||
test.vala |
Gitg
gitg 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.
The latest version of gitg is 41.
- Website: https://wiki.gnome.org/Apps/Gitg
- Issues: https://gitlab.gnome.org/GNOME/gitg/issues
- Download: http://download.gnome.org/sources/gitg/
- Mailing list: http://mail.gnome.org/mailman/listinfo/gitg-list
Installing gitg
To install the latest version of gitg, make sure to download gitg-41.tar.xz from the download site. After downloading the following procedure installs gitg:
$ tar Jxf gitg-41.tar.xz
$ cd gitg-41
$ meson --prefix=/usr build
$ ninja -C build
$ sudo ninja -C build install
Building gitg from git
The gitg repository is hosted on gitlab.gnome.org. To build from git:
$ git clone https://gitlab.gnome.org/GNOME/gitg.git
$ cd gitg
$ meson --prefix=/usr build
$ ninja -C build
$ sudo ninja -C build install
Alternatively you can build using Flatpak with the org.gnome.gitgDevel.json manifest.
Using gitg
When 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.