gitg/README.md

44 lines
1.5 KiB
Markdown
Raw Normal View History

2018-11-04 22:55:08 +00:00
# Gitg
2018-11-04 23:04:23 +00:00
<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>
2018-11-04 22:55:08 +00:00
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.
2023-08-03 11:36:24 +00:00
The latest version of gitg is 44.
2018-11-04 22:55:08 +00:00
- Website: https://wiki.gnome.org/Apps/Gitg
- Issues: https://gitlab.gnome.org/GNOME/gitg/issues
- Download: https://download.gnome.org/sources/gitg/
- Contact: https://discourse.gnome.org/tag/gitg
- Translate: https://l10n.gnome.org/module/gitg/
2018-11-04 22:55:08 +00:00
## Installing gitg
2023-08-03 11:36:24 +00:00
To install the latest version of gitg, make sure to download gitg-44.tar.xz from the download site. After downloading the following procedure installs gitg:
2018-11-04 22:55:08 +00:00
```
2023-08-03 11:36:24 +00:00
$ tar Jxf gitg-44.tar.xz
$ cd gitg-44
2018-11-04 22:55:08 +00:00
$ meson --prefix=/usr build
$ ninja -C build
$ sudo ninja -C build install
2018-11-04 22:55:08 +00:00
```
## Building gitg from git
The gitg repository is hosted on gitlab.gnome.org. To build from git:
2018-11-04 22:55:08 +00:00
```
$ git clone https://gitlab.gnome.org/GNOME/gitg.git
2018-11-04 22:55:08 +00:00
$ cd gitg
$ meson --prefix=/usr build
$ ninja -C build
$ sudo ninja -C build install
2018-11-04 22:55:08 +00:00
```
2019-05-23 06:53:59 +00:00
Alternatively you can build using Flatpak with the org.gnome.gitgDevel.json manifest.
2018-11-04 22:55:08 +00:00
## 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.