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 /
Delete
Unzip
Name
Size
Permission
Date
Action
blameview
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
buildsystems
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
ciabot
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
completion
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
continuous
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
convert-objects
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
credential
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
diff-highlight
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
diffall
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
emacs
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
examples
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
fast-import
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
git-jump
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
git-shell-commands
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
gitview
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
hg-to-git
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
hooks
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
mw-to-git
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
p4import
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
patches
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
persistent-https
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
remote-helpers
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
stats
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
subtree
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
svn-fe
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
thunderbird-patch-inline
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
vim
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
workdir
[ DIR ]
drwxr-xr-x
2022-02-05 08:35
README
2.06
KB
-rw-r--r--
2013-06-10 20:01
git-resurrect.sh
4.29
KB
-rw-r--r--
2013-06-10 20:01
remotes2config.sh
770
B
-rw-r--r--
2013-06-10 20:01
rerere-train.sh
1009
B
-rw-r--r--
2013-06-10 20:01
Save
Rename
#!/bin/sh # Use this tool to rewrite your .git/remotes/ files into the config. . git-sh-setup if [ -d "$GIT_DIR"/remotes ]; then echo "Rewriting $GIT_DIR/remotes" >&2 error=0 # rewrite into config { cd "$GIT_DIR"/remotes ls | while read f; do name=$(printf "$f" | tr -c "A-Za-z0-9-" ".") sed -n \ -e "s/^URL:[ ]*\(.*\)$/remote.$name.url \1 ./p" \ -e "s/^Pull:[ ]*\(.*\)$/remote.$name.fetch \1 ^$ /p" \ -e "s/^Push:[ ]*\(.*\)$/remote.$name.push \1 ^$ /p" \ < "$f" done echo done } | while read key value regex; do case $key in done) if [ $error = 0 ]; then mv "$GIT_DIR"/remotes "$GIT_DIR"/remotes.old fi ;; *) echo "git config $key "$value" $regex" git config $key "$value" $regex || error=1 ;; esac done fi