Created
March 9, 2013 19:32
-
-
Save frimik/5125436 to your computer and use it in GitHub Desktop.
Make damn sure that git submodule sync is going to work.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env ruby | |
submods = Hash.new | |
%x{git config -f .gitmodules --get-regexp '^submodule\..*\.(path|url)$'}.lines.each do |l| | |
submodule, key, value = l.match(/^submodule\.(.*)\.(path|url)\s+(.*)$/)[1..3] | |
submods[submodule] = Hash.new unless submods[submodule].is_a?(Hash) | |
submods[submodule][key] = value | |
end | |
submods.each_pair do |s,k| | |
%x{git submodule add #{k['url']} #{k['path']}} | |
end | |
%x{git submodule sync} |
Thank you for this. I found myself trying to add over 20 submodules to a repo and doing it one by one would've been a pain.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
good trick!