Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Warn about base vs head relationship #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions git_explode/exploder.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ def __init__(self, repo, base, head, debug, context_lines):
self.base_commit = GitUtils.ref_commit(repo, base)
self.logger.debug("base commit %s is %s" %
(base, GitUtils.commit_summary(self.base_commit)))
head_commit = GitUtils.ref_commit(repo, head)
merge_base_id = repo.merge_base(self.base_commit.id, head_commit.id)
if not merge_base_id or merge_base_id != self.base_commit.id:
self.logger.warn("Base commit not ancestor of head, cherry-picks may fail")
self.head = head
self.context_lines = context_lines
self.topic_mgr = TopicManager('topic%d', self.logger)
Expand Down