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.

76 lines
2.8 KiB

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