{ "info": { "author": "Markus Siemens", "author_email": "markus@m-siemens.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Version Control", "Topic :: Utilities" ], "description": "PyGitUp |Version| |Build Status| |Coverage Status|\n==================================================\n\n|PyGitUp|_ is a Python port of\n`aanand/git-up `__. It not only\nfully covers the abilities of git-up and should be a drop-in replacement,\nbut also extends it slightly.\n\n.. |PyGitUp| replace:: ``PyGitUp``\n.. _PyGitUp: https://github.com/msiemens/PyGitUp\n\nWhy use ``git up``?\n-------------------\n\n git pull has two problems:\n\n * It merges upstream changes by default, when it's really more polite to `rebase\n over them `__,\n unless your collaborators enjoy a commit graph that looks like bedhead.\n\n * It only updates the branch you're currently on, which means git push will\n shout at you for being behind on branches you don't particularly care about\n right now.\n\n (https://github.com/aanand/git-up/)\n\nDemonstration\n-------------\n\n.. image:: http://i.imgur.com/EC3pvYu.gif\n\nWhy use the Python port?\n------------------------\n\nI wasn't able to use the original ``git-up``, because I didn't want to install\na whole Ruby suite just for `git-up` and even with Ruby installed, there were\nsome problems running on my Windows machine. So, my reasons for writing\nand using this port are:\n\n1. Windows support.\n2. Written in Python ;)\n\nHow do I install it?\n--------------------\n\n1. Install ``git-up`` via `pip `__: ``$ pip install git-up``\n2. ``cd`` to your project's directory.\n3. Run ``git up`` and enjoy!\n\nNote for Windows users:\n~~~~~~~~~~~~~~~~~~~~~~~\n\nSee `these instructions `__\nfor installing pip, if you haven't already installed it. And don't forget\nto either:\n\n- make your ``Python/Scripts`` and ``Python/Lib/site-packages`` writable for\n you,\n- run ``pip`` with admin privileges\n- or use ``pip install --user git-up`` and add ``%APPDATA%/Python/Scripts``\n to ``%PATH%``.\n\nOtherwise pip will refuse to install ``git-up`` due to ``Access denied`` errors.\n\nPython version compatibility:\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nPython 2.7, 3.4, 3.5 and 3.6 are supported :)\n\nOptions and Configuration\n-------------------------\n\nCommand Line Arguments\n~~~~~~~~~~~~~~~~~~~~~~\n\n- ``git up -h`` shows a help message.\n\n- ``git up --quiet`` suppresses all output except for error messages.\n\n- ``git up --no-fetch`` skips fetching the remote and rebases all local branches.\n\n- ``git up --version`` shows the current version and optionally checks for\n updates (see below).\n\nConfiguration\n~~~~~~~~~~~~~\n\nTo configure ``PyGitUp``, you can set options in your git config. Run\n``git config [--global] git-up.[name] [value]`` to set one of these\noptions:\n\n- ``git-up.bundler.check [true|*false*]``: If set to\n ``true``,\\ ``PyGitUp`` will check your app for any new bundled gems\n and suggest a ``bundle install`` if necessary.\n\n- ``git-up.bundler.autoinstall [true|*false*]``: If set to\n ``true``,\\ ``PyGitUp`` will run ``bundle install`` automatically.\n Requires ``git-up.bundler.check`` to be true.\n\n- ``git-up.bundler.local [true|*false*]``: If you've ``bundle package``-ed\n your project gems, you can tell ``PyGitUp`` to run ``bundle install\n --local`` for you if it finds missing gems. Much faster than just a plain\n old ``bundle install``. Don't worry if you're missing gems, it will\n backtrack to ``bundle install`` if anything goes wrong. Make sure\n ``git-up.bundler.autoinstall`` is also set to ``true`` or it won't do\n anything.\n\n- ``git-up.bundler.rbenv [true|*false*]``: If you have rbenv installed,\n you can tell ``PyGitUp`` to run ``rbenv rehash`` for you after it installs\n your gems so any binaries will be available right away. Make sure ``git-up\n .bundler.autoinstall`` is also set to ``true`` or it won't do anything.\n\n- ``git-up.fetch.prune [*true*|false]``: If set to ``true``,\n ``PyGitUp`` will append the ``--prune``\\ option to ``git fetch`` and\n thus remove any remote tracking branches which no longer exist on\n the remote (see `git fetch\n --help `__).\n\n- ``git-up.fetch.all [true|*false*]``: If set to ``false``, ``PyGitUp``\n will only fetch remotes for which there is at least one local\n tracking branch. Setting this option will make ``git up`` always fetch\n from all remotes, which is useful if e.g. you use a remote to push to\n your CI system but never check those branches out.\n\n- ``git-up.push.auto [true|*false*]``: Push the current branch after\n rebasing and fast-forwarding.\n\n- ``git-up.push.all [true|*false*]``: Push all branches when auto-pushing.\n\n- ``git-up.push.tags [true|*false*]``: Push tags when auto-pushing.\n\n- ``git-up.rebase.arguments [string]``: If set, ``PyGitUp`` will use\n this string as additional arguments when calling ``git rebase``.\n Example: ``--preserve-merges`` to recreate merge commits in the\n rebased branch.\n\n- ``git-up.rebase.auto [*true*|false]``: If set to ``false``,\n ``PyGitUp`` won't rebase your branches for you but notify you that\n they diverged. This can be useful if you have a lot of in-progress\n work that you don't want to deal with at once, but still want to\n update other branches.\n\n- ``git-up.rebase.log-hook [cmd]``: Runs ``cmd`` every time a branch\n is rebased or fast-forwarded, with the old head as ``$1`` and the new\n head as ``$2``. This can be used to view logs or diffs of incoming\n changes. Example:\n ``echo \"changes on $1:\"; git log --oneline --decorate $1..$2``.\n\n- ``git-up.rebase.show-hashes [true|*false*]``: If set to ``true``,\n ``PyGitUp`` will show the hashes of the current commit (or the point\n where the rebase starts) and the target commit like ``git pull`` does.\n\nNew in v1.0.0:\n~~~~~~~~~~~~~~\n\n- ``git-up.updates.check [*true*|false]``: When running ``git up --version``,\n it shows the version number and checks for updates. If you feel\n uncomfortable with it, just set it to ``false`` to turn off the checks.\n\nCredits\n-------\n\nThe original ``git-up`` has been written by aanand:\n`aanand/git-up/ `__.\n\n\nChangelog\n---------\n\nv1.6.1 (*2018-12-12*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Upgrade to click>=7.0.0. Thanks `@Chronial `_\n for `Pull Request #87 `_.\n\nv1.6.0 (*2018-10-26*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Skip stashing changes when possible. Thanks `@Chronial `_\n for `Pull Request #86 `_.\n- Added faster fast-forward on branches that are not checked out. Thanks `@Chronial `_\n for `Pull Request #83 `_.\n\nv1.5.2 (*2018-09-28*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed version requirement for Click dependency (`#82 `__).\n\nv1.5.1 (*2018-09-13*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed crash on Cygwin with rebase log hook enabled (`#80 `__).\n\nv1.5.0 (*2018-04-26*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Added auto-push support. Thanks `@WoLpH `_\n for `Pull Request #74 `_.\n\nv1.4.7 (*2018-04-07*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Added shorthand commandline arguments (``-V, -q, -h``, see `#73 `__).\n\nv1.4.6 (*2017-12-19*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- 3rd party dependencies have been updated (see `#65 `__).\n\nv1.4.5 (*2017-01-02*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed problems when working with branches containing hash signs in their name\n (`#55 `__).\n- No longer installs a now unneeded script on ``pip install``. Thanks `@ekohl `_\n for `Pull Request #60 `_.\n\nv1.4.4 (*2016-11-30*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed a bug when working with ``git worktree`` (`#58 `__).\n\nv1.4.3 (*2016-11-22*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed a bug with GitPython <= 2.0.8 (`#56 `__, `#57 `__).\n\nv1.4.2 (*2016-09-29*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Switched the command line argument parsing library (`#53 `__).\n\nv1.4.1 (*2016-08-02*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Include tests in PyPI distribution (`#51 `__).\n\nv1.4.0 (*2016-02-29*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- 3rd party dependencies have been updated.\n- Dependencies on 3rd party libraries have been loosened to better interact with other installed packages.\n Thanks `MaximilianR `_ for `Pull Request #45 `_.\n- Added an command line argument to turn of fetching (``--no-fetch``). Thanks `@buoto `_\n for `Pull Request #46 `_.\n- Don't show a stacktrace anymore when stashing fails (`#35 `_).\n- Fixed a bug that cuased problems with submodules if the submodule had unstashed changes/ Thanks\n `@Javex `_ for `Pull Request #27 `_.\n\nv1.3.1 (*2015-08-31*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed a bug when showing the version on Python 3 `#34 `__.\n\nv1.3.0 (*2015-04-08*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Support for Python 3 has been added. Thanks `@r4ts0n `_\n for `Pull Request #23 `_\n and `@Byron `_ for quickly merging a Pull Request\n in `GitPython `_\n and releasing a new version on which this release depends.\n\nv1.2.2 (*2015-02-23*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Now updates submodules when called from ``git submodule foreach`` (`#8 `__).\n\nv1.2.1 (*2014-12-16*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed a problem with ``setuptools 8.x`` (`#19 `__).\n- 3rd party dependencies have been updated\n\nv1.2.0 (*2014-12-10*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Added an option to show hashes when fast-forwarding/rebasing like ``git pull``\n does (``git-up.rebase.show-hashes``).\n- Fixed a bug when having branches with both local tracking branches and\n remote tracking branches (`#17 `__).\n\nv1.1.5 (*2014-11-19*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- 3rd party dependencies have been updated to fix a problem with a 3rd party\n library (`#18 `__).\n\nv1.1.4 (*2014-04-18*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed some typos in README and ``PyGitUp`` output.\n- 3rd party dependencies have been updated.\n\nv1.1.3 (*2014-03-23*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- ``ahead of upstream`` messages are now cyan (see `aanand/git-up#60 `__).\n- Fixed problem when using % in the log hook (`#11 `__).\n\nv1.1.2 (*2013-10-08*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed problems with the dependency declaration.\n\nv1.1.1 (*2013-10-07*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fix for `#7 `__\n (AttributeError: 'GitUp' object has no attribute 'git') introduced by\n v1.1.0.\n\nv1.1.0 (*2013-10-07*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Prior to v1.1.0, ``PyGitUp`` tried to guess the upstream branch for a local\n branch by looking for a branch on any remote with the same name. With v1.1.0,\n ``PyGitUp`` stops guessing and uses the upstream branch config instead.\n\n This by the way fixes issue `#6 `__\n (``git up`` doesn't work with local only branches).\n\n **Note:**\n This change may break setups, where a local branch accidently has\n the same name as a remote branch without any tracking information set. Prior\n to v1.1.0, ``git up`` would still fetch and rebase from the remote branch.\n If you run into troubles with such a setup, setting tracking information\n using ``git branch -u / `` should help.\n\n- 3rd party dependencies have been updated.\n\n- Allows to run ``git up --version`` from non-git dirs, too.\n\nv1.0.0 (*2013-09-05*)\n~~~~~~~~~~~~~~~~~~~~~\n\nFinally ``PyGitUp`` reaches 1.0.0. You can consider it stable now :)\n\n- Added a comprehensive test suite, now with a coverage of about 90%.\n- Lots of code cleanup.\n- Added option ``-h`` to display a help screen (``--help`` **won't** work, because\n ``git`` catches this option and handles it before ``PyGitUp`` can do).\n- Added option ``--version`` to show, what version of ``PyGitUp`` is running.\n Also checks for updates (can be disabled, see configuration).\n- Added option ``--quiet`` to be quiet and only display error messages.\n\nv0.2.3 (*2013-06-05*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed issue `#4 `__ (ugly\n exception if remote branch has been deleted).\n\nv0.2.2 (*2013-05-04*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed issue `#3 `__ (didn't\n return to previous branch).\n\n\nv0.2.1 (*2013-03-18*)\n~~~~~~~~~~~~~~~~~~~~~\n\n- Fixed problem: check-bundler.rb has not been installed when installing via\n PyPI (problems with setup.py).\n\nv0.2 (*2013-03-18*)\n~~~~~~~~~~~~~~~~~~~\n\n- Incorporated `aanand/git-up#41 `__: Support for ``bundle install --local`` and\n ``rbenv rehash``.\n- Fixed issue `#1 `__ (strange\n output buffering when having multiple remotes to fetch from).\n- Some under-the-hood improvements.\n\nv0.1 (*2013-03-14*)\n~~~~~~~~~~~~~~~~~~~\n\n- Initial Release\n\n.. |Build Status| image:: http://img.shields.io/travis/msiemens/PyGitUp/master.svg?style=flat-square\n :target: https://travis-ci.org/msiemens/PyGitUp\n\n.. |Coverage Status| image:: http://img.shields.io/coveralls/msiemens/PyGitUp/master.svg?style=flat-square\n :target: https://coveralls.io/r/msiemens/PyGitUp\n\n.. |Version| image:: http://img.shields.io/pypi/v/git-up.svg?style=flat-square\n :target: https://pypi.python.org/pypi/git-up\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/msiemens/PyGitUp", "keywords": "git git-up", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "git-up", "package_url": "https://pypi.org/project/git-up/", "platform": "", "project_url": "https://pypi.org/project/git-up/", "project_urls": { "Homepage": "https://github.com/msiemens/PyGitUp" }, "release_url": "https://pypi.org/project/git-up/1.6.1/", "requires_dist": null, "requires_python": "", "summary": "A python implementation of 'git up'", "version": "1.6.1" }, "last_serial": 4591312, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "75e45ce416f9df64cd369699defae17a", "sha256": "59847a6b449fd8cd8ce66b4168ea35a22a4af5c1486949531228ee114b3f2e22" }, "downloads": -1, "filename": "git_up-0.1-py2.7.egg", "has_sig": false, "md5_digest": "75e45ce416f9df64cd369699defae17a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 24066, "upload_time": "2013-03-14T10:43:22", "url": "https://files.pythonhosted.org/packages/d4/f0/cf20a7a2a2b3306ada37c4d7f70de9024e0e3601057a752a3e2406502426/git_up-0.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f9317261b6f887dfe65d6f32a88b520c", "sha256": "3c6659dbe5e1373a488f1e015d3065433665b8b333c4b84555d257d4e73f3672" }, "downloads": -1, "filename": "git-up-0.1.zip", "has_sig": false, "md5_digest": "f9317261b6f887dfe65d6f32a88b520c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16036, "upload_time": "2013-03-14T10:43:16", "url": "https://files.pythonhosted.org/packages/52/dc/de87c6dd1dd2fda1740d03d4e675b21c734f711f2907b89dc99d96163b55/git-up-0.1.zip" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "1ed403fad720c90ca02b985770f2022a", "sha256": "ab2ec7eb02267440a5f10040b9c389ef8eacf5c821f6018ef6142ab214917b07" }, "downloads": -1, "filename": "git-up-0.2.zip", "has_sig": false, "md5_digest": "1ed403fad720c90ca02b985770f2022a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16936, "upload_time": "2013-03-18T12:46:59", "url": "https://files.pythonhosted.org/packages/a2/eb/7dbad5628a666dc5c57cc4244ff5dc75130c05fadaa3d5033d9b91e5a6b3/git-up-0.2.zip" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "2ac9c2d200e5bcae78b8b8b31ea94684", "sha256": "34d66dfbb4863864bcbc4f3a864132fd855113d9a51989caf8f2adb4d3ab71c6" }, "downloads": -1, "filename": "git-up-0.2.1.zip", "has_sig": false, "md5_digest": "2ac9c2d200e5bcae78b8b8b31ea94684", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17131, "upload_time": "2013-03-18T15:25:51", "url": "https://files.pythonhosted.org/packages/74/31/b36d993fd3cb4b011925eaea2aea38b8bd7a196403f3c425ecd4240e1b1f/git-up-0.2.1.zip" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "916860ae457449b03a4095996a5f6fef", "sha256": "a951c2732b499e1774defca6c15ae8da10d2c75669e84750fc2be5e78e4c32a7" }, "downloads": -1, "filename": "git-up-0.2.2.zip", "has_sig": false, "md5_digest": "916860ae457449b03a4095996a5f6fef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17294, "upload_time": "2013-05-03T22:21:46", "url": "https://files.pythonhosted.org/packages/03/ae/57c0ba4a7948545e5611efa32d2af0468b33aa9af3bea737a477ae37a17c/git-up-0.2.2.zip" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "192344e9988ae9ece1d16f5bcdd38d4a", "sha256": "cbab3e12a736cd134bc9a80bd846a215b5d2919d1ef5ac4671742ce6a03c6b61" }, "downloads": -1, "filename": "git-up-0.2.3.zip", "has_sig": false, "md5_digest": "192344e9988ae9ece1d16f5bcdd38d4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17483, "upload_time": "2013-06-05T08:57:43", "url": "https://files.pythonhosted.org/packages/46/98/599bb18556c90a7e2c46e543c5f6890006e1497559f688c5c9bb1d2b106c/git-up-0.2.3.zip" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "23def58b99cef57c42334473b68d5f12", "sha256": "55ee7c1dfc6a2adb4daab073be067e9e723b277823febcf5636ecf76b7f9e05b" }, "downloads": -1, "filename": "git_up-1.0.0-py27-none-any.whl", "has_sig": false, "md5_digest": "23def58b99cef57c42334473b68d5f12", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 73792, "upload_time": "2013-09-25T19:28:56", "url": "https://files.pythonhosted.org/packages/fd/ab/59ebca41cc20d514a05a15447f18f104c4451149ff2779b1662e06db9b7f/git_up-1.0.0-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a07dec2f284473988f4ff4ebbfaf7944", "sha256": "4b8beb812ff05dba3c2df16b91fc88bc4c367f07a1542f9faf5258e9abd982e0" }, "downloads": -1, "filename": "git-up-1.0.0.zip", "has_sig": false, "md5_digest": "a07dec2f284473988f4ff4ebbfaf7944", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34814, "upload_time": "2013-09-25T19:28:59", "url": "https://files.pythonhosted.org/packages/10/0b/a2567b7ac1d6982e5304610fb14b285bdca207d2a1726baceeda811e0c27/git-up-1.0.0.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "1dc35efe21383bdde751f5f700cdb22e", "sha256": "3c0b67e49ca4939b7c55d6f4492fa4f5b2c88ca8756a4384dceb99cdc62c3775" }, "downloads": -1, "filename": "git-up-1.1.0.zip", "has_sig": false, "md5_digest": "1dc35efe21383bdde751f5f700cdb22e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37229, "upload_time": "2013-10-07T12:14:52", "url": "https://files.pythonhosted.org/packages/4e/a3/daa5c6e80e9e087ffa9cc0ceaf43637bae2144856a8dbd3cbea10f047a04/git-up-1.1.0.zip" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "22452bb518f519f6c01f1e46f6669d59", "sha256": "a0fb12ca3eec6a2980dccaec18426c8fe69d8fd477b0b497c4ec7666535dde94" }, "downloads": -1, "filename": "git-up-1.1.1.zip", "has_sig": false, "md5_digest": "22452bb518f519f6c01f1e46f6669d59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37413, "upload_time": "2013-10-07T12:27:17", "url": "https://files.pythonhosted.org/packages/cd/a5/761a7711b5832354b202404c75a038c5243a175297ac8b03d2455adb090a/git-up-1.1.1.zip" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "5975ec3fa2e508e91ac8aa15957f7ac4", "sha256": "144097acfe6d5bc4dddcc5badeb1b9c52c1078eda62e55125c3438b55c139b39" }, "downloads": -1, "filename": "git-up-1.1.2.zip", "has_sig": false, "md5_digest": "5975ec3fa2e508e91ac8aa15957f7ac4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22746, "upload_time": "2013-10-08T16:56:53", "url": "https://files.pythonhosted.org/packages/25/18/41bf5f165649ec55f1ea954bdab7ab492c3685140952da576fddcb108e0d/git-up-1.1.2.zip" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "d218cd6fa629d17c336b27bdf4f050df", "sha256": "ed1bbfa4573f81e0a99244a3f4554785fa62799535c67caaf185997e926d2c72" }, "downloads": -1, "filename": "git-up-1.1.3.zip", "has_sig": false, "md5_digest": "d218cd6fa629d17c336b27bdf4f050df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23066, "upload_time": "2014-03-23T16:21:46", "url": "https://files.pythonhosted.org/packages/96/e0/3f7623a52217674c8b1221aae03bc1fe8f29ef6ed343a5faa6d9b35f3665/git-up-1.1.3.zip" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "6230ce41929fd2e1d9a2c3434af300eb", "sha256": "2698b1ccf67b5551f2b6361e13ab1351b328fa9fa3dcd9aff8103bc9934f9602" }, "downloads": -1, "filename": "git-up-1.1.4.zip", "has_sig": false, "md5_digest": "6230ce41929fd2e1d9a2c3434af300eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23481, "upload_time": "2014-04-18T13:17:28", "url": "https://files.pythonhosted.org/packages/0e/fc/a73505d7ab29d52d1ca66bc19d45e2c867894c7cd107701fa14bd6d5c5c4/git-up-1.1.4.zip" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "8b1e4c6e81c95e3f913317bdd0093cb9", "sha256": "5fcb55432538d7216387ada6003f178e6d9241b380488c44106525680aa0f644" }, "downloads": -1, "filename": "git-up-1.1.5.zip", "has_sig": false, "md5_digest": "8b1e4c6e81c95e3f913317bdd0093cb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23917, "upload_time": "2014-11-19T21:01:21", "url": "https://files.pythonhosted.org/packages/a9/42/ae2eb5be49739335885dc37edf38683f6083a684dafd1db3bf16f6beb6f8/git-up-1.1.5.zip" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "29d684a42522af6f8b039504d3cf937d", "sha256": "86d8d1720597a00e4ab26b4c2592272d5e3c859d1575376f608819585a3b301a" }, "downloads": -1, "filename": "git-up-1.2.0.zip", "has_sig": false, "md5_digest": "29d684a42522af6f8b039504d3cf937d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24473, "upload_time": "2014-12-10T17:08:07", "url": "https://files.pythonhosted.org/packages/8c/d5/91ad3e1f530900a50cef2d6f8edd2f4e2c0ad46fce81df9327ca9fb753ec/git-up-1.2.0.zip" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "faa979a443300edae2a72244c90bfb3f", "sha256": "e3d73ef672745bf9231f2d1a4de4736e619711039ea0c2afd16e041c3e80fab3" }, "downloads": -1, "filename": "git-up-1.2.1.zip", "has_sig": false, "md5_digest": "faa979a443300edae2a72244c90bfb3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24553, "upload_time": "2014-12-16T16:51:21", "url": "https://files.pythonhosted.org/packages/59/d0/70e0bdbc7a42d732488e79acd93c2b487f25e75169a2c2b013edf9745497/git-up-1.2.1.zip" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "b0e4557175c7d8f6bafadf3f796b088b", "sha256": "addad2b3a14155bbb7feee71fd0e52f153e39bfa375b0799f45e6e58a493a70a" }, "downloads": -1, "filename": "git-up-1.2.2.zip", "has_sig": false, "md5_digest": "b0e4557175c7d8f6bafadf3f796b088b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24895, "upload_time": "2015-02-23T15:54:59", "url": "https://files.pythonhosted.org/packages/7a/65/d10e4a9522f089b43ddf313e688e3900662625871abdea3ca2a9dff896f0/git-up-1.2.2.zip" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "efd9b71f2789c80d59bf17623ae0756c", "sha256": "2dd729fceec3c6381169040c8c3a1aad1d7904c0fd8cba4bea1fc4e7d2406c86" }, "downloads": -1, "filename": "git-up-1.3.0.zip", "has_sig": false, "md5_digest": "efd9b71f2789c80d59bf17623ae0756c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25342, "upload_time": "2015-04-08T17:31:03", "url": "https://files.pythonhosted.org/packages/23/66/c6919eec025f3add46679112b9568503c0bbe2e7996be3cbe8d15947499f/git-up-1.3.0.zip" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "192414a04f913d431ea5498e71877d5e", "sha256": "bcce528f6715b4420271d3605df0df5e22c9f45951be4e206979a4028933b479" }, "downloads": -1, "filename": "git-up-1.4.0.zip", "has_sig": false, "md5_digest": "192414a04f913d431ea5498e71877d5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26844, "upload_time": "2016-02-29T10:52:16", "url": "https://files.pythonhosted.org/packages/62/b6/848fa19ee3986ce3cac7261cdda0ab908047334f6fb397d01ea57f7f79bf/git-up-1.4.0.zip" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "d733fe774df61836d5b1912cf8f6aa40", "sha256": "5ad5b6b8023b0b69117f9c4c8aec28e21d37def7dc62edbe33220145adfc4ddb" }, "downloads": -1, "filename": "git-up-1.4.1.zip", "has_sig": false, "md5_digest": "d733fe774df61836d5b1912cf8f6aa40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47462, "upload_time": "2016-08-02T11:33:44", "url": "https://files.pythonhosted.org/packages/48/f6/72f98923a698378594dfbf5a7a6912ae984d3489891757810cb9e999e8de/git-up-1.4.1.zip" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "f3a53f400b5cedfcb2d00250c25d8eec", "sha256": "f8d00d5e324dfca5b7b30f497df9cf075f2c244a3f75bd9cd1f278e95f513188" }, "downloads": -1, "filename": "git-up-1.4.2.zip", "has_sig": false, "md5_digest": "f3a53f400b5cedfcb2d00250c25d8eec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47542, "upload_time": "2016-09-29T13:46:55", "url": "https://files.pythonhosted.org/packages/b9/30/3b6910424e77c975717ee332fc593a1b1425a8eb85f377747630f581b2e9/git-up-1.4.2.zip" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "a57878e5a9c0700a67bf45aa664baaec", "sha256": "556848c7a34db6b36a2b53537e58be446eb1311b597b020e6dde4dcf543c78c2" }, "downloads": -1, "filename": "git-up-1.4.3.zip", "has_sig": false, "md5_digest": "a57878e5a9c0700a67bf45aa664baaec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48309, "upload_time": "2016-11-22T19:31:13", "url": "https://files.pythonhosted.org/packages/e0/b9/6403bdd46fd9495016428f987695c817cf7d251da92f1df2d4566285e3ac/git-up-1.4.3.zip" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "59f6fecb57a6353d8d94609825086ee2", "sha256": "9a97ffd66c5ec5eef773abd235eef463aced3ed7744b0fd9641e9c5066bf48ce" }, "downloads": -1, "filename": "git-up-1.4.4.zip", "has_sig": false, "md5_digest": "59f6fecb57a6353d8d94609825086ee2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49235, "upload_time": "2016-11-30T13:48:40", "url": "https://files.pythonhosted.org/packages/32/de/a87efa88725dd689dbfc67eca135fa0d8c750320b3e973a465f746c6a27b/git-up-1.4.4.zip" } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "de7ff540af4371c4fefeff734c86cbd8", "sha256": "0b57d1845cb7df97eb1b8bd2fb21fd1a53e8427955295260b0488dcc76466e94" }, "downloads": -1, "filename": "git-up-1.4.5.zip", "has_sig": false, "md5_digest": "de7ff540af4371c4fefeff734c86cbd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50407, "upload_time": "2017-01-02T19:48:27", "url": "https://files.pythonhosted.org/packages/cf/9f/3c39a137f6dad134737b5d8181b66bc1dbc5aae4c63a9d2a1d04e31cb9b8/git-up-1.4.5.zip" } ], "1.4.6": [ { "comment_text": "", "digests": { "md5": "79485e284d4a592897267f062eae4178", "sha256": "eb5c6a56517d5e482d74cf0fc99e51b2d81d91fc4b98a8e3fefca302ae21c5c0" }, "downloads": -1, "filename": "git-up-1.4.6.tar.gz", "has_sig": false, "md5_digest": "79485e284d4a592897267f062eae4178", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26663, "upload_time": "2017-12-19T22:14:47", "url": "https://files.pythonhosted.org/packages/d5/b5/6a38657d0122cef3cfec4f891e4167e3c68c3278505c987f32c43d5f5967/git-up-1.4.6.tar.gz" } ], "1.4.7": [ { "comment_text": "", "digests": { "md5": "e7e76441dc9c575aa07048edacf482a4", "sha256": "a56b558ef76ca3e813b6b0610fb04c1224da70f82942813559237f849598d9ed" }, "downloads": -1, "filename": "git_up-1.4.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e7e76441dc9c575aa07048edacf482a4", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 47312, "upload_time": "2018-04-07T12:14:02", "url": "https://files.pythonhosted.org/packages/4b/ef/407b13dc042bc0e4998997c78736febda8d6c956a144c446f5b72cabcd4c/git_up-1.4.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b4e2442cb96915c25da14f655149c88e", "sha256": "90c59900f907c1bbad514aff540242de8c97f810fa39a23a77322589fc9498d3" }, "downloads": -1, "filename": "git-up-1.4.7.tar.gz", "has_sig": false, "md5_digest": "b4e2442cb96915c25da14f655149c88e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26801, "upload_time": "2018-04-07T12:14:00", "url": "https://files.pythonhosted.org/packages/be/a2/7846731308b2631e310485b27a6e486d870fe0860288d9b4e923a70003cf/git-up-1.4.7.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "c1bd5451f4378911c49dbb6a76ed4865", "sha256": "873043f547cf5af682d2853fc8946473acf9c252dec8b19d610bc9991e13d634" }, "downloads": -1, "filename": "git_up-1.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c1bd5451f4378911c49dbb6a76ed4865", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 48431, "upload_time": "2018-04-26T19:15:59", "url": "https://files.pythonhosted.org/packages/7a/6e/3e68785e69d72e82318bde9ce6763df47795736a812c9e33874947f45ec4/git_up-1.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dc4b56496e8baff1d9c8faa9eb463dc0", "sha256": "e35ebd100fae7e37745baade1190c709c2047987c9b077edb4794ea8ccbeab60" }, "downloads": -1, "filename": "git-up-1.5.0.tar.gz", "has_sig": false, "md5_digest": "dc4b56496e8baff1d9c8faa9eb463dc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27361, "upload_time": "2018-04-26T19:15:57", "url": "https://files.pythonhosted.org/packages/12/e8/fd6a0f29c6b7ecb52dc1e9bec96825a1a0ff0f2ce34cd50898040cce9673/git-up-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "6b87d5cfaca282b863e5a30bab07f78e", "sha256": "2af99f6e240c7ce5716e13688a3fe99db1bd963d9d0035d9bb1c4243a49f4364" }, "downloads": -1, "filename": "git-up-1.5.1.tar.gz", "has_sig": false, "md5_digest": "6b87d5cfaca282b863e5a30bab07f78e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27474, "upload_time": "2018-09-13T15:05:50", "url": "https://files.pythonhosted.org/packages/fd/52/3165e13df9fc43a9a6f7de634ecdb7e8e080ed93327289bbf6ab6d0e06c7/git-up-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "6ae9737ebc47f32574fa35d4eeab9ec8", "sha256": "cc24a06b88a39c97d73913466e03df134379a9ec7b1b8fc87c26db27e60f78a5" }, "downloads": -1, "filename": "git-up-1.5.2.tar.gz", "has_sig": false, "md5_digest": "6ae9737ebc47f32574fa35d4eeab9ec8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27546, "upload_time": "2018-09-28T14:29:59", "url": "https://files.pythonhosted.org/packages/bc/2c/260b2f3ce04483bb2f5ef6d1c8d3027008c08ceeabba3e112bf083c2faeb/git-up-1.5.2.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "f5a64d3be0291135ff540c0ecb7ec264", "sha256": "a6a2136844ff8f472330d13a4d641d5fb63322db928dd28328bca0287ac2dd1b" }, "downloads": -1, "filename": "git_up-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f5a64d3be0291135ff540c0ecb7ec264", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 44532, "upload_time": "2018-10-26T11:27:20", "url": "https://files.pythonhosted.org/packages/73/91/ff87ad90b0905bc3191727cf774565da606fcac06f4afdced69b728a282a/git_up-1.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff58cc5c8a18efee9142698c711c0abe", "sha256": "20a98a5a7e492804c95e074424f9c870813af6ce0cef2671fbba1122116df6d5" }, "downloads": -1, "filename": "git-up-1.6.0.tar.gz", "has_sig": false, "md5_digest": "ff58cc5c8a18efee9142698c711c0abe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29308, "upload_time": "2018-10-26T11:27:18", "url": "https://files.pythonhosted.org/packages/c6/b4/f556fbb6e2cc7e0f536482fad7a506143b0a2ec69cfa8cc4015afca27303/git-up-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "865d9538b356dea933bb8ad0fe67c8d8", "sha256": "63fd1bab17e8ea444bed32aabeca9f8053648d633497c8521831922e25be25ee" }, "downloads": -1, "filename": "git_up-1.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "865d9538b356dea933bb8ad0fe67c8d8", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 44563, "upload_time": "2018-12-12T18:50:44", "url": "https://files.pythonhosted.org/packages/3d/6b/346422a49abbbf6b8bdc183e0ba51e3d68275d7ebc1735a52e219822d4eb/git_up-1.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7663ebaefa9c93d3f373ed38b510af70", "sha256": "ea83441e7ab05011624e2e7333ef875c263124db5eed74507acd32b07c48473f" }, "downloads": -1, "filename": "git-up-1.6.1.tar.gz", "has_sig": false, "md5_digest": "7663ebaefa9c93d3f373ed38b510af70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29411, "upload_time": "2018-12-12T18:50:42", "url": "https://files.pythonhosted.org/packages/46/45/32dc0bf07c620644a8ed899e381309f4f25b50f20a91e555285522592833/git-up-1.6.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "865d9538b356dea933bb8ad0fe67c8d8", "sha256": "63fd1bab17e8ea444bed32aabeca9f8053648d633497c8521831922e25be25ee" }, "downloads": -1, "filename": "git_up-1.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "865d9538b356dea933bb8ad0fe67c8d8", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 44563, "upload_time": "2018-12-12T18:50:44", "url": "https://files.pythonhosted.org/packages/3d/6b/346422a49abbbf6b8bdc183e0ba51e3d68275d7ebc1735a52e219822d4eb/git_up-1.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7663ebaefa9c93d3f373ed38b510af70", "sha256": "ea83441e7ab05011624e2e7333ef875c263124db5eed74507acd32b07c48473f" }, "downloads": -1, "filename": "git-up-1.6.1.tar.gz", "has_sig": false, "md5_digest": "7663ebaefa9c93d3f373ed38b510af70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29411, "upload_time": "2018-12-12T18:50:42", "url": "https://files.pythonhosted.org/packages/46/45/32dc0bf07c620644a8ed899e381309f4f25b50f20a91e555285522592833/git-up-1.6.1.tar.gz" } ] }