Metadata-Version: 2.1
Name: pygitter
Version: 0.0.6
Summary: A python wrapper for git repositories
Home-page: https://github.com/minamaged113/pygitter
Author: Mina Ghobrial
Author-email: minamaged113@gmail.com
Project-URL: Bug Tracker, https://github.com/minamaged113/pygitter/issues
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: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# PyGitter
Python git repository interface

## Usage

This library provides interfaces to interact with git repositories.

```python
r = Repo()              # to be executed in the directory that has local repo
# or
r = Repo(path=<PATH>)   # where path is a directory that contains `.git` dir
# or
r = Repo(remote=<URL>)  # URL, either HTTPS or SSH, you can also add `path` to specify dir to clone into.
```

## Working with the source code

To work with the source code, check the `CONTRIBUTE.md`
