Metadata-Version: 2.1
Name: git-code-review
Version: 0.1.0
Summary: Git Code Review
Home-page: https://github.com/ReverentEngineer/git-code-review
Author: Jeff Caffrey-Hill
Author-email: jeff@reverentengineer.com
License: UNKNOWN
Keywords: git,code,review,cli
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pyflake8 ; extra == 'dev'

# git-code-review

A code review tool built into the git objects.

# Usage

```
usage: git code-review list [--closed]
   or: git code-review open <name> <commit> <commit>
   or: git code-review close <name>
   or: git code-review view <name>
```

# List Code Reviews

To see open code reviews:
```
git code-review list
```

To see previous closed closed reviews:
```
git code-review list --closed
```

# Opening A Code Review

First, a code review author would run:
```
git code-review open <name> <first sha> <last sha>
```

It will then prompt the user for a code review message.

# Close A Code Review

After a code review is over, the code reviw author would run:
```
git code-review close <name>
```

# View A Code Review

 A code reviewer would run:
```
git code-review view <name>
```

The tool will iterate through all the diff hunks as well as comments. 
During each hunk or comment, a user will be prompted to (c)omment (s)skip or 
(q)uit.



