├── .gitignore ├── LICENSE ├── README.rst ├── fakegit ├── __init__.py ├── args.py ├── docs.py ├── error.py ├── gitconf.py ├── github.py └── main.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfashi/FakeGit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfashi/FakeGit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfashi/FakeGit/HEAD/README.rst -------------------------------------------------------------------------------- /fakegit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfashi/FakeGit/HEAD/fakegit/__init__.py -------------------------------------------------------------------------------- /fakegit/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfashi/FakeGit/HEAD/fakegit/args.py -------------------------------------------------------------------------------- /fakegit/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfashi/FakeGit/HEAD/fakegit/docs.py -------------------------------------------------------------------------------- /fakegit/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfashi/FakeGit/HEAD/fakegit/error.py -------------------------------------------------------------------------------- /fakegit/gitconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfashi/FakeGit/HEAD/fakegit/gitconf.py -------------------------------------------------------------------------------- /fakegit/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfashi/FakeGit/HEAD/fakegit/github.py -------------------------------------------------------------------------------- /fakegit/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfashi/FakeGit/HEAD/fakegit/main.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superfashi/FakeGit/HEAD/setup.py --------------------------------------------------------------------------------