]> git.phdru.name Git - git-scripts.git/blobdiff - locate-all
Doc(locate-all): Add comments
[git-scripts.git] / locate-all
index afaa3e757cfb9ce77517230c97faa4e67c157768..3440614badf8223febc3a593006e0f19661ada66 100755 (executable)
@@ -1,4 +1,13 @@
 #! /bin/sh
-locate -b \*.git | sed 's!/\.git$!!' |
-   grep -v "/archive/SQLObject/\|/archive/cheetah3/\|/third-party/\|$HOME/tmp/" |
+locate -b \*.git |
+   grep -v "/archive/SQLObject/\|/archive/cheetah3/\|$HOME/tmp/\|/third-party/" |
+   while read path; do
+      if [ -d "$path" ]; then # skip files `.git` - they're submodules
+         if [ "`basename \"$path\"`" = .git ]; then
+            dirname "$path" # translate `project/.git/` to just `project/`
+         else
+            echo "$path" # bare repo `project.git/`
+         fi
+      fi
+   done |
    LC_ALL=C sort | uniq > locate-all.list