A console script that allows you to easily update multiple git repositories at once
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

68 строки
2.5 KiB

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