aboutsummaryrefslogtreecommitdiff
path: root/git-submodule-move-all-git-dirs
diff options
context:
space:
mode:
Diffstat (limited to 'git-submodule-move-all-git-dirs')
-rwxr-xr-xgit-submodule-move-all-git-dirs20
1 files changed, 20 insertions, 0 deletions
diff --git a/git-submodule-move-all-git-dirs b/git-submodule-move-all-git-dirs
new file mode 100755
index 0000000..41a7352
--- /dev/null
+++ b/git-submodule-move-all-git-dirs
@@ -0,0 +1,20 @@
+#!/bin/bash
+#
+# Call git-submodule-move-git-dir for each repository in a tree
+#
+
+# Parameters
+BASENAME="`basename $0`"
+
+# Checks
+if [ ! -e ".git" ]; then
+ echo "please run this command in the top-level repository folder"
+ exit 1
+fi
+
+# If we invert find results so we begin conversion at the toplevel folders
+#find -type f -name .git | tac | while read repo; do
+find -type f -name .git | while read repo; do
+ folder="`dirname $repo`"
+ git-submodule-move-git-dir $folder
+done