{ "info": { "author": "Bernard `Guyzmo` Pratz", "author_email": "guyzmo+git-repo@m0g.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Software Development", "Topic :: Software Development :: Version Control", "Topic :: Utilities" ], "description": "Git-Repo: git services CLI utility\n----------------------------------\n\n- To get the sources:\n- https://github.com/guyzmo/git-repo\n- https://gitlab.com/guyzmo/git-repo\n- https://bitbucket.org/guyzmo/git-repo\n- Issues: https://github.com/guyzmo/git-repo/issues\n- Meet the community, come chat:\n- on IRC: [#git-repo\n @freenode](https://webchat.freenode.net/?channels=#git-repo)\n- on Matrix:\n `#git-repo:matrix.org `__\n- on Gitter:\n `git-services/git-repo `__\n- |Issues in Ready| |Issues in Progress| |Show Travis Build Status|\n- `|Pypi Version| |Pypi\n Downloads| `__\n\nLooking for help\n----------------\n\nFor the past few months I've been really busy coding on stuff that puts\nfood on the table\u2026 And sadly, I cannot give this project all the love it\ndeserves. Which is why it's taken me months to spend a few hours merge\nand release the PRs featured in this repository.\n\nI'm still using this project daily, but I'm not having enough time to\nkeep on putting all the effort needed to make it shine (SSH keys, issues\nsupport\u2026)\n\nSo I'd like to share the maintenance responsibility with someone or more\npeople. If you're interested, please ping me on IRC or by mail (which is\nin all my commits). I'm always happy to guide through the code's design!\n\nUsage\n~~~~~\n\nmain commands\n^^^^^^^^^^^^^\n\nControl your remote git hosting services from the ``git`` commandline.\nThe usage is very simple (full usage list `in the\nsources `__).\nTo clone a new project, out of GitHub, just issue:\n\n::\n\n % git hub clone guyzmo/git-repo\n\nBut that works also with a project from GitLab, Bitbucket, your own\nGitLab or Gogs:\n\n::\n\n % git lab clone guyzmo/git-repo\n % git bb clone guyzmo/git-repo\n % git myprecious clone guyzmo/git-repo\n % git gg clone guyzmo/git-repo\n\nIf you want to choose the default branch to clone:\n\n::\n\n % git lab clone guyzmo/git-repo master\n\nThough sometimes, as you're starting a new project, you want to create a\nnew repository to push to:\n\n::\n\n % git hub create guyzmo/git-repo\n\nactually the namespace is facultative, as per default you can (and want\nto) only create new repositories within your own account.\n\nYou might also want to add an existing remote ref to your workspace, and\nthat can be easily done with:\n\n::\n\n % git lab add guyzmo/git-repo\n\nWhich will add ``https://gitlab.com/guyzmo/git-repo`` as the ``gitlab``\nremote!\n\nAlso, you can fork a repository using:\n\n::\n\n % git hub fork neovim/neovim\n\nand of course, you can delete it using:\n\n::\n\n % git bb delete guyzmo/git-repo\n\nAlso, you can open the repository's page, using the ``open`` command:\n\n::\n\n % git lab open guyzmo/git-repo\n Successfully fetched branch `2` of `guyzmo/git-repo` into `request-2`!\n\nRequests for merges *(aka Pull Requests aka Merge Requests)*\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nOnce you're all set with your repository, you can check requests to\nmerge (aka Pull Requests on github) using the ``request`` command:\n\n::\n\n % git hub request guyzmo/git-repo list\n List of open requests to merge:\n id title URL\n 2 prefer gitrepo..token > privatekey, docs https://api.github.com/repos/guyzmo/git-repo/issues/2\n\nAnd fetch it locally to check and/or amend it before merging:\n\n::\n\n % git hub request guyzmo/git-repo fetch 2\n\nOr you can create a request by doing a:\n\n::\n\n % git hub request create guyzmo/git-repo myfeature master -t 'My neat feature' -m 'So much to say about that feature\u2026'\n\nYou can create the request also by simply calling:\n\n::\n\n % git hub request create\n\nThat command has a bit of automagic, it will:\n\n1. lookup the namespace and project of the current branch (or at least\n on the ``github`` remote, if called with ``hub``), and take this as\n the source of the request ;\n2. for the target of the request it will lookup and take:\n\n- the parent if current project has a parent\n- or itself, if does not ;\n\n3. it will take the currently loaded branch for the source\n4. and the default one for the target\n5. call the service to ask for a request to merge from source onto\n target.\n\nGists or snippets\n^^^^^^^^^^^^^^^^^\n\nFinally, another extra feature you can play with is the gist handling:\n\n::\n\n % git hub gist list\n id title\n https://gist.github.com/4a0dd9177524b2b125e9166640666737 This is a test gist\n\nThen you can list files within it:\n\n::\n\n % git hub gist list a7ce4fddba7744ddf335\n language size name\n Python 1048 unicode_combined.py\n % git hub -v gist list https://gist.github.com/4a0dd9177524b2b125e9166640666737\n language size name\n Markdown 16 README.md\n Text 14 LICENSE\n reStructuredText 17 README.rst\n\nto output it locally, you can use the fetch command (and specify the\nfile if there's more than one):\n\n::\n\n % git hub gist fetch https://gist.github.com/a7ce4fddba7744ddf335 > mygist.py\n % git hub gist fetch 4a0dd9177524b2b125e9166640666737 LICENSE > LICENSE_from_gist\n\nbut for more thorough modifications or consulting, you can as well clone\nit:\n\n::\n\n % git hub gist clone 4a0dd9177524b2b125e9166640666737\n Pulling from github |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588|\n Successfully cloned `4a0dd9177524b2b125e9166640666737` into `./4a0dd9177524b2b125e9166640666737`!\n\nAnd when you're done you just get rid of it:\n\n::\n\n % git hub gist -f delete 4a0dd9177524b2b125e9166640666737\n Successfully deleted gist!\n\n *Nota Bene*: Thanks to ``git`` CLI flexibility, by installing\n ``git-repo`` you directly have access to the tool using\n ``git-repo hub \u2026`` or ``git repo hub \u2026``. For the ``git hub \u2026``\n call, you have to set up aliases, see below how to configure that.\n\nRemotes\n^^^^^^^\n\nTraditionally, ``origin`` is being used as the remote name for the code\nhosted on a service, but because of the nature of ``git-repo`` there is\nno single ``origin`` but it encourages to use multiple ones, and also\nleave you in control of wherever ``origin`` points to.\n\nThis is why when you clone from a service or create a new repo on a\nservice, it's using a special remote that carries the name of the\nservice:\n\n::\n\n % git hub clone foo/bar; cd bar\n % git status -sb | head -1\n ## master...github/master\n ^^^^^^\n % git lab create bar\n % git push gitlab master\n\nAnd as a bonus, each time it's adding a new remote, it's updating the\n``all`` remote, so that you can push your code to all your remote\nrepositories in one command:\n\n::\n\n % git push all master\n\nAnother special remote is the ``upstream``. When you do a fork of a\nproject, current special remote with a service name will be renamed as\n``upstream`` and the newly forked project is now the one with the\nservice name:\n\n::\n\n % git lab clone foo/bar; cd bar\n % git remote\n all\n gitlab\n % git lab fork\n % git remote\n all\n gitlab\n upstream\n\nFinally, if you want to link other existing projects, you can, the\n``add`` command is there for that:\n\n::\n\n % git bb add foo/bar\n % # if the name is identical to current project, you don't need to add a name\n % git hub add\n % git gg add foo/bar gitea --alone\n\nUse the ``--alone`` switch if you don't want to add that project in the\n``all`` special remote.\n\nAnd of course the above commands is just sugar around regular git\ncommands, so the above can also be done with:\n\n::\n\n % git remote add gitbucket https://gitbucket.local:8080/foo/bar\n % # the command to append the URL to the all remote, --alone skips this step\n % git remote set-url --add all https://gitbucket.local:8080/foo/bar\n\nAnd to remove a remote, just do:\n\n::\n\n % git remote remove github\n\nInstallation\n~~~~~~~~~~~~\n\nYou can get the tool using pypi (use ``pip3`` if you have both Python2\nand Python3 installed):\n\n::\n\n % pip install git-repo\n\nor by getting the sources and running:\n\n::\n\n % python3 setup.py install\n\nConfiguration\n~~~~~~~~~~~~~\n\nTo configure ``git-repo`` you simply have to call the following command:\n\n::\n\n % git repo config\n\nand a wizard will run you through getting the authentication token for\nthe service, add the command alias or the name of the remote. Though,\nconfiguring custom services is still not handled by the wizard\u2026\n\nBut if you prefer manual configuration you'll have to tweak your\n``~/.gitconfig``. For each service you've got an account on, you have to\nmake a section in the gitconfig:\n\n::\n\n [gitrepo \"gitlab\"]\n token = YourVerySecretKey\n\n [gitrepo \"github\"]\n token = YourOtherVerySecretKey\n\n [gitrepo \"bitbucket\"]\n username = ford.prefect\n token = YourOtherSecretKey\n\n [gitrepo \"gogs\"]\n fqdn = UrlOfYourGogs\n token = YourVerySecretKey\n\nHere, we're setting the basics: just the private token. You'll notice\nthat for bitbucket the private token is your username and password\nseperated by a column. That's because bitbucket does not offer throw\naway private tokens for tools (I might implement BB's OAuth at some\npoint).\n\nYou also have the ability to set up an alias:\n\n::\n\n [gitrepo \"bitbucket\"]\n alias = bit\n username = ford.prefect\n token = YourOtherSecretKey\n\nthat will change the command you use for a name you'll prefer to handle\nactions for the service you use:\n\n::\n\n % git-repo bit clone guyzmo/git-repo\n\nAlso, you can setup your own GitLab self-hosted server, using that\nconfiguration:\n\n::\n\n [gitrepo \"myprecious\"]\n type = gitlab\n token = YourSuperPrivateKey\n fqdn = gitlab.example.org\n # Set this only if you use a self-signed certificate and experience problems\n insecure = true\n\nFinally, to make it really cool, you can make a few aliases in your\ngitconfig:\n\n::\n\n [alias]\n hub = repo hub\n lab = repo lab\n bb = repo bb\n perso = repo perso\n\nSo you can run the tool as a git subcommand:\n\n::\n\n git hub clone guyzmo/git-repo\n\nFor those who like to keep all dotfiles in a git repository, it'd be\nhorrendous to store tokens that offer access to your social accounts in\na repository\u2026 And I'm not even talking about those who want to share\nyour dotfiles. But don't worry, once it's all configured, you can fire\nup your `favorite editor `__ and move all the\n``[gitrepo \u2026]`` sections into a new file, like ``~/.gitconfig-repos``.\n\nYour can run the following command to do this automagically:\n\n::\n\n python -m git_repo.extract_config\n\nif you want to use another path, you can change the defaults:\n\n::\n\n python -m git_repo.extract_config ~/.gitconfig-repos ~/.gitconfig\n\nDevelopment\n~~~~~~~~~~~\n\nFor development, start a virtualenv and from within install the devel\nrequirements:\n\n::\n\n % virtualenv var\n % var/bin/pip install -r requirements-test.txt\n\nand then you'll have the executable in ``bin``:\n\n::\n\n % var/bin/git-repo --help\n\nand to run the tests:\n\n::\n\n % var/bin/py.test --cov=git_repo --cov-report term-missing --capture=sys tests\n\nN.B.: *Buildout is no longer supported for development*\n\nVerbose running\n^^^^^^^^^^^^^^^\n\nYou can repeat the ``-v`` argument several times to increase the level\nof verbosity of ``git-repo``. The more arguments you give, the more\ndetails you'll have.\n\n- ``-v`` will set the debugging level to ``DEBUG``, giving some\n execution info\u00a0;\n- ``-vv`` will print out all the git commands that are being executed\u00a0;\n- ``-vvv`` will give more verbose insight on the git layer\u00a0;\n- ``-vvvv`` will output all the HTTP exchanges with the different\n APIs\u00a0;\n- ``-vvvvv`` will printout how were parsed the arguments.\n\nTesting\n'''''''\n\nTo run the tests:\n\n::\n\n % bin/py.test\n\nYou can use the following options for py.test to help you debug when\ntests fail:\n\n- ``-v`` will show more details upon errors\n- ``-x`` will stop upon the first failure\n- ``--pdb`` will launch the debugger where an exception has been\n launched\n\nThe tests use recordings of exchanged HTTP data, so that we don't need\nreal credentials and a real connection, when testing the API on minor\nchanges. Those recordings are called cassettes, thanks to the\n`betamax `__ framework being in\nuse in the test suites.\n\nWhen running existing tests, based on the provided cassettes, you don't\nneed any setting. Also, if you've got a configuration in\n``~/.gitconfig``, the tests will use them. Anyway, you can use\nenvironment variables for those settings (environment variables will\nhave precedence over the configuration settings):\n\nTo use your own credentials, you can setup the following environment\nvariables:\n\n- ``GITHUB_NAMESPACE`` (which defaults to ``not_configured``) is the\n name of the account to use on GitHub\n- ``GITLAB_NAMESPACE`` (which defaults to ``not_configured``) is the\n name of the account to use on GitLab\n- ``BITBUCKET_NAMESPACE`` (which defaults to ``not_configured``) is the\n name of the account to use on Bitbucket\n- ``GOGS_NAMESPACE`` (which defaults to ``not_configured``) is the name\n of the account to use on Gogs\n- ``PRIVATE_KEY_GITHUB`` your private token you've setup on GitHub for\n your account\n- ``PRIVATE_KEY_GITLAB`` your private token you've setup on GitLab for\n your account\n- ``PRIVATE_KEY_BITBUCKET`` your private token you've setup on\n Bitbucket for your account\n- ``PRIVATE_KEY_GOGS`` your private token you've setup on Gogs for your\n account\n\nTODO\n~~~~\n\n- [x] make a ``git-repo fork`` action\n- [x] make it possible to choose method (SSH or HTTPS)\n- [x] handle default branches properly\n- [x] make a nice way to push to all remotes at once\n- [x] refactor the code into multiple modules\n- [x] add regression tests (and actually find a smart way to implement\n them\u2026)\n- [x] add travis build\n- [x] show a nice progress bar, while it's fetching (cf\n `#15 `__)\n- [x] add support for handling gists (cf\n `#12 `__, cf\n `#13 `__)\n- [x] add support for handling pull requests (cf\n `#10 `__,\n `#11 `__)\n- [x] add application token support for bitbucket (cf\n `#14 `__)\n- [x] add support for gogs (cf\n `#18 `__)\n- [x] add support for gitbucket (cf\n `#142 `__)\n- [ ] add support for managing SSH keys (cf\n `#22 `__)\n- [ ] add support for issues (cf\n `#104 `__)\n- [ ] add support for gerrit (cf\n `#19 `__)\n- [ ] do what's needed to make a nice documentation\n `#146 `__\n- for more features, write an issue or, even better, a PR!\n\nContributors\n============\n\nThe project and original idea has been brought and is maintained by:\n\n- Bernard [@guyzmo](https://github.com/guyzmo) Pratz \u2014\n `commits `__\n\nWith code contributions coming from:\n\n- [@PyHedgehog](https://github.com/pyhedgehog) \u2014\n `commits `__\n- [@guyhughes](https://github.com/guyhughes) \u2014\n `commits `__\n- [@buaazp](https://github.com/buaazp) \u2014\n `commits `__\n- [@peterazmanov](https://github.com/peterazmanov) \u2014\n `commits `__\n- [@Crazybus](https://github.com/Crazybus) \u2014\n `commits `__\n- [@rnestler](https://github.com/rnestler) \u2014\n `commits `__\n- [@jayvdb](https://github.com/jayvdb) \u2014\n `commits `__\n- [@kounoike](https://github.com/kounoike) \u2014\n `commits `__\n- [@AmandaCameron](https://github.com/AmandaCameron) \u2014\n `commits `__\n- [@fa7ad](https://github.com/fa7ad) \u2014\n `commits `__\n\nLicense\n~~~~~~~\n\n::\n\n Copyright \u00a92016,2017 Bernard `Guyzmo` Pratz \n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nSee the LICENSE file for the full license.\n\n\u2665\n\n.. |Issues in Ready| image:: https://badge.waffle.io/guyzmo/git-repo.png?label=ready&title=Ready\n :target: https://waffle.io/guyzmo/git-repo\n.. |Issues in Progress| image:: https://badge.waffle.io/guyzmo/git-repo.png?label=in%20progress&title=Progress\n :target: https://waffle.io/guyzmo/git-repo\n.. |Show Travis Build Status| image:: https://travis-ci.org/guyzmo/git-repo.svg\n :target: https://travis-ci.org/guyzmo/git-repo\n.. |Pypi Version| image:: https://img.shields.io/pypi/v/git-repo.svg\n.. |Pypi Downloads| image:: https://img.shields.io/pypi/dm/git-repo.svg\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/guyzmo/git-repo", "keywords": "git", "license": "GPLv2", "maintainer": "", "maintainer_email": "", "name": "git-repo", "package_url": "https://pypi.org/project/git-repo/", "platform": "", "project_url": "https://pypi.org/project/git-repo/", "project_urls": { "Homepage": "https://github.com/guyzmo/git-repo" }, "release_url": "https://pypi.org/project/git-repo/1.10.3/", "requires_dist": null, "requires_python": "", "summary": "Tool for managing repository services from your git CLI tool", "version": "1.10.3" }, "last_serial": 3344589, "releases": { "1.0": [], "1.1": [ { "comment_text": "", "digests": { "md5": "8736f706285a3713bc99d57805015cc6", "sha256": "a638c9aa1a0bd38a9915f6952d5ae66f54b58271f6f12706315577a644b67dc4" }, "downloads": -1, "filename": "git_repo-1.1-py3.5.egg", "has_sig": false, "md5_digest": "8736f706285a3713bc99d57805015cc6", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 10976, "upload_time": "2016-03-21T20:31:54", "url": "https://files.pythonhosted.org/packages/2c/9e/0b9c254a82dbebd4565dbaf53595a7e158e010068dc66bc85e3a028b865d/git_repo-1.1-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "344abbe5faa55683fa899c2637b9e0fb", "sha256": "54b53064a26da735a09e6553422c87ae5c5b30dc856565dc116ec667244ebb10" }, "downloads": -1, "filename": "git-repo-1.1.tar.gz", "has_sig": false, "md5_digest": "344abbe5faa55683fa899c2637b9e0fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6059, "upload_time": "2016-03-21T20:31:48", "url": "https://files.pythonhosted.org/packages/a6/f8/f36e8806f3053a618c9a60043492324e375dbbac0c216ec287b2bbcefb94/git-repo-1.1.tar.gz" } ], "1.10.0rc0": [ { "comment_text": "", "digests": { "md5": "77493ba1288dc2dc181c4c29c1ea2394", "sha256": "8a3310b91177daff6bf11fc41a8b93a07a73dcdc43a65d231bb4b7f84955c881" }, "downloads": -1, "filename": "git_repo-1.10.0rc0-py3.6.egg", "has_sig": false, "md5_digest": "77493ba1288dc2dc181c4c29c1ea2394", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 42689, "upload_time": "2017-05-05T22:55:30", "url": "https://files.pythonhosted.org/packages/ab/e5/a8adf43f4ac78326822839d5aa2048c38d430fedf00b090f606fae1a8d82/git_repo-1.10.0rc0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "e64edc8df84fcd8ad94a8654b1e3b60a", "sha256": "2b79b7692b46a6abcdadbae123fa5f190bbb19f13e9c4965ec3e00538f1433cf" }, "downloads": -1, "filename": "git_repo-1.10.0rc0-py3-none-any.whl", "has_sig": false, "md5_digest": "e64edc8df84fcd8ad94a8654b1e3b60a", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 49107, "upload_time": "2017-05-05T22:55:29", "url": "https://files.pythonhosted.org/packages/e9/74/f6b4da5db98e2b448bbc6cc4febcc8a11437ad3c10533e02d622aab13065/git_repo-1.10.0rc0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d4089520529301b49d7481a4d5c1254", "sha256": "439955a9bc2d13755c154006ab180fa4068e22b84f5f5d717274f7ba05c6b9e2" }, "downloads": -1, "filename": "git-repo-1.10.0rc0.tar.gz", "has_sig": false, "md5_digest": "0d4089520529301b49d7481a4d5c1254", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 241947, "upload_time": "2017-05-05T22:55:32", "url": "https://files.pythonhosted.org/packages/80/58/0d2d76d7a712297a7f2ce6eb4735cfdd679e4ec543bc614b65ecf38b346d/git-repo-1.10.0rc0.tar.gz" } ], "1.10.1": [ { "comment_text": "", "digests": { "md5": "f9250701049d4d47ee25daa45ced4c51", "sha256": "2918787e9341887a7b51c63f33617c5c66af80f99f65798ebf76f1522e056a87" }, "downloads": -1, "filename": "git_repo-1.10.1-py3.6.egg", "has_sig": false, "md5_digest": "f9250701049d4d47ee25daa45ced4c51", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 42848, "upload_time": "2017-05-17T15:20:16", "url": "https://files.pythonhosted.org/packages/d0/29/d4d485a5a0deaeda9d049e227788459e8404edc6fd4440107aaefa4addc6/git_repo-1.10.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9220e18092e33e9fc600b5ca0dbb9e8e", "sha256": "fa0a318ed2c48de8e142ff9f185801d905b39eea7fcdea22b7947964c82a7193" }, "downloads": -1, "filename": "git_repo-1.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9220e18092e33e9fc600b5ca0dbb9e8e", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 49328, "upload_time": "2017-05-17T15:20:13", "url": "https://files.pythonhosted.org/packages/6f/ae/0a2206d6ccc18488b865550de6e36b1a7871f8d88e903ed7189289756f19/git_repo-1.10.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8d79bc3704842fff1b0d11d83c7901e3", "sha256": "be9b1fed14a61dd904c4b2a682d64f9b53709510e566faee70a152481524b9ba" }, "downloads": -1, "filename": "git-repo-1.10.1.tar.gz", "has_sig": false, "md5_digest": "8d79bc3704842fff1b0d11d83c7901e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 241656, "upload_time": "2017-05-17T15:20:19", "url": "https://files.pythonhosted.org/packages/ac/10/bd7b267bdabbec055e1ecb9fe7ff9ad5bbaf2a20f21512cd08f0837d3fdd/git-repo-1.10.1.tar.gz" } ], "1.10.2": [ { "comment_text": "", "digests": { "md5": "376ab8fe2f58ab965aa9956f22594474", "sha256": "374014a83e166bf352ad703cb2d9e2b424b9df7f9f299a2f4a94c3f55b7a9f74" }, "downloads": -1, "filename": "git_repo-1.10.2-py3.6.egg", "has_sig": false, "md5_digest": "376ab8fe2f58ab965aa9956f22594474", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 42847, "upload_time": "2017-05-20T23:40:27", "url": "https://files.pythonhosted.org/packages/8a/dd/828bd0293716037b76c94683369c9971376800493015efd07358de907479/git_repo-1.10.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "5cd7746a7e431069fd7c151b76b8af40", "sha256": "2cdefa6e182a3ddf426f64f0d692c8c356a9a838a4844138b8e6fab4530be38a" }, "downloads": -1, "filename": "git_repo-1.10.2-py3-none-any.whl", "has_sig": false, "md5_digest": "5cd7746a7e431069fd7c151b76b8af40", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 49329, "upload_time": "2017-05-20T23:40:25", "url": "https://files.pythonhosted.org/packages/33/9d/2dedd11cf902ebfc2174ce97c617a5d1346d2882a7a0703a0da061007d15/git_repo-1.10.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5b1537314340734d1143d06f62505b03", "sha256": "bb197a84ad6143fa9e6352e9347a6375d1756d37ee69948c199e58986cd0e5c7" }, "downloads": -1, "filename": "git-repo-1.10.2.tar.gz", "has_sig": false, "md5_digest": "5b1537314340734d1143d06f62505b03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 241670, "upload_time": "2017-05-20T23:40:29", "url": "https://files.pythonhosted.org/packages/9c/31/6ef61616d2fa7297f10120063a042eede6ec3daa0a5e4802169f8fd7573b/git-repo-1.10.2.tar.gz" } ], "1.10.3": [ { "comment_text": "", "digests": { "md5": "db63897235318feddb70ed273a9d69b4", "sha256": "c2eb5dc03d7c566d2986ec701bff3f571481d319317df97a06dfa248f33c0c7d" }, "downloads": -1, "filename": "git_repo-1.10.3-py3.6.egg", "has_sig": false, "md5_digest": "db63897235318feddb70ed273a9d69b4", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 43444, "upload_time": "2017-11-18T19:40:32", "url": "https://files.pythonhosted.org/packages/f8/06/1173babcf1f2490bba8dab3cd13c9b8b7fa4033a95c311c330036287e77a/git_repo-1.10.3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9e4dabe9e780cb3f2523ce8ee92e7f8b", "sha256": "46ef61f565d2be711aad94aad668d010388b25da0ce4259ed601887446a91d35" }, "downloads": -1, "filename": "git_repo-1.10.3-py3-none-any.whl", "has_sig": false, "md5_digest": "9e4dabe9e780cb3f2523ce8ee92e7f8b", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 50247, "upload_time": "2017-11-18T19:40:30", "url": "https://files.pythonhosted.org/packages/2f/f3/4acf30b14ea70ba563a1ea0b17ec54c93d3dcca737958bd760f3067fc595/git_repo-1.10.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a9439f1aad6fc8c83baafcee0913b3b2", "sha256": "5a1bbc284e270f810136e3356a57d4624575859db897e261fef832fa6b5d6bb4" }, "downloads": -1, "filename": "git-repo-1.10.3.tar.gz", "has_sig": false, "md5_digest": "a9439f1aad6fc8c83baafcee0913b3b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 244380, "upload_time": "2017-11-18T19:40:27", "url": "https://files.pythonhosted.org/packages/a8/27/01e8849c6674e89941b701e5d076bd229f5dd1cfd599b5dadbb88bf9716d/git-repo-1.10.3.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "3aaa8ed7c58ae0b1810e24595ffc1368", "sha256": "b55480342c15ae5b302d93faeeadf6e371052d6ba49b2c36a5530181855ee167" }, "downloads": -1, "filename": "git_repo-1.3-py3.5.egg", "has_sig": false, "md5_digest": "3aaa8ed7c58ae0b1810e24595ffc1368", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 18988, "upload_time": "2016-03-22T22:47:33", "url": "https://files.pythonhosted.org/packages/fb/06/39ef5185e2aa84d7373431c3a380fe910106078cf0e7d22be477e5641915/git_repo-1.3-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "f44eb4b9d1f6ef4005b4af898b156686", "sha256": "5fa3c9fa8fb5243de0c1b8414c43d45527a0e8f524827587b5811c219a78c54b" }, "downloads": -1, "filename": "git-repo-1.3.tar.gz", "has_sig": false, "md5_digest": "f44eb4b9d1f6ef4005b4af898b156686", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9644, "upload_time": "2016-03-22T22:47:18", "url": "https://files.pythonhosted.org/packages/d3/4c/989786bdae842e77d91e4defda69f0fd0f66d5c2e315ebdea90cd1f44848/git-repo-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "2df6e8fbe4f8b8a9b160cd1401dd1035", "sha256": "726fe28c6c5385d489246143116afd9807d876e0b4f3f09b4187455acb1c489d" }, "downloads": -1, "filename": "git_repo-1.4-py3.5.egg", "has_sig": false, "md5_digest": "2df6e8fbe4f8b8a9b160cd1401dd1035", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 26969, "upload_time": "2016-03-23T02:09:39", "url": "https://files.pythonhosted.org/packages/c3/ff/8e759b3323f65fb156973d1f5a5793035e31b854c7445eaeb134670cd6c0/git_repo-1.4-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "011d7c7a9c83d2a9b60d81d6cfe9a0ac", "sha256": "ccfb69e48d2308de340a52a87eca442a093c5eda4b1e4a3055a8cc83dc7bded1" }, "downloads": -1, "filename": "git-repo-1.4.tar.gz", "has_sig": false, "md5_digest": "011d7c7a9c83d2a9b60d81d6cfe9a0ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10566, "upload_time": "2016-03-23T02:09:31", "url": "https://files.pythonhosted.org/packages/11/9b/f08af0378a617fbaa409d29d4e8575722a5acf922ba6f264f9baa94d9a22/git-repo-1.4.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "e896f3d66cbe656c15981ca88c07c826", "sha256": "ef7c23afa05189eca5a33e70f9806328b97d4c6a8e8c353999a42b9be326a57c" }, "downloads": -1, "filename": "git_repo-1.5.0-py3.5.egg", "has_sig": false, "md5_digest": "e896f3d66cbe656c15981ca88c07c826", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 11307, "upload_time": "2016-03-30T12:54:37", "url": "https://files.pythonhosted.org/packages/c6/e7/e8aef838ae9196c88e8c8639fcd7dc2980c78234d28fdfb999596cfb050f/git_repo-1.5.0-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "57b079b4c4e953cb2c7827036d935a11", "sha256": "bbee09a8df7372515cfb7794907d0360da5ecff853ffb91fcc4ec191658312ce" }, "downloads": -1, "filename": "git-repo-1.5.0.tar.gz", "has_sig": false, "md5_digest": "57b079b4c4e953cb2c7827036d935a11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7476, "upload_time": "2016-03-30T12:54:45", "url": "https://files.pythonhosted.org/packages/cf/73/773077b83a7ab41869aa10440daa06ee4d192168920ddf15499879bcbb6c/git-repo-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "85cc32a83ad782b786ee2dcea333e0f4", "sha256": "8b7c22f2d265d05a2cb0b6abdb0356570c9c2cec107a36d378ede31c4fc7040d" }, "downloads": -1, "filename": "git-repo-1.5.1.tar.gz", "has_sig": false, "md5_digest": "85cc32a83ad782b786ee2dcea333e0f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19823, "upload_time": "2016-04-01T19:38:16", "url": "https://files.pythonhosted.org/packages/15/17/5563fcf0780e7dfee74c7761ae1732e8640c864379f3f54b35486d4d7f35/git-repo-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "96ba22cf62cd6d09691e7bba95ddc72c", "sha256": "750a6fc4060b234f1fb15651eb141cb8a65a54059f92dd077f1c88f2207ea095" }, "downloads": -1, "filename": "git-repo-1.5.2.tar.gz", "has_sig": false, "md5_digest": "96ba22cf62cd6d09691e7bba95ddc72c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19812, "upload_time": "2016-04-01T19:52:39", "url": "https://files.pythonhosted.org/packages/2e/2b/cdea1e024e9f767d23f3f9975873f046040df2446d73d1e282bcf68ef126/git-repo-1.5.2.tar.gz" } ], "1.6.0": [ { "comment_text": "built for Linux-3.16.0-4-amd64-x86_64-with-glibc2.2.5", "digests": { "md5": "32570f74ebf74286f3d13dbd35073993", "sha256": "e3e4457289cf03d5f2bc1e1b323ae9ef943b8fc7643ab4aedef7f06e5f7bd76a" }, "downloads": -1, "filename": "git-repo-1.6.0.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "32570f74ebf74286f3d13dbd35073993", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 41168, "upload_time": "2016-05-23T00:33:35", "url": "https://files.pythonhosted.org/packages/97/af/543135e9d952dc96e3f1e3b48add1f2d1410e6ca6cd1d98e6dca36e90146/git-repo-1.6.0.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "2ba5b950f6bdaf72ee53464dbbc4dbe5", "sha256": "c0a485cdb986736b9a7272bc5861b58a400d4edb283293de505e00c6153a8119" }, "downloads": -1, "filename": "git_repo-1.6.0-py3.5.egg", "has_sig": false, "md5_digest": "2ba5b950f6bdaf72ee53464dbbc4dbe5", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 51018, "upload_time": "2016-05-23T00:33:41", "url": "https://files.pythonhosted.org/packages/bd/81/e58230161b0faaea471c61fa0e445866b60437d8184d12c5ab17e21727ae/git_repo-1.6.0-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "d0e908c753939f1759429b6f9edafa24", "sha256": "e4723a7824a4b471843deba531fcf484f0e41f9b40f011954e010c0049d99ef2" }, "downloads": -1, "filename": "git_repo-1.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d0e908c753939f1759429b6f9edafa24", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 28337, "upload_time": "2016-05-23T00:50:54", "url": "https://files.pythonhosted.org/packages/f8/20/c9b0f892cbc2d9f610abe79df677767b00cf08b4796c2fd6e49a45afd7c2/git_repo-1.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fbade2e9c568db576404292fd1462550", "sha256": "5e3ce42402148ce3a856c29b2a6c1dab9bc08d70262821bb667e8e1116a81988" }, "downloads": -1, "filename": "git-repo-1.6.0.tar.gz", "has_sig": false, "md5_digest": "fbade2e9c568db576404292fd1462550", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25066, "upload_time": "2016-05-23T00:33:47", "url": "https://files.pythonhosted.org/packages/4a/52/36aadc8dd6672fa645edd4878871a9fe335e0c7b4993e9d01ff748c91e64/git-repo-1.6.0.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "7bf981333796a362cdc8463ab62f0c16", "sha256": "fb43b3d4a2ffba776f6f2c7b0615e0e6353549fce0ded138f4a0063a639ad39b" }, "downloads": -1, "filename": "git_repo-1.7.0-py3.5.egg", "has_sig": false, "md5_digest": "7bf981333796a362cdc8463ab62f0c16", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 23327, "upload_time": "2016-06-21T22:12:17", "url": "https://files.pythonhosted.org/packages/ce/e3/a65deda38396c03678dcf05055b88af7e71d7c0a7d5b6f24a1d0d277f948/git_repo-1.7.0-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "131e4f9fd68738793567ad40a0ad675f", "sha256": "b73798f30f22f5e58009a58ce772bddc80bb0717bdca8424933acefaefee61ba" }, "downloads": -1, "filename": "git_repo-1.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "131e4f9fd68738793567ad40a0ad675f", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 28775, "upload_time": "2016-06-21T22:12:12", "url": "https://files.pythonhosted.org/packages/98/58/e4074814e731645d43cdef064ecfc8255b9186b17e768c4ac9b02425a0b6/git_repo-1.7.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d9495f618deadaa69bc0e631205d689", "sha256": "f034ad49a4b692eb56e8cf26781d09ca6dd7985f99e0fdc5951aa010d8b197fb" }, "downloads": -1, "filename": "git-repo-1.7.0.tar.gz", "has_sig": false, "md5_digest": "2d9495f618deadaa69bc0e631205d689", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31474, "upload_time": "2016-06-21T22:12:06", "url": "https://files.pythonhosted.org/packages/39/86/8467f96e444740a1a03ab3cc20f746eb27ed32593f999c03d8c4b692d9a4/git-repo-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "29e4538578c0e1dd04cb95855d6a037c", "sha256": "1aab3ef98cf836b914bd11f0fed77e978bd0866b0da47ade61163051da208d50" }, "downloads": -1, "filename": "git_repo-1.7.1-py3.5.egg", "has_sig": false, "md5_digest": "29e4538578c0e1dd04cb95855d6a037c", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 23335, "upload_time": "2016-09-10T14:14:03", "url": "https://files.pythonhosted.org/packages/1e/43/f85bee5e561b23094d37208374cfb15ba84aed0d6c936db29faf7fe6a122/git_repo-1.7.1-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "04a9f5d4b0612ff5fb590c7eedd6c72a", "sha256": "e67ba32f71b5213deea730c0ed8d8fc49739bf08acfd94cebc0b7caae691cdfd" }, "downloads": -1, "filename": "git_repo-1.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "04a9f5d4b0612ff5fb590c7eedd6c72a", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 28808, "upload_time": "2016-09-10T14:13:54", "url": "https://files.pythonhosted.org/packages/44/ae/71a682933218fb7de7b8750c1e0cb0d269f6a4146360949d1129b566e907/git_repo-1.7.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "20b51d23e4e72a42f0d86472c8526480", "sha256": "2e0e9dd3f1baa6ac59fd0ed02dea36832b42fa0106ecb63542601443a557ee89" }, "downloads": -1, "filename": "git-repo-1.7.1.tar.gz", "has_sig": false, "md5_digest": "20b51d23e4e72a42f0d86472c8526480", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29345, "upload_time": "2016-09-10T14:14:06", "url": "https://files.pythonhosted.org/packages/57/f0/52e750cf8ed46ac23b8c60b27f55d6015226668e1fb6aa7a91b65e72f8b9/git-repo-1.7.1.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "2f69a91c0ea75ab1b715147e5c3c24c2", "sha256": "c881b8d38940dafe669cb79ebfa10610820b709559e4f7c07d007bac691a5de2" }, "downloads": -1, "filename": "git_repo-1.7.3-py3.5.egg", "has_sig": false, "md5_digest": "2f69a91c0ea75ab1b715147e5c3c24c2", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 23646, "upload_time": "2016-10-12T22:46:57", "url": "https://files.pythonhosted.org/packages/41/60/cb8b38261b28cd23dd4682d2d9cd862b6458cac63e233c057ef3f27975ba/git_repo-1.7.3-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "93218f7410d4a6316127461f75940ec3", "sha256": "b6e27904225abd478dff0963dd808e9134ca22e3dac248b2108a897820a12946" }, "downloads": -1, "filename": "git_repo-1.7.3-py3-none-any.whl", "has_sig": false, "md5_digest": "93218f7410d4a6316127461f75940ec3", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 29333, "upload_time": "2016-10-12T22:46:54", "url": "https://files.pythonhosted.org/packages/56/ce/4b4e929b52725986176da80455558ee862c6d57fe10cebbff34f8ada3cc2/git_repo-1.7.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "274af42a1eb4b6faa14dfe29bb950815", "sha256": "0dc5e4058648f103540c4f3ebf99878c5b034865584957a2f9e2dc18b0238b7d" }, "downloads": -1, "filename": "git-repo-1.7.3.tar.gz", "has_sig": false, "md5_digest": "274af42a1eb4b6faa14dfe29bb950815", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30019, "upload_time": "2016-10-12T22:47:00", "url": "https://files.pythonhosted.org/packages/75/36/74f1a7c8b9f44ad45ab285b2496b2a0cd388417040549cc07b0479450007/git-repo-1.7.3.tar.gz" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "35b5de44f3b16bef0ae4cca7db83ccf9", "sha256": "559f58521854f04e4fde4e6cc1f880f274831a585b82493eab1f8a095135a930" }, "downloads": -1, "filename": "git_repo-1.7.4-py3.5.egg", "has_sig": false, "md5_digest": "35b5de44f3b16bef0ae4cca7db83ccf9", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 51781, "upload_time": "2016-10-16T00:44:25", "url": "https://files.pythonhosted.org/packages/96/8d/0f90763b8f496735d6f268fb93f941a126687260f2ac0a80da10de06e918/git_repo-1.7.4-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "9c04433e3f8166b7f699364babafc753", "sha256": "386152a7ca2f46a74f58c873c2c60a5e808b8ff1fdda9fbee4c157e8aad7a140" }, "downloads": -1, "filename": "git_repo-1.7.4-py3-none-any.whl", "has_sig": false, "md5_digest": "9c04433e3f8166b7f699364babafc753", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 29918, "upload_time": "2016-10-16T00:44:30", "url": "https://files.pythonhosted.org/packages/88/42/575e462ed0a8e6e2e4a3415213da4ac4a4eb25ee800fce79a1a38f91a471/git_repo-1.7.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6081b4169ae93a3d0cf42ec47c26d69f", "sha256": "3e592f2323589a931c024eeffaca0b63db2920a155dde1049a0d680d02c19411" }, "downloads": -1, "filename": "git-repo-1.7.4.tar.gz", "has_sig": false, "md5_digest": "6081b4169ae93a3d0cf42ec47c26d69f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30515, "upload_time": "2016-10-16T00:44:27", "url": "https://files.pythonhosted.org/packages/21/ad/e9223577d91c429d6456313e1872a6d3852579b49fd6b403852c59e9877f/git-repo-1.7.4.tar.gz" } ], "1.7.5": [ { "comment_text": "", "digests": { "md5": "c020326f4ded0a05f90e5975ef1c193b", "sha256": "9b246b0ecad2576f218e322106e8c58e89dba8c592df8b237c6d922bff11fe69" }, "downloads": -1, "filename": "git_repo-1.7.5-py3.5.egg", "has_sig": false, "md5_digest": "c020326f4ded0a05f90e5975ef1c193b", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 54715, "upload_time": "2016-11-25T01:01:01", "url": "https://files.pythonhosted.org/packages/24/c1/620fdf50e7c5e408dcedb194355ea19fa95fd600c412037953d06f35a9c9/git_repo-1.7.5-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "bc537309faf4fa378bd4a23337713528", "sha256": "16dcf0a479f56426251023392b767aba56151d5d859e829ca727417b33e1432d" }, "downloads": -1, "filename": "git_repo-1.7.5-py3-none-any.whl", "has_sig": false, "md5_digest": "bc537309faf4fa378bd4a23337713528", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 31252, "upload_time": "2016-11-25T01:01:07", "url": "https://files.pythonhosted.org/packages/02/da/fec976da334858c5474ba756945843227a6019e700c4d84a8fb402dc8714/git_repo-1.7.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "02560ba380b7446a9742474f9fb556d6", "sha256": "6eec209ff81414fb33328b92f71b115367e716254dbcd219808f1fe6fa39bd0d" }, "downloads": -1, "filename": "git-repo-1.7.5.tar.gz", "has_sig": false, "md5_digest": "02560ba380b7446a9742474f9fb556d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31781, "upload_time": "2016-11-25T01:00:58", "url": "https://files.pythonhosted.org/packages/31/ef/e533dd6f7c9ea01724108eaa82012d59122e51b9c607bd14b585b01197aa/git-repo-1.7.5.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "b603aec4034f32b84050c0e3de0d91af", "sha256": "006b7207ccf46fce3fc55845deef82d71e686e750832d97b68966befa4548379" }, "downloads": -1, "filename": "git_repo-1.8.0-py3.5.egg", "has_sig": false, "md5_digest": "b603aec4034f32b84050c0e3de0d91af", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 63917, "upload_time": "2016-12-28T15:47:17", "url": "https://files.pythonhosted.org/packages/1e/85/4152bd19e852e4e8174dbf74f8c87bdae49c79e5c64f20b899da444e01c8/git_repo-1.8.0-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "813ade8943dbf69adec67f2217eb005c", "sha256": "cf0505102a3696fd4391f9883bed239aa71c3418cf8980d26c23814d13b31b25" }, "downloads": -1, "filename": "git_repo-1.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "813ade8943dbf69adec67f2217eb005c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 35435, "upload_time": "2016-12-28T15:47:20", "url": "https://files.pythonhosted.org/packages/f2/a7/2cbe2354b7044c3d9ae6878b70edc968d3e82c60ba194b14ddd21c2a69d4/git_repo-1.8.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "80a1f11094e0cb6571849d155965ef9d", "sha256": "6ebbbdc44b5b3bf69e4240423edbb1e4eac537b2f70b08b393024d48e74307e7" }, "downloads": -1, "filename": "git-repo-1.8.0.tar.gz", "has_sig": false, "md5_digest": "80a1f11094e0cb6571849d155965ef9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34147, "upload_time": "2016-12-28T15:47:15", "url": "https://files.pythonhosted.org/packages/13/63/d855188e7a783a344b591b787d052e5ba94135dc49eae3f187bfa609052e/git-repo-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "f1a1f61cb087bfb27c595b0c80fc3955", "sha256": "6e3241c6a37f4832e325edb4bc7b05ff130260d23e58c454befebc89b84c007d" }, "downloads": -1, "filename": "git_repo-1.8.1-py3.6.egg", "has_sig": false, "md5_digest": "f1a1f61cb087bfb27c595b0c80fc3955", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 63811, "upload_time": "2017-01-22T00:32:17", "url": "https://files.pythonhosted.org/packages/61/84/6769c3340e2e54c8672fba6be788d296bf52de82729eccef1e2fbc06f740/git_repo-1.8.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "1440fc1a40a18d73430f2fda0c6c5ad5", "sha256": "4455126fdd8a5d9e6666e5cb0882eb87b1c4bffbe5b1d301e689719e3786512e" }, "downloads": -1, "filename": "git_repo-1.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1440fc1a40a18d73430f2fda0c6c5ad5", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 35885, "upload_time": "2017-01-22T00:32:22", "url": "https://files.pythonhosted.org/packages/b6/d8/e4c159f3dbbff533da54a84dda69f2677a5db1484d7163d04bb5bd1d2913/git_repo-1.8.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c163b6312bf827dc2a37001f0b5dfbdd", "sha256": "29757f61ca6ccaec4541a1abfa741d1407b8190444eb1a8c5acd18a412351eab" }, "downloads": -1, "filename": "git-repo-1.8.1.tar.gz", "has_sig": false, "md5_digest": "c163b6312bf827dc2a37001f0b5dfbdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34558, "upload_time": "2017-01-22T00:32:14", "url": "https://files.pythonhosted.org/packages/fe/93/74771cedadf51d4756446e1940d603274e9a1fe1e157127fd5d93203ea31/git-repo-1.8.1.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "e13a15371b5f75c56111581da1c54ee7", "sha256": "146ed439a527021a8a9b58a19c2f2a73a855fff342458e0c25a0326769729eae" }, "downloads": -1, "filename": "git_repo-1.9.0-py3.6.egg", "has_sig": false, "md5_digest": "e13a15371b5f75c56111581da1c54ee7", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 34856, "upload_time": "2017-02-06T19:20:12", "url": "https://files.pythonhosted.org/packages/fc/30/ab0669394a7c41fb6799fca2d1456e3088d2b9593d23c84dc8fad60d45f1/git_repo-1.9.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "ed73a74fe6b1c6936ec74d6b53770ccb", "sha256": "a19e4a86366df61dcb626ec59770baf60800d4b628a9308158002bd4bf8d32fe" }, "downloads": -1, "filename": "git_repo-1.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ed73a74fe6b1c6936ec74d6b53770ccb", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 40419, "upload_time": "2017-02-06T19:20:09", "url": "https://files.pythonhosted.org/packages/40/0d/42ea2929b36796f34134a3a21fbf3260188d8dadd248525f9b0adfcdc265/git_repo-1.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ea9f9a7b10d8b58c2d99ffeb918ca2e", "sha256": "353b61789b2c31c50f8fcc11b9b991a470a5928cc3ad1268da1b7c8d8a7493b4" }, "downloads": -1, "filename": "git-repo-1.9.0.tar.gz", "has_sig": false, "md5_digest": "3ea9f9a7b10d8b58c2d99ffeb918ca2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179731, "upload_time": "2017-02-06T19:20:07", "url": "https://files.pythonhosted.org/packages/ba/2f/4b01598dd07bb888fe28484d89e1813a93011da0a4c1c58755eeb97fca33/git-repo-1.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "db63897235318feddb70ed273a9d69b4", "sha256": "c2eb5dc03d7c566d2986ec701bff3f571481d319317df97a06dfa248f33c0c7d" }, "downloads": -1, "filename": "git_repo-1.10.3-py3.6.egg", "has_sig": false, "md5_digest": "db63897235318feddb70ed273a9d69b4", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 43444, "upload_time": "2017-11-18T19:40:32", "url": "https://files.pythonhosted.org/packages/f8/06/1173babcf1f2490bba8dab3cd13c9b8b7fa4033a95c311c330036287e77a/git_repo-1.10.3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9e4dabe9e780cb3f2523ce8ee92e7f8b", "sha256": "46ef61f565d2be711aad94aad668d010388b25da0ce4259ed601887446a91d35" }, "downloads": -1, "filename": "git_repo-1.10.3-py3-none-any.whl", "has_sig": false, "md5_digest": "9e4dabe9e780cb3f2523ce8ee92e7f8b", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 50247, "upload_time": "2017-11-18T19:40:30", "url": "https://files.pythonhosted.org/packages/2f/f3/4acf30b14ea70ba563a1ea0b17ec54c93d3dcca737958bd760f3067fc595/git_repo-1.10.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a9439f1aad6fc8c83baafcee0913b3b2", "sha256": "5a1bbc284e270f810136e3356a57d4624575859db897e261fef832fa6b5d6bb4" }, "downloads": -1, "filename": "git-repo-1.10.3.tar.gz", "has_sig": false, "md5_digest": "a9439f1aad6fc8c83baafcee0913b3b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 244380, "upload_time": "2017-11-18T19:40:27", "url": "https://files.pythonhosted.org/packages/a8/27/01e8849c6674e89941b701e5d076bd229f5dd1cfd599b5dadbb88bf9716d/git-repo-1.10.3.tar.gz" } ] }