I am attempting to write an update
hook for git that bounces if a submodule is being updated to a commit ID that does not exist in the submodule's upstream repository. To say it another way, I want to force users to push changes to the submodule repositories before they push changes to the submodule pointers.
One caveat:
I have been playing around with an idea but it feels like there must be a better way to do this. Here is what I was planning on doing in the update hook:
refs/heads/
. If not, exit early.git rev-list
to get a list of revisions being pushed.git show <revision_id>
and use a regular expression that looks to see if a submodule was updated (by searching for `+Subproject commit [0-9a-f]+)..gitmodules
files as seen by that particular commit (git show <revision_id>:.gitmodules
).cd
to the paths found in 3.4 and execute git rev-parse --quiet --verify <updated_submodule_commit_id>
to see if that commit exists in that repository. If it does not, exit with a non-zero status.(Note: I believe the results of 3.2 can potentially be cached across revisions as long as the output to git rev-parse --quiet --verify <revision_id>:.gitmodules
doesn't change from one revision to the next. I left this part out to simplify the solution.)
So yeah, this seems pretty complex, and I can't help but wonder if there are some internal git commands that might make my life a lot easier. Or maybe there is a different way to think about the problem?
The git submodule init command creates the local configuration file for the submodules, if this configuration does not exist. If you track branches in your submodules, you can update them via the --remote parameter of the git submodule update command.
A git submodule update --init --remote is like: git submodule init : to initialize (checkout) the submodules recorded in the index. git submodule update --remote : to pull from the registered branch (or master by default), once the submodule has been initialized (checked out).
Edit, much later: As of Git 1.7.7, git-push
now has a --recurse-submodules=check
option, which refuses to push the parent project if any submodule commits haven't been pushed to their remotes. It doesn't appear that a corresponding push.recurseSubmodules
config parameter has been added yet. This of course doesn't entirely address the problem - a clueless user could still push without the check - but it's quite relevant!
I think the best approach, rather than examining each individual commit, is to look at the diff across all of the pushed commits: git diff <old> <new>
. You don't want to look at the whole diff though, really; it could be enormous. Unfortunately, the git-submodule porcelain command doesn't work in bare repos, but you should still be able to quickly examine .gitmodules
to get a list of paths (and maybe URLs). For each one, you can git diff <old> <new> -- path
, and if there is a diff, grab the new submodule commit. (And if you're worried about a 000000 old commit possibility, you can just use git show
on the new one, I believe.)
Once you get all that taken care of, you've reduced the problem to checking whether given commits exist in given remote repositories. Unfortunately, as it looks like you've noticed, that's not straightforward, at least as far as I know. Keeping local, up-to-date clones is probably your best bet, and it sounds like you're good there.
By the way, I don't think the caching is going to be relevant here, since the update hook is once per ref. Yes, you could do this in a pre-receive hook, which gets all the refs on stdin, but I don't see why you should bother doing more work. It's not going to be an expensive operation, and with an update hook, you can individually accept or reject the various branches being pushed, instead of preventing all of them from being updated because only one was bad.
If you want to save some trouble, I'd probably just avoid parsing the gitmodules file, and hardcode a list into the hook. I doubt your list of submodules changes very often, so it's probably cheaper to maintain that than to write something automated.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With