mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
7 lines
135 B
Bash
Executable File
7 lines
135 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for gitDir in $(find "$PWD" -name .git); do
|
|
echo -n "$(dirname ${gitDir}),"
|
|
git --git-dir="$gitDir" rev-parse HEAD
|
|
done
|