{ "info": { "author": "Claudio Walser", "author_email": "info@gitcd.io", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Utilities" ], "description": "Continuous tool for working with git\n====================================\n\n.. image:: https://www.gitcd.io/images/logo.svg\n :height: 150px\n :width: 150px\n\n\n\n**Development Status**\n\n.. image:: https://img.shields.io/pypi/status/gitcd.svg\n :target: https://pypi.org/project/gitcd/\n\n.. image:: https://travis-ci.org/gitcd-io/gitcd.svg?branch=master\n :target: https://travis-ci.org/gitcd-io/gitcd\n\n.. image:: https://readthedocs.org/projects/gitcd/badge/?version=latest\n :target: https://gitcd.readthedocs.org/en/latest/?badge=latest\n\n.. image:: https://img.shields.io/github/last-commit/gitcd-io/gitcd.svg\n :target: https://github.com/gitcd-io/gitcd/commits/master\n\n\n\n**Package Info**\n\n.. image:: https://badge.fury.io/py/gitcd.svg\n :target: https://pypi.org/project/gitcd/\n\n.. image:: https://img.shields.io/pypi/wheel/gitcd.svg\n :target: https://pypi.org/project/gitcd/\n\n.. image:: http://img.shields.io/badge/license-APACHE2-blue.svg\n :target: https://github.com/gitcd-io/gitcd/blob/master/LICENSE\n\n.. image:: https://img.shields.io/pypi/pyversions/gitcd.svg\n :target: https://pypi.org/project/gitcd/\n\n\nDescription\n###########\n\n**gitcd** is a little helper for continuous delivery workflows, using git as scm.\n\n\nInstallation of gitcd\n#####################\n\n\n\nPre requisites\n--------------\nGitcd is written in Python3. Most systems still deliver with Python2 as default.\nYou need to install Python3 in order to run gitcd properly.\n\nMacOSX\n______\n\n.. code-block:: bash\n\n brew install python3\n\nUbuntu / Debian\n_______________\n\n.. code-block:: bash\n\n sudo apt-get install python3 python3-pip\n\n\n\n\n\nInstallation of gitcd itself\n----------------------------\nNow you are ready to install gitcd itself, which is quite easy using pip.\n\n.. code-block:: bash\n\n pip3 install --user --upgrade gitcd\n\n\nTrouble using git-cd?\n---------------------\nIf the command \"git-cd\" or \"git cd\" is not available now, you probably need to add the pip binary path to your $PATH variable.\n\nMacOSX\n______\n\nOpen ~/.bash_profile in your favorite editor and add the following lines at the end of the file.\n\n.. container:: alert alert-warning\n\n **Replace with your currently installed python version**\n\n.. code-block:: bash\n\n if [ -d \"$HOME/Library/Python//bin\" ] ; then\n PATH=\"$HOME/Library/Python//bin:$PATH\"\n fi\n\nUbuntu / Debian\n_______________\n\nOpen ~/.profile in your favorite editor and add the following lines at the end of the file.\n\n.. code-block:: bash\n\n if [ -d \"$HOME/.local/bin\" ] ; then\n PATH=\"$HOME/.local/bin:$PATH\"\n fi\n\n\nArgument Completion\n-------------------\nGitcd supports argument completion, to activate it execute the following steps.\n\nMacOSX\n______\n\nUnder OSX it isn't that simple unfortunately. Global completion requires bash support for complete -D, which was introduced in bash 4.2. On OS X or older Linux systems, you will need to update bash to use this feature. Check the version of the running copy of bash with echo $BASH_VERSION. On OS X, install bash via Homebrew (brew install bash), add /usr/local/bin/bash to /etc/shells, and run chsh to change your shell.\n\nYou might consider reading the docs for argcomplete https://argcomplete.readthedocs.io/en/latest/#global-completion\n\nActivate Global argcomplete\n_____________________________\n\nYou are now ready to activate global argcompletion for python with the following command.\n\n.. code-block:: bash\n\n activate-global-python-argcomplete\n\n\n\n\nCLI Usage of gitcd\n##################\n\nFor convenience, you can call gitcd as a git sub command as well as directly. Therefore, you can replace \"git cd\" in any of the following commands with \"git-cd\" if you like it more.\n\n\n.. container:: alert alert-warning\n\n **Note: Python argument completion wont work if you use it as a git sub command!**\n\n\nInitializing gitcd\n------------------\nFirst of all you probably want to initialize one of your local git repositories with gitcd. Change directory to one of your local git repositories and run git-cd init.\nMost of the values should be very self-explanatory. Still, here is a complete list of values you can pass.\n\n- **Branch name for production releases?**\n\n - This is the branch git-cd is creating a tag from if you execute the release command, you probably want to go with **master** here.\n\n- **Branch name for feature development?**\n\n - This is more kind of a prefix for feature branches, it is empty by default. If you wish your feature branch has a name like feature/my-new-feature, you can set this prefix to **feature/**.\n\n- **Branch name for test releases?**\n\n - Pass your branch name where you want to merge code into while executing git-cd test. Let it empty if you don't want to use that feature. At work, we have this for many repositories set to **test**.\n\n- **Version tag prefix?**\n\n - Prefix for your release tags, this is **v** by default which would result in a tag equals to v0.0.1 for example.\n\n- **Version type? You can either set your tag number manually, read it from a version file or generate it by date.**\n\n - This is about how git-cd release gets your current version number you want to release.\n\n - manual means you'll get asked to enter the version number by hand\n - file means gitcd reads the version number from a file, you'll be asked from which file in the next step\n - date means you generate a version number from a date scheme, you'll be asked for the scheme later. As a date version scheme, you can pass any directive for http://strftime.org/.\n\n- **Do you want to execute some additional commands after a release?**\n\n - This is useful if you want to execute any cli script after creating a tag, for example, gitcd itself uses such a script to publish the new release on pypi after creating a new tag. You can see the script here https://github.com/gitcd-io/gitcd/blob/master/publish.sh.\n\n\n.. code-block:: bash\n\n git cd init\n\nThe image below represents the configuration for gitcd itself.\n\n.. container:: responsive-image\n\n .. image:: https://www.gitcd.io/images/cli/git-cd_init.png\n :alt: git cd init\n\n\n\nCheck current version\n---------------------\nYou want to know which version of gitcd you are currently running?\n\n.. code-block:: bash\n\n git cd version\n\n.. container:: responsive-image\n\n .. image:: https://www.gitcd.io/images/cli/git-cd_version.png\n :alt: git cd version\n\n\nUpgrade gitcd itself\n--------------------\nGitcd is able to check your local version with the one published on pypi and upgrade itself if you wish so.\n\n.. code-block:: bash\n\n git cd upgrade\n\n.. container:: responsive-image\n\n .. image:: https://www.gitcd.io/images/cli/git-cd_upgrade-2.png\n :alt: git cd upgrade\n\n\nClean up local branches\n-----------------------\nThe tool is able to cleanup all local branches which doesn't exist on remotes. This is done with the clean command.\n\n.. code-block:: bash\n\n git cd clean\n\n.. container:: responsive-image\n\n .. image:: https://www.gitcd.io/images/cli/git-cd_clean-2.png\n :alt: git cd clean\n\n\nStart a new feature\n-------------------\nStarts a new feature branch from your master branch. If you don't pass a branch name, you will be asked later.\n\n.. code-block:: bash\n\n git cd start \n\n.. container:: responsive-image\n\n .. image:: https://www.gitcd.io/images/cli/git-cd_start.png\n :alt: git cd start\n\n\nUpdating a feature with the master branch\n-----------------------------------------\nMerges the remote master branch into your current feature branch. If you don't pass a branch name, your current branch will be taken.\n\n.. code-block:: bash\n\n git cd refresh \n\n.. container:: responsive-image\n\n .. image:: https://www.gitcd.io/images/cli/git-cd_refresh.png\n :alt: git cd refresh\n\n\nTesting a feature\n-----------------\nYou might have a testing environment or want to run some integration test on a shared or common branch without the need to push out your feature with the next release. Therefore you can't merge it into the master. That's exactly why the git-cd test command exists. You might even have some dedicated tester checking the new feature on this specific branch. So to merge your new feature into your testing branch you call this command, if you don't pass a branch name, your current feature branch will be merged.\n\n.. code-block:: bash\n\n git cd test \n\n.. container:: responsive-image\n\n .. image:: https://www.gitcd.io/images/cli/git-cd_test.png\n :alt: git cd test\n\n\nOpen a pull request for code review\n-----------------------------------\nOpens a pull request to your master branch. If you don't pass a branch name, your current branch will be taken.\n\n.. code-block:: bash\n\n git cd review \n\n.. container:: responsive-image\n\n .. image:: https://www.gitcd.io/images/cli/git-cd_review.png\n :alt: git cd review\n\n\nSee the status of a pull request\n--------------------------------\nYou can see the status of a pull request directly in the command line. If you don't pass a branch name, your current branch will be taken.\n\n.. code-block:: bash\n\n git cd status \n\n.. container:: responsive-image\n\n .. image:: https://www.gitcd.io/images/cli/git-cd_status.png\n :alt: git cd status\n\nFinish a feature branch\n-----------------------\nIf your pull request got approved by a fellow developer and all your tests were running properly, you probably want to merge your feature into the master branch. If you don't pass a branch name, your current branch will be taken.\n\n.. code-block:: bash\n\n git cd finish \n\n.. container:: responsive-image\n\n .. image:: https://www.gitcd.io/images/cli/git-cd_finish.png\n :alt: git cd finish\n\n\nCompare different branches or tags\n----------------------------------\nBy now, your code is in the master branch. Personally, I always like to see what I am going to release by comparing the current branch (which is master after the finish) against the latest tag. If you don't pass a branch or tag name, the latest tag will be taken.\n\n.. code-block:: bash\n\n git cd compare ||\n\n.. container:: responsive-image\n\n .. image:: https://www.gitcd.io/images/cli/git-cd_compare.png\n :alt: git cd compare\n\n\nRelease a new version\n---------------------\nNow your feature is merged and you made sure you know the changes going out, you are ready to ship it. This command creates a new tag from the master branch and executes any command you've setup in the initialize command.\n\n.. code-block:: bash\n\n git cd release\n\n.. container:: responsive-image\n\n .. image:: https://www.gitcd.io/images/cli/git-cd_release.png\n :alt: git cd release\n\nKnown Issues\n############\n\nIf you discover any bugs, feel free to create an issue on GitHub or fork this repository\nand send us a pull request.\n\n`Issues List`_.\n\n\nAuthors\n#######\n\n- Claudio Walser (https://github.com/claudio-walser)\n- Phil Christen (https://github.com/pchr-srf)\n- Urban Etter (https://github.com/mms-uret)\n- Gianni Carafa (https://github.com/mms-gianni)\n\n\nContributing\n############\n\n1. Fork it\n2. Add this repository as an origin (``git remote add upstream https://github.com/gitcd-io/gitcd.git``)\n3. Create your feature branch (``git cd start my-new-feature``)\n4. Commit your changes (``git commit -am 'Add some feature'``)\n5. Push to the branch (``git push origin feature/my-new-feature``)\n6. Create new Pull Request against upstream (``git cd review my-new-feature``)\n\n\nLicense\n#######\n\nApache License 2.0 see\nhttps://github.com/gitcd-io/gitcd/blob/master/LICENSE\n\n.. _Issues List: https://github.com/gitcd-io/gitcd/issues\n\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://www.gitcd.io", "keywords": "git,application,continuos delivery", "license": "Apache License", "maintainer": "", "maintainer_email": "", "name": "gitcd", "package_url": "https://pypi.org/project/gitcd/", "platform": "", "project_url": "https://pypi.org/project/gitcd/", "project_urls": { "Homepage": "https://www.gitcd.io" }, "release_url": "https://pypi.org/project/gitcd/2.1.8/", "requires_dist": [ "argcomplete", "argparse", "packaging", "pyyaml", "requests", "simpcli", "typing" ], "requires_python": "", "summary": "Tool for continuous delivery using git", "version": "2.1.8" }, "last_serial": 5300693, "releases": { "1.5.10": [ { "comment_text": "", "digests": { "md5": "33d481cfbb096f96da19185cbb3fd093", "sha256": "b275b4f946de7459905a8ba9e6dcb81c67f3c979d6948a2d76df89a9a1bf08a7" }, "downloads": -1, "filename": "gitcd-1.5.10-py3-none-any.whl", "has_sig": false, "md5_digest": "33d481cfbb096f96da19185cbb3fd093", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21814, "upload_time": "2017-10-22T11:18:35", "url": "https://files.pythonhosted.org/packages/f4/3f/46be698ce18691ab901bdb4c8fca2484c6a54604482d14f5cbaa81bb05c4/gitcd-1.5.10-py3-none-any.whl" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "5d2448fb915dd762a382d30c900a4e0c", "sha256": "ea934b71fccacb19bba58fe1e0f06f5dc8a93f7567ba695a272e6ca6876479e7" }, "downloads": -1, "filename": "gitcd-1.5.3-py3.6.egg", "has_sig": false, "md5_digest": "5d2448fb915dd762a382d30c900a4e0c", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 41969, "upload_time": "2017-10-18T20:11:38", "url": "https://files.pythonhosted.org/packages/64/c2/d8486db0ab332bbe3a119e87ad505cb332e3feebd3aa7dcf721e2b41a773/gitcd-1.5.3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "b107ea21d7ade7d28fbe94274d2b80e1", "sha256": "4f1977ba57ef5c1b8ceaf3b5b8e2ec7be251bdef93723b4d682012daccd653bf" }, "downloads": -1, "filename": "gitcd-1.5.3-py3-none-any.whl", "has_sig": false, "md5_digest": "b107ea21d7ade7d28fbe94274d2b80e1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18338, "upload_time": "2017-10-18T20:11:36", "url": "https://files.pythonhosted.org/packages/3e/de/4fb15897db9baa0bd15d533a957e48cd05d210a25888cf1250f810f8a738/gitcd-1.5.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "703ce89a54c9646f7ddedbec4923080e", "sha256": "d20d21636298db8bbcd697dbc538b8e048acd1f5604c0b73f978479a9fd39eb5" }, "downloads": -1, "filename": "gitcd-1.5.3.tar.gz", "has_sig": false, "md5_digest": "703ce89a54c9646f7ddedbec4923080e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10027, "upload_time": "2017-10-18T20:11:41", "url": "https://files.pythonhosted.org/packages/7b/c9/e22c6723b96a13b292c4b1609b7c9bc593840eb57007d703894200807db6/gitcd-1.5.3.tar.gz" } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "156a6409783b73d3807171f810dbccae", "sha256": "309873a37f92f2011ba6de86ce3a21b13ca8679bbac46768a7f4f3de5ac5eb23" }, "downloads": -1, "filename": "gitcd-1.5.4-py3-none-any.whl", "has_sig": false, "md5_digest": "156a6409783b73d3807171f810dbccae", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 18338, "upload_time": "2017-10-19T21:27:55", "url": "https://files.pythonhosted.org/packages/09/de/0849c93d0e537cf38a12e5cae09b7c3c074d40c7d9cdf9da62bbe1538862/gitcd-1.5.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e07f145938ae5dff3bf779a0ac3f3a36", "sha256": "d07fca91de1c2d1eaec2749a2c11a068577301d30bf850fcd837693390880c8b" }, "downloads": -1, "filename": "gitcd-1.5.4.tar.gz", "has_sig": false, "md5_digest": "e07f145938ae5dff3bf779a0ac3f3a36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10037, "upload_time": "2017-10-19T21:27:57", "url": "https://files.pythonhosted.org/packages/3f/03/68247c3167b5b926fa2bb318ef77ad103c18323d22dcc539272fc85d13f6/gitcd-1.5.4.tar.gz" } ], "1.5.5": [ { "comment_text": "", "digests": { "md5": "c643310817b800a93de9b73d991d02d7", "sha256": "edb25e1ee0aa7945db31d4dad6ec53586ff553fc0e29853cd6ff7302737d6396" }, "downloads": -1, "filename": "gitcd-1.5.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c643310817b800a93de9b73d991d02d7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18420, "upload_time": "2017-10-20T21:26:37", "url": "https://files.pythonhosted.org/packages/df/46/2b1d055082ef515150339f83560f5e9badb1b7097d1fcb0bff31f7d66247/gitcd-1.5.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9d44fc82c6ef584b0ddfe2ac91615f47", "sha256": "a681e952d2c3633dea7fbe0679b658842b6f9e7dd6e308c3a96537951b9699f7" }, "downloads": -1, "filename": "gitcd-1.5.5-py3.5.egg", "has_sig": false, "md5_digest": "9d44fc82c6ef584b0ddfe2ac91615f47", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 42719, "upload_time": "2017-10-20T21:26:39", "url": "https://files.pythonhosted.org/packages/ca/32/123eb6c90eeb808b5783b32e387b4e567e34671a8f1472caf972ed2b66da/gitcd-1.5.5-py3.5.egg" } ], "1.5.6": [ { "comment_text": "", "digests": { "md5": "fa87b4ebcb821b2bec26661022bc39c9", "sha256": "c1540ef648e74bac089d1c96c3da6bccd1562665edfe322039feadc4e4830fbd" }, "downloads": -1, "filename": "gitcd-1.5.6-py2-none-any.whl", "has_sig": false, "md5_digest": "fa87b4ebcb821b2bec26661022bc39c9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21613, "upload_time": "2017-10-21T10:47:38", "url": "https://files.pythonhosted.org/packages/2c/c8/6b5f64709d579a7369e9b5a0cf0e9495755b68dfbb5ccdee2bd108d26eca/gitcd-1.5.6-py2-none-any.whl" } ], "1.5.7": [ { "comment_text": "", "digests": { "md5": "42731b2dfac630f93e3f39366bd3a1d7", "sha256": "500e066bb52a9e958c7dad17a033942e1eead042523cd24237d4f025d66feb79" }, "downloads": -1, "filename": "gitcd-1.5.7-py2-none-any.whl", "has_sig": false, "md5_digest": "42731b2dfac630f93e3f39366bd3a1d7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 21701, "upload_time": "2017-10-21T11:31:49", "url": "https://files.pythonhosted.org/packages/04/29/43b167b5df37b3f73e741b96467c11112501c4711a91e721ced0089c6ad4/gitcd-1.5.7-py2-none-any.whl" } ], "1.5.8": [ { "comment_text": "", "digests": { "md5": "768306d97df273c621b8ec27dc88d98a", "sha256": "0c830526f48372aaf2484f76f3808784a75fc4c6dcc85a6c8629881255773338" }, "downloads": -1, "filename": "gitcd-1.5.8-py3-none-any.whl", "has_sig": false, "md5_digest": "768306d97df273c621b8ec27dc88d98a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21682, "upload_time": "2017-10-21T12:45:37", "url": "https://files.pythonhosted.org/packages/5c/19/012110a059e7e20185c47c5dd7f57197eb1b0a4a3e76f33c77c56a47f76a/gitcd-1.5.8-py3-none-any.whl" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "77dd56512775bec627c24764b9fb8212", "sha256": "289323a5b3230c5b0d00aa9870ccbe288be551f4185b1733d39399fd5d55ed0f" }, "downloads": -1, "filename": "gitcd-1.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "77dd56512775bec627c24764b9fb8212", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22626, "upload_time": "2017-10-22T17:32:50", "url": "https://files.pythonhosted.org/packages/37/f7/d1d5456fd8045f90e5cb5b52fb87c1d9fb1053b544ed8ede3aee721e20ad/gitcd-1.6.0-py3-none-any.whl" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "0010a2e747df370d54cc8a86c500601a", "sha256": "c2075f83b21da1356a72ffd67e2144755dc603512bde1688c4d2d3c6cbde6915" }, "downloads": -1, "filename": "gitcd-1.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0010a2e747df370d54cc8a86c500601a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22802, "upload_time": "2017-10-22T17:57:56", "url": "https://files.pythonhosted.org/packages/db/36/60f86f75820af4c1bf2e8da843c282ea1b2c29a8ebe7f9cdea9cc19c9326/gitcd-1.6.1-py3-none-any.whl" } ], "1.6.10": [ { "comment_text": "", "digests": { "md5": "e1400b50f7a36e4b3a5918caa9cb21fd", "sha256": "4251951d4447ca65071a74f5ccc6629e7a4f89333a7f8eaa4b2e943387aafe06" }, "downloads": -1, "filename": "gitcd-1.6.10-py3-none-any.whl", "has_sig": false, "md5_digest": "e1400b50f7a36e4b3a5918caa9cb21fd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23848, "upload_time": "2017-10-26T19:23:16", "url": "https://files.pythonhosted.org/packages/68/9e/046c213b4bc22a100f0d13d17bbd511620ccce2bbf9c169627b2b936155d/gitcd-1.6.10-py3-none-any.whl" } ], "1.6.11": [ { "comment_text": "", "digests": { "md5": "1a9404ae084acd68fbbdbae34463d8fa", "sha256": "854c627dab01a861c1be386e01069cdf013815e3a87213961ee9bf2c8ba44fbc" }, "downloads": -1, "filename": "gitcd-1.6.11-py3-none-any.whl", "has_sig": false, "md5_digest": "1a9404ae084acd68fbbdbae34463d8fa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23889, "upload_time": "2017-10-26T20:22:52", "url": "https://files.pythonhosted.org/packages/fb/d8/7da164abd264531f170c01cca2a73bd7182fe9d16deb8b98dfa19a58df58/gitcd-1.6.11-py3-none-any.whl" } ], "1.6.12": [ { "comment_text": "", "digests": { "md5": "372f240090c585be2400ff79a6fea556", "sha256": "0e8f02471bcfd16559539aa627f3f2fcc23195631117c3d0970b81aa21503ade" }, "downloads": -1, "filename": "gitcd-1.6.12-py3-none-any.whl", "has_sig": false, "md5_digest": "372f240090c585be2400ff79a6fea556", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23915, "upload_time": "2017-10-30T21:18:56", "url": "https://files.pythonhosted.org/packages/37/dd/01d40b9f2c4c9f83924d9fe59753a68076f212f9ebc38514b4a176cf0fe4/gitcd-1.6.12-py3-none-any.whl" } ], "1.6.13": [ { "comment_text": "", "digests": { "md5": "eb178cb64bdc1b00b5585f09470fdc37", "sha256": "04b1e134d1257cd40edda4d1a1acbbdc7e0f551f9b1a80d01173860309c759cd" }, "downloads": -1, "filename": "gitcd-1.6.13-py3-none-any.whl", "has_sig": false, "md5_digest": "eb178cb64bdc1b00b5585f09470fdc37", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23952, "upload_time": "2017-11-01T08:06:06", "url": "https://files.pythonhosted.org/packages/37/5a/494299f4a48eb070c269d971d9b2e6c25a55e615f9f18f4e8c65ce54667e/gitcd-1.6.13-py3-none-any.whl" } ], "1.6.14": [ { "comment_text": "", "digests": { "md5": "54b829c1e1322a6983311a2c5a009412", "sha256": "df80f47bb80eb9950c767573822d73867c6c94ac30bee6219a8dbfdedfbc994c" }, "downloads": -1, "filename": "gitcd-1.6.14-py3-none-any.whl", "has_sig": false, "md5_digest": "54b829c1e1322a6983311a2c5a009412", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24170, "upload_time": "2017-11-07T21:49:37", "url": "https://files.pythonhosted.org/packages/35/24/37165535e26ea0faac4a7dc2063a1cb20f8065cd98e9a207b91d7b41f1fb/gitcd-1.6.14-py3-none-any.whl" } ], "1.6.15": [ { "comment_text": "", "digests": { "md5": "3d9cbf838ecd5ed003d56f23f68d630a", "sha256": "d3a086d4503370e8be29b357213eaa0396f542e95d2fd0c4787dcc0830174939" }, "downloads": -1, "filename": "gitcd-1.6.15-py3-none-any.whl", "has_sig": false, "md5_digest": "3d9cbf838ecd5ed003d56f23f68d630a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24188, "upload_time": "2017-11-10T17:02:13", "url": "https://files.pythonhosted.org/packages/a4/f8/6d6fefd0550d323c3c84e287823ca1fb63b234f2a26634e62e718a9dc8c3/gitcd-1.6.15-py3-none-any.whl" } ], "1.6.16": [ { "comment_text": "", "digests": { "md5": "52e394f99d45e7a4ac6ebdc6dfa1d83d", "sha256": "7e7e86c4d51a646977d545558ef41d2ae87eeee81af30b516e7b0e408734240e" }, "downloads": -1, "filename": "gitcd-1.6.16-py3-none-any.whl", "has_sig": false, "md5_digest": "52e394f99d45e7a4ac6ebdc6dfa1d83d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 24200, "upload_time": "2017-11-12T15:47:21", "url": "https://files.pythonhosted.org/packages/99/20/a96f83be764df6e6af1ba2c824880de7622c9201f2228bf8447873a673c1/gitcd-1.6.16-py3-none-any.whl" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "db3696d422d4e269debbc9056ace3d79", "sha256": "c0dcb48991aed2867113564fc448bd5a93f6e3c9fa93a033567f874506f624b4" }, "downloads": -1, "filename": "gitcd-1.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "db3696d422d4e269debbc9056ace3d79", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22809, "upload_time": "2017-10-22T18:03:50", "url": "https://files.pythonhosted.org/packages/d2/6c/3898e940a0535b9d33ddf06df72b4e7dbc6735e1264eb6043c672d139139/gitcd-1.6.2-py3-none-any.whl" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "ef0d3b8fa85bdbc59a26b5ea8bc4acd4", "sha256": "7f3ac067dcd56570a61b794d1aa6de2410bb7971c8dab1cbab3af1622387ba9a" }, "downloads": -1, "filename": "gitcd-1.6.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ef0d3b8fa85bdbc59a26b5ea8bc4acd4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22919, "upload_time": "2017-10-22T18:14:08", "url": "https://files.pythonhosted.org/packages/2b/ab/c75d689b3d1b7c9cd8a74b76d9a8b9ccc10015b36f1201ec8a9fcf2fd22d/gitcd-1.6.3-py3-none-any.whl" } ], "1.6.5": [ { "comment_text": "", "digests": { "md5": "5f3a1af9512b293f937492e3be47e21c", "sha256": "199cc9c8bd4d9dde6d93e2030326601acdc6696c36362b014ba2b243e8dd8f4b" }, "downloads": -1, "filename": "gitcd-1.6.5-py3-none-any.whl", "has_sig": false, "md5_digest": "5f3a1af9512b293f937492e3be47e21c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23267, "upload_time": "2017-10-22T20:17:48", "url": "https://files.pythonhosted.org/packages/ad/34/dd93e5fac6fc815244f525c549dad1ef36c10966717b747e59e98ac7dbe7/gitcd-1.6.5-py3-none-any.whl" } ], "1.6.6": [ { "comment_text": "", "digests": { "md5": "a6af2e05a30cd621f24e9506c82f843e", "sha256": "9296a3660285f96496e404b701c394817a5773e00d554851cf23bc11345aa6aa" }, "downloads": -1, "filename": "gitcd-1.6.6-py3-none-any.whl", "has_sig": false, "md5_digest": "a6af2e05a30cd621f24e9506c82f843e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23699, "upload_time": "2017-10-23T09:25:43", "url": "https://files.pythonhosted.org/packages/74/84/bb95776051b2779fe5298a008c841ced40a1787d2735d4cf7b98f1afa52e/gitcd-1.6.6-py3-none-any.whl" } ], "1.6.7": [ { "comment_text": "", "digests": { "md5": "d9d5151b05f3214592d67283b744ec30", "sha256": "127250cb63e3d3d733056b3d61fec7cb36f66b6df794592d5b68d2d0c40633c0" }, "downloads": -1, "filename": "gitcd-1.6.7-py3-none-any.whl", "has_sig": false, "md5_digest": "d9d5151b05f3214592d67283b744ec30", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23664, "upload_time": "2017-10-24T07:56:56", "url": "https://files.pythonhosted.org/packages/58/09/7c92e71fdb4bdaefdd3fa2287d4a2049f545ee385b12d4d9cc43dbcaf738/gitcd-1.6.7-py3-none-any.whl" } ], "1.6.8": [ { "comment_text": "", "digests": { "md5": "0d945d3910911fc7295a3d6cc4eda495", "sha256": "906be12d865a2697b9b0c2b80c46195f7278c533068a9e53b85f5ff9552d327d" }, "downloads": -1, "filename": "gitcd-1.6.8-py3-none-any.whl", "has_sig": false, "md5_digest": "0d945d3910911fc7295a3d6cc4eda495", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 23676, "upload_time": "2017-10-24T08:00:31", "url": "https://files.pythonhosted.org/packages/81/09/417ac641470e6f6caf119242f20bfcc8526335de6e8ffb5a64038c26b663/gitcd-1.6.8-py3-none-any.whl" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "f69905f7fd9b5f624323d456a2cc1360", "sha256": "0cc44202790d8e3333500bea3dd82a6004d451d9fea60f2e9e682a80d6c7b7b9" }, "downloads": -1, "filename": "gitcd-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f69905f7fd9b5f624323d456a2cc1360", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 35174, "upload_time": "2018-01-23T18:44:10", "url": "https://files.pythonhosted.org/packages/fa/28/cfa580a5b2ae1aa434ad4269a9f81990b7913669c3dee34f5dc5b6d83ca7/gitcd-2.0.0-py3-none-any.whl" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "9aab8c03eacb0be15ab610d55bf727c7", "sha256": "b2deea8ed0992efe2b93228750a0e86d37dd004fb514ea18f8a15c7eeffa4e0d" }, "downloads": -1, "filename": "gitcd-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9aab8c03eacb0be15ab610d55bf727c7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 35188, "upload_time": "2018-01-23T19:41:25", "url": "https://files.pythonhosted.org/packages/ca/9a/e67c4f9d0fbbecd710b1635c19e748817c1cefb1646b451ea80d851c0eea/gitcd-2.0.1-py3-none-any.whl" } ], "2.0.10": [ { "comment_text": "", "digests": { "md5": "b28ddd993e6ec9a1833809730db7cd40", "sha256": "970c2596e04b67dc8bc9709540bc8b24b2af24722bdddb059dfa9c53808d4a1e" }, "downloads": -1, "filename": "gitcd-2.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "b28ddd993e6ec9a1833809730db7cd40", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41143, "upload_time": "2018-03-10T10:38:19", "url": "https://files.pythonhosted.org/packages/ff/e6/e763da06554d8a2bda84b623a9dcac8f445dfff70b138f6ae1fb6f0a559b/gitcd-2.0.10-py3-none-any.whl" } ], "2.0.11": [ { "comment_text": "", "digests": { "md5": "c23d81e5502d1c7d450b8a3534d55c20", "sha256": "d75f0686a0f7ee341540e4857cb5a3a08646b98f54ebb2471097dfadf00a0d55" }, "downloads": -1, "filename": "gitcd-2.0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "c23d81e5502d1c7d450b8a3534d55c20", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41114, "upload_time": "2018-03-10T14:23:21", "url": "https://files.pythonhosted.org/packages/b7/d2/db1bdd742a967720054aff59cdd937764050dd9c2091dd77ca9e95fd4bf0/gitcd-2.0.11-py3-none-any.whl" } ], "2.0.12": [ { "comment_text": "", "digests": { "md5": "9dbc15c3d028e1c4d9ff38f62e35aa0e", "sha256": "f7fdf8e40b988666a9e2f911f420149a64c03dacd43ef9c4953a059b9b298717" }, "downloads": -1, "filename": "gitcd-2.0.12-py3-none-any.whl", "has_sig": false, "md5_digest": "9dbc15c3d028e1c4d9ff38f62e35aa0e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41114, "upload_time": "2018-03-11T07:14:06", "url": "https://files.pythonhosted.org/packages/e4/b1/bd22c090fb1baaa6fd2fd1fff6f0e0cb76a0d494c6a0565e9889e9f38e1a/gitcd-2.0.12-py3-none-any.whl" } ], "2.0.13": [ { "comment_text": "", "digests": { "md5": "da6b1f4c3d7c4de6f31a47270c8ccb5c", "sha256": "e7f3edcf45b6ca708925f1e7f5c4bc53dc2581a8c9c226bc3d6449993a5a6ec2" }, "downloads": -1, "filename": "gitcd-2.0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "da6b1f4c3d7c4de6f31a47270c8ccb5c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41073, "upload_time": "2018-03-11T09:37:37", "url": "https://files.pythonhosted.org/packages/cf/fa/7382580720596a48d4ac9d995c1e21cafb7de2312f2599e5db4c172a1e23/gitcd-2.0.13-py3-none-any.whl" } ], "2.0.14": [ { "comment_text": "", "digests": { "md5": "dd810abbe67d6a78411d811f299e2062", "sha256": "71819fc2f52e67be51acc765153e8872941e13cb94aceb371b82620a5377db0a" }, "downloads": -1, "filename": "gitcd-2.0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "dd810abbe67d6a78411d811f299e2062", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42822, "upload_time": "2018-03-24T05:40:36", "url": "https://files.pythonhosted.org/packages/18/9e/b365ef98cf31760641aa25a9683c8b3d40badf3f1bda02ba32e7819743f2/gitcd-2.0.14-py3-none-any.whl" } ], "2.0.15": [ { "comment_text": "", "digests": { "md5": "7e0c67f55995922694b2b8199c005a66", "sha256": "41cc1fde6dd7e540f5c6e443878b185024637e564818aed7acbf5a5135de6991" }, "downloads": -1, "filename": "gitcd-2.0.15-py3-none-any.whl", "has_sig": false, "md5_digest": "7e0c67f55995922694b2b8199c005a66", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43140, "upload_time": "2018-06-04T06:17:03", "url": "https://files.pythonhosted.org/packages/8e/2b/02ce2e779ad9a6d1affc51f099e4463ffbdb4e29a747caaa7e2b6436ad9b/gitcd-2.0.15-py3-none-any.whl" } ], "2.0.16": [ { "comment_text": "", "digests": { "md5": "78a61163630cd135a8ddc283e6d1fc8f", "sha256": "7efe0335729ed6cfe54c643c6c6e8d752f2dad56cd8020bd5a03d5319f13cf23" }, "downloads": -1, "filename": "gitcd-2.0.16-py3-none-any.whl", "has_sig": false, "md5_digest": "78a61163630cd135a8ddc283e6d1fc8f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43118, "upload_time": "2019-02-02T20:43:43", "url": "https://files.pythonhosted.org/packages/d4/08/94e5b8c9dd3a01d671485d6453a52980003fece5d4336270855f73cbbfdd/gitcd-2.0.16-py3-none-any.whl" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "eec5a744d6918b70e4548dad7923be14", "sha256": "947ba62cf2d170ca8cf9c899161f26627f08f5230cdb7b613eb5d65651ad6f6f" }, "downloads": -1, "filename": "gitcd-2.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "eec5a744d6918b70e4548dad7923be14", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 35197, "upload_time": "2018-01-25T23:11:00", "url": "https://files.pythonhosted.org/packages/6a/80/d99f1bc1404ea6b61579a760a7ea658447198f18710ae7f1bc55e9ed14c3/gitcd-2.0.2-py3-none-any.whl" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "7946536aac71f7654c399add4f304820", "sha256": "8a6860c7366ff0f36f31e577a84512ce913a0bf8a171e3b055c7f60f774c6f9f" }, "downloads": -1, "filename": "gitcd-2.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "7946536aac71f7654c399add4f304820", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 35367, "upload_time": "2018-02-07T18:22:03", "url": "https://files.pythonhosted.org/packages/77/00/ddb5d69c387eb9e24de12dd59ccefb2c5b30999dc086352a7e7f53f4321a/gitcd-2.0.3-py3-none-any.whl" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "18c6e32c28479223a6a91c6c43603619", "sha256": "03024d49666ae615de88e8a75ab574fb1f64729ada2c4e957a4b308a70f89413" }, "downloads": -1, "filename": "gitcd-2.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "18c6e32c28479223a6a91c6c43603619", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 35369, "upload_time": "2018-02-15T00:08:47", "url": "https://files.pythonhosted.org/packages/72/5c/97fb5c101f1cae5f1352674132cdec1522601a8e2c632bb762f96b9955c3/gitcd-2.0.4-py3-none-any.whl" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "826e710becdcc2397e6d16e823644863", "sha256": "4a29718d5092a37184a393c6587b85dfee27c17cad45cdd9fadf6bf5955f55e0" }, "downloads": -1, "filename": "gitcd-2.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "826e710becdcc2397e6d16e823644863", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 35827, "upload_time": "2018-02-16T06:07:47", "url": "https://files.pythonhosted.org/packages/22/99/e8c1b1abde844b4d5b9e580336e77b45f4acf474622a55d9f31e46ad048c/gitcd-2.0.5-py3-none-any.whl" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "879806638bc082a430516b728a6a9528", "sha256": "d4a4b3f2f55d9f50ed62a2a01ca8daf5f8ab0ff1bc793a3d18d8070812a769b3" }, "downloads": -1, "filename": "gitcd-2.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "879806638bc082a430516b728a6a9528", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 35856, "upload_time": "2018-02-20T21:09:22", "url": "https://files.pythonhosted.org/packages/a5/46/8d95c1f54649c0b2ebdc3186016faa08d595f7c21f8b35d701edd5d4f7a5/gitcd-2.0.6-py3-none-any.whl" } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "ff6dcf6985bb66cfefa022587235caf0", "sha256": "3fd20864a42b0c2cd0f0f00ff6da118feb2ef110995ec64aa380abff9d8b7f99" }, "downloads": -1, "filename": "gitcd-2.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "ff6dcf6985bb66cfefa022587235caf0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 38680, "upload_time": "2018-03-03T06:21:22", "url": "https://files.pythonhosted.org/packages/f5/21/6beafcd887ff2ee355d9781e1eda11a3e9f2b75504c7b12fa8570edd78a5/gitcd-2.0.7-py3-none-any.whl" } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "f53908056f9ca11079183ad53e3b3618", "sha256": "104b59b0d7f0d7ed848ae8951ef9a5c1d0de8d951cfce22dd5e019960f3862fa" }, "downloads": -1, "filename": "gitcd-2.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "f53908056f9ca11079183ad53e3b3618", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41124, "upload_time": "2018-03-10T07:20:59", "url": "https://files.pythonhosted.org/packages/c9/42/c237e467334c1a6fcc2d77ed13ae23974da5bc2506c0f6ab1f56e88dd867/gitcd-2.0.8-py3-none-any.whl" } ], "2.0.9": [ { "comment_text": "", "digests": { "md5": "f5db16d4b3069e237e1c6077fb24842c", "sha256": "dc72107e5920b4b728d39326112ed81f1cc84f682571e188cfd5c1dfd9964165" }, "downloads": -1, "filename": "gitcd-2.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "f5db16d4b3069e237e1c6077fb24842c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41134, "upload_time": "2018-03-10T09:44:37", "url": "https://files.pythonhosted.org/packages/66/4b/f906b010e5ca49aedf59e43be391a983d113549bcafe3d97475afeb628ab/gitcd-2.0.9-py3-none-any.whl" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "36f8e0ef61e2db7e20d8019ab5a1faa1", "sha256": "1b0bda9e79e293df3abe3725f675c5f7ef25efa7a6723219eabd7acda2b316f6" }, "downloads": -1, "filename": "gitcd-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "36f8e0ef61e2db7e20d8019ab5a1faa1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43745, "upload_time": "2019-02-02T20:45:11", "url": "https://files.pythonhosted.org/packages/b3/79/259e2f50469058c582a5bb5f45d30adc9d63f295aeea44fdc0fb54468ee7/gitcd-2.1.0-py3-none-any.whl" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "b11f9089a4e612c2f87dd289c2f1f166", "sha256": "2573ab7c476ae446ccbf46dc8968784457dc983677475dda6ab8329258323a0d" }, "downloads": -1, "filename": "gitcd-2.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b11f9089a4e612c2f87dd289c2f1f166", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43874, "upload_time": "2019-03-01T07:17:03", "url": "https://files.pythonhosted.org/packages/d1/86/12b95d6502b7f2d69b213f9843e2bb29123f5eb11cd10a4cb160c729bddc/gitcd-2.1.1-py3-none-any.whl" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "2d0e6fc207ad9fc87b824edb62b6947a", "sha256": "302ebe4ba54b1372f212815290ff32eb7b99b054f189769f0a19f995ad1b873c" }, "downloads": -1, "filename": "gitcd-2.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2d0e6fc207ad9fc87b824edb62b6947a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43852, "upload_time": "2019-03-11T20:49:28", "url": "https://files.pythonhosted.org/packages/82/bd/8ef551106ad0e0e658d190c8909cd5af2c139c960eddca7b4cba2ef788b2/gitcd-2.1.2-py3-none-any.whl" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "ade628e567a9bc7737a97c56f1f9e106", "sha256": "74f6abfa3ed29d7ce3aacad6b6a571361750faddc348272c347aba256f25325a" }, "downloads": -1, "filename": "gitcd-2.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ade628e567a9bc7737a97c56f1f9e106", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43876, "upload_time": "2019-03-12T20:18:12", "url": "https://files.pythonhosted.org/packages/d8/21/984a4d759d6d735f331e7f3e9ee62cb24606b36f24dbe6f352a847cf1891/gitcd-2.1.3-py3-none-any.whl" } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "41f38f4b074143d25f231f9be7e47a12", "sha256": "fc063dfaacfb0d72306a9c1b87101c141eafb3867835b88de52c678b49ea74d9" }, "downloads": -1, "filename": "gitcd-2.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "41f38f4b074143d25f231f9be7e47a12", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43897, "upload_time": "2019-03-13T17:33:32", "url": "https://files.pythonhosted.org/packages/47/6b/692dedd64455511c275f0881ad94457a838da82fc1bd7a95edd68173eb25/gitcd-2.1.4-py3-none-any.whl" } ], "2.1.5": [ { "comment_text": "", "digests": { "md5": "9e62061237bfdb668d7d1b5f4638fb92", "sha256": "b055b134db91e802f83c26650d5e541294c3ce419e0830dd3224aba9459e1f5d" }, "downloads": -1, "filename": "gitcd-2.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "9e62061237bfdb668d7d1b5f4638fb92", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44314, "upload_time": "2019-03-14T19:58:17", "url": "https://files.pythonhosted.org/packages/a2/3b/bbc23679a68579db8453c2676a9f93f71087016a9bf6cc907356b57251cf/gitcd-2.1.5-py3-none-any.whl" } ], "2.1.6": [ { "comment_text": "", "digests": { "md5": "a7cf71642c8c6bc74eb0341d8b29da63", "sha256": "a4974e879ad7987714f36ec1e15a6571de2c014b0759e338d8a58d100ae649e1" }, "downloads": -1, "filename": "gitcd-2.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "a7cf71642c8c6bc74eb0341d8b29da63", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44399, "upload_time": "2019-03-14T20:02:50", "url": "https://files.pythonhosted.org/packages/f9/77/2f913ce42d6f47ce4a9149f81d94781af888d250bd6c3dbc78baa1c30c35/gitcd-2.1.6-py3-none-any.whl" } ], "2.1.7": [ { "comment_text": "", "digests": { "md5": "c0502f6b42c45f789c5c225f84454901", "sha256": "df8b66e271b1ae22592257e11960daeb8c297ea469cc191c7e0091f517ab31ae" }, "downloads": -1, "filename": "gitcd-2.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "c0502f6b42c45f789c5c225f84454901", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44396, "upload_time": "2019-05-21T19:47:03", "url": "https://files.pythonhosted.org/packages/03/95/044dc1074b54532a42ed71dc28eaf30a3598109956205b7895c849e9afb6/gitcd-2.1.7-py3-none-any.whl" } ], "2.1.8": [ { "comment_text": "", "digests": { "md5": "01519beda571e6580d2525f4f50d1a15", "sha256": "34a9dd4fbea0e04ad9b5c7e5072415cd6f3804178ac3c01f860010860cd49613" }, "downloads": -1, "filename": "gitcd-2.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "01519beda571e6580d2525f4f50d1a15", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44477, "upload_time": "2019-05-22T03:50:19", "url": "https://files.pythonhosted.org/packages/2d/d0/970a468fa4c2e43e08a946cde5b1b4a53037befefa2127d7a45081be21a8/gitcd-2.1.8-py3-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "01519beda571e6580d2525f4f50d1a15", "sha256": "34a9dd4fbea0e04ad9b5c7e5072415cd6f3804178ac3c01f860010860cd49613" }, "downloads": -1, "filename": "gitcd-2.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "01519beda571e6580d2525f4f50d1a15", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44477, "upload_time": "2019-05-22T03:50:19", "url": "https://files.pythonhosted.org/packages/2d/d0/970a468fa4c2e43e08a946cde5b1b4a53037befefa2127d7a45081be21a8/gitcd-2.1.8-py3-none-any.whl" } ] }