A console script that allows you to easily update multiple git repositories at once
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

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