6

I was pretty happy when I found out lately about

git submodule summary

which shows me nicely by which commits the checked out commit of a submodule is ahead or behind the reference in the repository.

Now when I am in the middle of a merge with submodule conflicts, the same command does not produce useful output. I need a painful sequence of gitk in my main tree examining the branches, along with cd'ing into the submodules, fetching and gitk in there, comparing sha1 values...

What would be a more convenient way to get the picture of the conflict?

2 Answers 2

2

You can make a script. Here is the core of such a script:

 git --git-dir=submodulepath/.git diff \
    $(git ls-tree HEAD submodulepath | cut -c 15-54) \
    $(git ls-tree MERGE_HEAD submodulepath | cut -c 15-54)

you can replace diff with log or any number of other commands that will help you see what the changes are. One would be to see if it would be a fast-forward merge in which case you can resolve the conflict quickly without merging at the submodule level.

There is also gitslave which will help you with such issues.

Hope this helps.

5
  • +1 for the gitslave mention! But truth in advertising, gitslave will not help you with git-submodules except in as much as it is an entire replacement for git-submodules. Replacing git-submodules would be very helpful for your sanity, though. Jun 8, 2011 at 20:45
  • excellent plug, Seth ;) I'm hoping to contribute to git around submodules. I'm not sure if sub tree merging is the answer from all that is available in the git project. Jun 8, 2011 at 20:55
  • I don't really get the idea of that command line. The "$(git ls-tree ...)" evaluates to something like "cfa69f5 . 8b7cc2b . 4871 . 6133e C 8e9bfd" (with full SHA1 ids of course). How can that be a valid argument to "git diff"? It does not work for me in any case, I get: usage: git diff...
    – chrisxxx
    Jun 10, 2011 at 12:32
  • make sure you specify the submodule path that's listed in git submodule output or the .gitmodules file contents. If you specified a containing directory, you'll get the output you're getting. Jun 10, 2011 at 16:04
  • I added another answer that uses the index instead of ls-tree and cut.
    – robinst
    Sep 15, 2014 at 3:30
0

Same as Adam's answer, but using the index and without cut:

sub="path/to/submodule"
git --git-dir="$sub/.git" diff \
    $(git rev-parse ":2:$sub") \
    $(git rev-parse ":3:$sub")

Explanation:

When there is a conflict, Git stores information about it in the index. It stores several different versions, so-called stages. Stage 1 is the "base" version (common ancestor), stage 2 is the "ours" version and stage 3 is the "theirs" version.

In case of file conflicts, the index contains the blob object IDs for the different versions. In case of submodules, it's the submodule commit IDs. In the command above, :2:$sub refers to stage 2 (ours) of the submodule at path $sub.

Note that you can see a list of index entries with stages using git ls-files --stage.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.