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 # Copyright (c) 2008, Nanako Shiraishi # Prime rerere database from existing merge commits me=rerere-train USAGE="$me rev-list-args" SUBDIRECTORY_OK=Yes OPTIONS_SPEC= . $(git --exec-path)/git-sh-setup require_work_tree cd_to_toplevel # Remember original branch branch=$(git symbolic-ref -q HEAD) || original_HEAD=$(git rev-parse --verify HEAD) || { echo >&2 "Not on any branch and no commit yet?" exit 1 } mkdir -p "$GIT_DIR/rr-cache" || exit git rev-list --parents "$@" | while read commit parent1 other_parents do if test -z "$other_parents" then # Skip non-merges continue fi git checkout -q "$parent1^0" if git merge $other_parents >/dev/null 2>&1 then # Cleanly merges continue fi if test -s "$GIT_DIR/MERGE_RR" then git show -s --pretty=format:"Learning from %h %s" "$commit" git rerere git checkout -q $commit -- . git rerere fi git reset -q --hard done if test -z "$branch" then git checkout "$original_HEAD" else git checkout "${branch#refs/heads/}" fi