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