mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-02 17:16:13 +00:00
7 lines
135 B
Bash
7 lines
135 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for gitDir in $(find "$PWD" -name .git); do
|
||
|
echo -n "$(dirname ${gitDir}),"
|
||
|
git --git-dir="$gitDir" rev-parse HEAD
|
||
|
done
|