A console script that allows you to easily update multiple git repositories at once
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.7 KiB

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