Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
git-1.8.3.1 /
contrib /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
README
167
B
-rw-r--r--
2013-06-10 20:01
builtin-fetch--tool.c
12.73
KB
-rw-r--r--
2013-06-10 20:01
git-checkout.sh
7.44
KB
-rw-r--r--
2013-06-10 20:01
git-clean.sh
2.21
KB
-rw-r--r--
2013-06-10 20:01
git-clone.sh
12.4
KB
-rw-r--r--
2013-06-10 20:01
git-commit.sh
14.04
KB
-rw-r--r--
2013-06-10 20:01
git-fetch.sh
8.9
KB
-rw-r--r--
2013-06-10 20:01
git-gc.sh
594
B
-rw-r--r--
2013-06-10 20:01
git-ls-remote.sh
2.48
KB
-rw-r--r--
2013-06-10 20:01
git-merge-ours.sh
338
B
-rw-r--r--
2013-06-10 20:01
git-merge.sh
14.08
KB
-rw-r--r--
2013-06-10 20:01
git-notes.sh
2.65
KB
-rw-r--r--
2013-06-10 20:01
git-remote.perl
10.14
KB
-rw-r--r--
2013-06-10 20:01
git-rerere.perl
6.05
KB
-rw-r--r--
2013-06-10 20:01
git-reset.sh
2.25
KB
-rw-r--r--
2013-06-10 20:01
git-resolve.sh
2.65
KB
-rw-r--r--
2013-06-10 20:01
git-revert.sh
4.58
KB
-rw-r--r--
2013-06-10 20:01
git-svnimport.perl
24.39
KB
-rw-r--r--
2013-06-10 20:01
git-svnimport.txt
5.26
KB
-rw-r--r--
2013-06-10 20:01
git-tag.sh
3.93
KB
-rw-r--r--
2013-06-10 20:01
git-verify-tag.sh
749
B
-rw-r--r--
2013-06-10 20:01
Save
Rename
#!/bin/sh # # Copyright (c) 2006, Shawn O. Pearce # # Cleanup unreachable files and optimize the repository. USAGE='[--prune]' SUBDIRECTORY_OK=Yes . git-sh-setup no_prune=: while test $# != 0 do case "$1" in --prune) no_prune= ;; --) usage ;; esac shift done case "$(git config --get gc.packrefs)" in notbare|"") test $(is_bare_repository) = true || pack_refs=true;; *) pack_refs=$(git config --bool --get gc.packrefs) esac test "true" != "$pack_refs" || git pack-refs --prune && git reflog expire --all && git-repack -a -d -l && $no_prune git prune && git rerere gc || exit