PyGitUp

A nicer `git pull`

MIT License

Downloads
2.8K
Stars
528
Committers
17

Bot releases are visible (Hide)

PyGitUp -

Published by msiemens over 8 years ago

  • Fixed a bug when showing the version on Python 3 (#34).
PyGitUp - v1.3.0

Published by msiemens over 9 years ago

  • Support for Python 3 has been added. Thanks @r4ts0n for the
    Pull Request and @Byron for quickly merging a Pull Request
    in GitPython and releasing a new version on which this release
    depends.
PyGitUp - v1.2.2

Published by msiemens over 9 years ago

  • Now updates submodules when called from git submodule foreach (#8).
PyGitUp - v1.2.1

Published by msiemens over 9 years ago

  • Fixed a problem with setuptools 8.x (#19).
  • 3rd party dependencies have been updated
PyGitUp - v1.2.0

Published by msiemens almost 10 years ago

  • Added an option to show hashes when fast-forwarding/rebasing like
    git pull does (git-up.rebase.show-hashes).
  • Fixed a bug when having branches with both local tracking branches
    and remote tracking branches (#18).
PyGitUp - v1.1.5

Published by msiemens almost 10 years ago

  • 3rd party dependencies have been updated to fix a problem with a 3rd
    party library (#18)
PyGitUp - v1.1.4

Published by msiemens over 10 years ago

  • Fixed some typos in README and PyGitUp output.
  • 3rd party dependencies have been updated.
PyGitUp - v1.1.3

Published by msiemens over 10 years ago

  • ahead of upstream messages are now cyan (see
    aanand/git-up#60)
  • Fixed problem when using % in the log hook on Windows
    (#11)
PyGitUp - v1.1.2

Published by msiemens about 11 years ago

  • Fixed problems with the dependency declaration.

Note: To update to this release, run pip install -U git-up.

PyGitUp - v1.1.1

Published by msiemens about 11 years ago

  • Fix for #7 (AttributeError: 'GitUp' object has no attribute 'git') introduced by v1.1.0.
PyGitUp - v1.1.0

Published by msiemens about 11 years ago

  • Prior to v1.1.0, PyGitUp tried to guess the upstream branch for a
    local branch by looking for a branch on any remote with the same
    name. With v1.1.0, PyGitUp stops guessing and uses the upstream
    branch config instead.

This by the way fixes issue #6 (git up doesn't work with
local only branches).

Note: This change may break setups, where a local branch
accidently has the same name as a remote branch without any tracking
information set. Prior to v1.1.0, git up would still fetch and
rebase from the remote branch. If you run into troubles with such a
setup, setting tracking information using
git branch -u <remote>/<remote branch> <local branch> should help.

  • 3rd party dependencies have been updated.
  • Allows to run git up --version from non-git dirs, too.
PyGitUp - v1.0.0 :)

Published by msiemens about 11 years ago

Finally PyGitUp reaches 1.0.0. You can consider it stable now :)

  • Added a comprehensive test suite, now with a coverage of about 90%.
  • Lots of code cleanup.
  • Added option -h to display a help screen (--help won't work, because
    git catchs this option and handles it before PyGitUp can do).
  • Added option --version to show, what version of PyGitUp is running.
    Also checks for updates (can be disabled, see README).
  • Added option --quiet to be quiet and only display error messages.