├── .editorconfig ├── .github └── FUNDING.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── Readme.md ├── gpgit.sh ├── img ├── LICENSE ├── gpgit.png ├── gpgit_small.png └── screenshot.png └── legacy ├── gpgit.py └── requirements.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/Readme.md -------------------------------------------------------------------------------- /gpgit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/gpgit.sh -------------------------------------------------------------------------------- /img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/img/LICENSE -------------------------------------------------------------------------------- /img/gpgit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/img/gpgit.png -------------------------------------------------------------------------------- /img/gpgit_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/img/gpgit_small.png -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /legacy/gpgit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/legacy/gpgit.py -------------------------------------------------------------------------------- /legacy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicoHood/GPGit/HEAD/legacy/requirements.txt --------------------------------------------------------------------------------