-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
git changelog outputs all commits in only one repo #504
Comments
What I also find interesting is that the docs in git-changelog all tell that if no start tag is given, all commits are shown but on my system only the commits since the most recent tag are shown. |
The docs said:
So only commits since the last tag is shown unless the Sometimes it is confusing because |
Did you run I found something interesting may be in charge of the result. |
Ok, its what you describe above: my problem was that per default IMO that's a bad default: Another problem is that a repeated |
When I use
git changelog -x
in my old clone of the pandas repo (https://github.com/pydata/pandas), it shows all commits, not as usual the commits since the last tag.I cannot reproduce it with a newly cloned repo, only with the one I already have.
Another interesting fact (in that broken? repo) is, that git changelog takes the last tag as outputted by
git tag
and shows everything from that until today (e.g. no 0.4 shown):The last tag in the output is v0.9.1rc1 but there is also a
master / 2013-02-17
line, one which names my branch (API_additions / 2013-10-15
) and threen.n.n / 2016-01-19
...The text was updated successfully, but these errors were encountered: