mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-13 03:03:10 +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
|