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.

55 lines
1.8 KiB

  1. v0.4.1 (released December 13, 2017):
  2. - Bump dependencies to deal with newer versions of Git.
  3. v0.4 (released January 17, 2017):
  4. - Added a `--prune` flag to delete remote-tracking branches that no longer
  5. exist on their remote after fetching.
  6. - Added a `--bookmark-file` flag to support multiple bookmark config files.
  7. - Added a `--cleanup` flag to remove old bookmarks that don't exist.
  8. - Added an `--exec` flag to run a shell command on all of your repos.
  9. - Added support for shell glob patterns and tilde expansion in bookmark files.
  10. - Cleaned up the bookmark file format, fixing a related Windows bug. The script
  11. will automatically migrate to the new one.
  12. - Fixed a bug related to Python 3 compatibility.
  13. - Fixed unicode support.
  14. v0.3 (released June 7, 2015):
  15. - Added support for Python 3.
  16. - Fixed behavior on bare repositories.
  17. - Made branch updating code safer in general: only fast-forwardable branches
  18. tracking upstreams are updated. This deprecates `--merge` and `--rebase`.
  19. - Added `--fetch-only` to disable branch updating entirely, if desired.
  20. - Fixed trying to fetch remotes without configured refspecs.
  21. - Miscellaneous fixes and tweaks.
  22. v0.2.4 (released May 23, 2015):
  23. - Follow the XDG Base Directory Specification for the config file.
  24. - Added installation instructions for Homebrew.
  25. v0.2.3 (released March 14, 2015):
  26. - Added support for newer versions of GitPython.
  27. v0.2.2 (released April 27, 2014):
  28. - Fixed an error being raised when HEAD is detached.
  29. v0.2.1 (released April 21, 2014):
  30. - Fixed a bug when handling errors during a fetch.
  31. v0.2 (released April 21, 2014):
  32. - Rewrote backend to use GitPython instead of direct shell calls. Improved
  33. stability and fixed various bugs.
  34. - Use colorama for highlighting instead of ANSI escape codes.
  35. - Added `--current-only`, `--merge`, and `--rebase` options.
  36. v0.1 (released June 7, 2011):
  37. - Initial release.