diff options
author | Rob Herring <robh@kernel.org> | 2021-10-19 09:46:00 -0500 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2021-10-19 13:21:07 -0400 |
commit | a57ec40ef6d57b5aea62fbd1c814175d1da3fd23 (patch) | |
tree | fd020d7dfe3004d57cafd397ad320b4aa3e372b4 | |
parent | 3847a92a365a96270ab0de6111f349e98379f930 (diff) | |
download | b4-a57ec40ef6d57b5aea62fbd1c814175d1da3fd23.tar.gz |
Fix shazam for multiple git worktrees
The shazam command makes assumptions that '.git' is a directory which is
not the case with multiple worktree. Use 'git rev-parse' instead to
retrieve the correct paths.
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
Link: https://lore.kernel.org/r/20211019144600.225058-1-robh@kernel.org
-rw-r--r-- | b4/mbox.py | 20 |
1 files changed, 15 insertions, 5 deletions
@@ -307,9 +307,13 @@ def make_am(msgs, cmdargs, msgid): logger.critical('Unable to fetch from the worktree') logger.critical(out.strip()) sys.exit(ecode) - # Edit the FETCH_HEAD to give a better default merge message - fhf = os.path.join(topdir, '.git', 'FETCH_HEAD') - with open(fhf, 'r') as fhh: + gitargs = ['rev-parse', '--git-path', 'FETCH_HEAD'] + ecode, fhf = b4.git_run_command(topdir, gitargs, logstderr=True) + if ecode > 0: + logger.critical('Unable to find FETCH_HEAD') + logger.critical(out.strip()) + sys.exit(ecode) + with open(fhf.rstrip(), 'r') as fhh: contents = fhh.read() linkurl = config['linkmask'] % top_msgid if len(am_msgs) > 1: @@ -321,7 +325,13 @@ def make_am(msgs, cmdargs, msgid): with open(fhf, 'w') as fhh: fhh.write(new_contents) - mmf = os.path.join(topdir, '.git', 'b4-cover') + gitargs = ['rev-parse', '--git-dir'] + ecode, fhf = b4.git_run_command(topdir, gitargs, logstderr=True) + if ecode > 0: + logger.critical('Unable to find git directory') + logger.critical(out.strip()) + sys.exit(ecode) + mmf = os.path.join(fhf.rstrip(), 'b4-cover') if lser.has_cover: merge_template = DEFAULT_MERGE_TEMPLATE if config.get('shazam-merge-template'): @@ -358,7 +368,7 @@ def make_am(msgs, cmdargs, msgid): logger.info('You can now merge or checkout FETCH_HEAD') if lser.has_cover: - logger.info(' e.g.: git merge -F .git/b4-cover --signoff --edit FETCH_HEAD') + logger.info(' e.g.: git merge -F $(git rev-parse --git-dir)/b4-cover --signoff --edit FETCH_HEAD') thanks_record_am(lser, cherrypick=cherrypick) return |