Metadata-Version: 2.1
Name: guet
Version: 2.3.1
Summary: Enable contribution tracking when pair programming
Home-page: https://github.com/chiptopher/guet
License: UNKNOWN
Keywords: pair programming
Platform: UNKNOWN
Description-Content-Type: text/markdown

# guet
> enable contribution tracking when pair programming with guet

Pair programming is integral part of many software development lifecycles. When pairing, you may want to track both pairs contributions. Using **guet** allows for that functionality.

[![Actions Status](https://github.com/chiptopher/guet/workflows/guetci/badge.svg)](https://github.com/chiptopher/guet/workflows/guetci/badge.svg)

## Installation
**guet** can be installed from [pypi](https://pypi.org/project/guet/):

```
pip3 install guet
```

### Upgrading
The version of **guet** installed can be upgraded using the following command:
```
pip3 install guet --upgrade
```

#### Development Version
The most recent develoment version can be downloaded and installed as well:

```
git clone https://github.com/chiptopher/guet.git
python setup.py install
```


## Usage

For full usage details, using `guet` will print out all commands and a description of what they do. Some of the ones most basic to the workflow are:

#### Initialization
`guet init` will initiailze the **guet** config files for the system.

#### Start
`guet start` will start **guet** for the reposotry at the current directory. 

#### Resgister Committers
`guet add <initials> <"Name"> <email>` will register an available committer with the given initials, name and email.

#### Set Committers
`guet set [<initials>, ...]` will register the committers with the given initials to have their names attached to all
following commits.

## Changelog

To see the version releases, changes between them, and upgrade guides, check the [change log](./.github/CHANGELOG.md)

## Contribution

Guidelines for contributions can be found [here](./.github/CONTRIBUTING.md). Feel free to 
[open an issue](https://github.com/chiptopher/guet/issues) if there are problems with **guet** you want to submit a
feature request.


