Metadata-Version: 2.4
Name: git-clog
Version: 0.3.2
Summary: git-clog outputs the commit graph of the current Git repository and colorizes commit symbols by interpreting the first six commit hash digits as an RGB color value.
Home-page: https://github.com/IngoMeyer441/git-clog
Author: Ingo Meyer
Author-email: IJ_M@gmx.de
License: MIT
Keywords: git
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Version Control
Classifier: Topic :: Software Development :: Version Control :: Git
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
Requires-Python: ~=3.4
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Git colorlog

## Introduction

`git clog` outputs the commit graph of the current Git repository and colorizes commit symbols by interpreting the first
six commit hash digits as an RGB color value:

![git clog screenshot](https://raw.githubusercontent.com/IngoMeyer441/git-clog/master/screenshot.png)

Additionally, signed commits are displayed with a check mark (valid), cross mark (invalid), or a question mark
(unknown).

**Important note**: You need a [terminal with true color support](https://gist.github.com/XVilka/8346728).

## Installation and usage

`git clog` is [available on PyPI](https://pypi.org/project/git-clog/) and can be installed with `pip`:

```bash
python3 -m pip install git-clog
```

If you use Arch Linux or one of its derivatives, you can also install `git-clog` from the
[AUR](https://aur.archlinux.org/packages/git-clog/):

```bash
yay -S git-clog
```

After the installation, call

```bash
git clog
```

within a Git repository.
