-
-
Notifications
You must be signed in to change notification settings - Fork 46
Check commit count against upstream
#156
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
Check commit count against upstream
#156
Conversation
Previously, the `git log` command would run against an unresolved branch reference which might point to the wrong thing locally. This patch makes it more predictable by specifying the exact remote branch. Fixes python#155.
|
also related: gh-124 |
upstream
|
@hugovk mind getting this in? I just encountered this again... |
hugovk
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've been running this version locally for a few weeks and haven't run into any issues, so let's go with it. Thanks!
|
This has been released in Cherry Picker 2.6.0: https://github.com/python/cherry-picker/releases/tag/cherry-picker-v2.6.0 🍒🚀 |
Previously, the
git logcommand would run against an unresolved branch reference, which might point to the wrong thing locally. This patch makes it more predictable by specifying the exact remote branch.Fixes #124
Fixes #155