A console script that allows you to easily update multiple git repositories at once
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 rivejä
1.3 KiB

  1. v0.3.1 (unreleased):
  2. - Added a `--prune` flag to delete remote-tracking branches that no longer
  3. exist on their remote after fetching.
  4. - Fixed a bug related to Python 3 compatibility.
  5. v0.3 (released June 7, 2015):
  6. - Added support for Python 3.
  7. - Fixed behavior on bare repositories.
  8. - Made branch updating code safer in general: only fast-forwardable branches
  9. tracking upstreams are updated. This deprecates `--merge` and `--rebase`.
  10. - Added `--fetch-only` to disable branch updating entirely, if desired.
  11. - Fixed trying to fetch remotes without configured refspecs.
  12. - Miscellaneous fixes and tweaks.
  13. v0.2.4 (released May 23, 2015):
  14. - Follow the XDG Base Directory Specification for the config file.
  15. - Added installation instructions for Homebrew.
  16. v0.2.3 (released March 14, 2015):
  17. - Added support for newer versions of GitPython.
  18. v0.2.2 (released April 27, 2014):
  19. - Fixed an error being raised when HEAD is detached.
  20. v0.2.1 (released April 21, 2014):
  21. - Fixed a bug when handling errors during a fetch.
  22. v0.2 (released April 21, 2014):
  23. - Rewrote backend to use GitPython instead of direct shell calls. Improved
  24. stability and fixed various bugs.
  25. - Use colorama for highlighting instead of ANSI escape codes.
  26. - Added `--current-only`, `--merge`, and `--rebase` options.
  27. v0.1 (released June 7, 2011):
  28. - Initial release.