https://github.com/filiptronicek/gitpy
A Python wrapper for git
https://github.com/filiptronicek/gitpy
Last synced: 4 months ago
JSON representation
A Python wrapper for git
- Host: GitHub
- URL: https://github.com/filiptronicek/gitpy
- Owner: filiptronicek
- License: mit
- Created: 2020-06-22T13:18:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-06T13:53:48.000Z (almost 5 years ago)
- Last Synced: 2025-01-25T04:45:10.430Z (5 months ago)
- Language: Python
- Homepage: https://pypi.org/project/gitpy/
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Gitpy
A Python wrapper for gitThis 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, pushcommitAdd("File updates")
push()
```