A console script that allows you to easily update multiple git repositories at once
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

38 Zeilen
1.1 KiB

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