├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.rst ├── git_remote_codecommit └── __init__.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── test ├── context_test.py ├── git_url_test.py └── main_test.py └── tox.ini /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/README.rst -------------------------------------------------------------------------------- /git_remote_codecommit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/git_remote_codecommit/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/setup.py -------------------------------------------------------------------------------- /test/context_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/test/context_test.py -------------------------------------------------------------------------------- /test/git_url_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/test/git_url_test.py -------------------------------------------------------------------------------- /test/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/test/main_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/git-remote-codecommit/HEAD/tox.ini --------------------------------------------------------------------------------