OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
doc
/
git
/
contrib
/
git-shell-commands
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/20/2022 06:44:51 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