Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/filiptronicek/gitpy

A Python wrapper for git
https://github.com/filiptronicek/gitpy

Last synced: about 1 month ago
JSON representation

A Python wrapper for git

Awesome Lists containing this project

README

        

# Gitpy
A Python wrapper for git

This tool can be used for:
* Creating automatic commits in Python
* Speeding up your workflow
* Keeping everything up to date on all devices with the repo

## Setup
`pip install gitpy`

## Sample usage
```python
from gitpy import commitAdd, push

commitAdd("File updates")
push()
```