OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
doc
/
git
/
contrib
/
git-shell-commands
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:13:18 AM
rwxr-xr-x
📄
README
839 bytes
05/29/2018 08:14:06 AM
rw-r--r--
📄
help
283 bytes
05/29/2018 08:14:06 AM
rw-r--r--
📄
list
227 bytes
05/29/2018 08:14:06 AM
rw-r--r--
Editing: list
Close
#!/bin/sh print_if_bare_repo=' if "$(git --git-dir="$1" rev-parse --is-bare-repository)" = true then printf "%s\n" "${1#./}" fi ' find -type d -name "*.git" -exec sh -c "$print_if_bare_repo" -- \{} \; -prune 2>/dev/null