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.

77 lines
2.8 KiB

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