recup du projet
This commit is contained in:
4
config
Executable file
4
config
Executable file
@@ -0,0 +1,4 @@
|
||||
[core]
|
||||
repositoryformatversion = 0
|
||||
filemode = true
|
||||
bare = true
|
||||
1
description
Executable file
1
description
Executable file
@@ -0,0 +1 @@
|
||||
Unnamed repository; edit this file 'description' to name the repository.
|
||||
0
git-daemon-export-ok
Executable file
0
git-daemon-export-ok
Executable file
15
hooks/applypatch-msg.sample
Executable file
15
hooks/applypatch-msg.sample
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to check the commit log message taken by
|
||||
# applypatch from an e-mail message.
|
||||
#
|
||||
# The hook should exit with non-zero status after issuing an
|
||||
# appropriate message if it wants to stop the commit. The hook is
|
||||
# allowed to edit the commit message file.
|
||||
#
|
||||
# To enable this hook, rename this file to "applypatch-msg".
|
||||
|
||||
. git-sh-setup
|
||||
commitmsg="$(git rev-parse --git-path hooks/commit-msg)"
|
||||
test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"}
|
||||
:
|
||||
24
hooks/commit-msg.sample
Executable file
24
hooks/commit-msg.sample
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to check the commit log message.
|
||||
# Called by "git commit" with one argument, the name of the file
|
||||
# that has the commit message. The hook should exit with non-zero
|
||||
# status after issuing an appropriate message if it wants to stop the
|
||||
# commit. The hook is allowed to edit the commit message file.
|
||||
#
|
||||
# To enable this hook, rename this file to "commit-msg".
|
||||
|
||||
# Uncomment the below to add a Signed-off-by line to the message.
|
||||
# Doing this in a hook is a bad idea in general, but the prepare-commit-msg
|
||||
# hook is more suited to it.
|
||||
#
|
||||
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
|
||||
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
|
||||
|
||||
# This example catches duplicate Signed-off-by lines.
|
||||
|
||||
test "" = "$(grep '^Signed-off-by: ' "$1" |
|
||||
sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
|
||||
echo >&2 Duplicate Signed-off-by lines.
|
||||
exit 1
|
||||
}
|
||||
16
hooks/post-receive
Executable file
16
hooks/post-receive
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
# AUTO GENERATED BY GITEA, DO NOT MODIFY
|
||||
data=$(cat)
|
||||
exitcodes=""
|
||||
hookname=$(basename $0)
|
||||
GIT_DIR=${GIT_DIR:-$(dirname $0)/..}
|
||||
|
||||
for hook in ${GIT_DIR}/hooks/${hookname}.d/*; do
|
||||
test -x "${hook}" && test -f "${hook}" || continue
|
||||
echo "${data}" | "${hook}"
|
||||
exitcodes="${exitcodes} $?"
|
||||
done
|
||||
|
||||
for i in ${exitcodes}; do
|
||||
[ ${i} -eq 0 ] || exit ${i}
|
||||
done
|
||||
3
hooks/post-receive.d/gitea
Executable file
3
hooks/post-receive.d/gitea
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
# AUTO GENERATED BY GITEA, DO NOT MODIFY
|
||||
/usr/local/bin/gitea hook --config=/data/gitea/conf/app.ini post-receive
|
||||
8
hooks/post-update.sample
Executable file
8
hooks/post-update.sample
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to prepare a packed repository for use over
|
||||
# dumb transports.
|
||||
#
|
||||
# To enable this hook, rename this file to "post-update".
|
||||
|
||||
exec git update-server-info
|
||||
14
hooks/pre-applypatch.sample
Executable file
14
hooks/pre-applypatch.sample
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to verify what is about to be committed
|
||||
# by applypatch from an e-mail message.
|
||||
#
|
||||
# The hook should exit with non-zero status after issuing an
|
||||
# appropriate message if it wants to stop the commit.
|
||||
#
|
||||
# To enable this hook, rename this file to "pre-applypatch".
|
||||
|
||||
. git-sh-setup
|
||||
precommit="$(git rev-parse --git-path hooks/pre-commit)"
|
||||
test -x "$precommit" && exec "$precommit" ${1+"$@"}
|
||||
:
|
||||
49
hooks/pre-commit.sample
Executable file
49
hooks/pre-commit.sample
Executable file
@@ -0,0 +1,49 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to verify what is about to be committed.
|
||||
# Called by "git commit" with no arguments. The hook should
|
||||
# exit with non-zero status after issuing an appropriate message if
|
||||
# it wants to stop the commit.
|
||||
#
|
||||
# To enable this hook, rename this file to "pre-commit".
|
||||
|
||||
if git rev-parse --verify HEAD >/dev/null 2>&1
|
||||
then
|
||||
against=HEAD
|
||||
else
|
||||
# Initial commit: diff against an empty tree object
|
||||
against=$(git hash-object -t tree /dev/null)
|
||||
fi
|
||||
|
||||
# If you want to allow non-ASCII filenames set this variable to true.
|
||||
allownonascii=$(git config --bool hooks.allownonascii)
|
||||
|
||||
# Redirect output to stderr.
|
||||
exec 1>&2
|
||||
|
||||
# Cross platform projects tend to avoid non-ASCII filenames; prevent
|
||||
# them from being added to the repository. We exploit the fact that the
|
||||
# printable range starts at the space character and ends with tilde.
|
||||
if [ "$allownonascii" != "true" ] &&
|
||||
# Note that the use of brackets around a tr range is ok here, (it's
|
||||
# even required, for portability to Solaris 10's /usr/bin/tr), since
|
||||
# the square bracket bytes happen to fall in the designated range.
|
||||
test $(git diff --cached --name-only --diff-filter=A -z $against |
|
||||
LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
|
||||
then
|
||||
cat <<\EOF
|
||||
Error: Attempt to add a non-ASCII file name.
|
||||
|
||||
This can cause problems if you want to work with people on other platforms.
|
||||
|
||||
To be portable it is advisable to rename the file.
|
||||
|
||||
If you know what you are doing you can disable this check using:
|
||||
|
||||
git config hooks.allownonascii true
|
||||
EOF
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# If there are whitespace errors, print the offending file names and fail.
|
||||
exec git diff-index --check --cached $against --
|
||||
53
hooks/pre-push.sample
Executable file
53
hooks/pre-push.sample
Executable file
@@ -0,0 +1,53 @@
|
||||
#!/bin/sh
|
||||
|
||||
# An example hook script to verify what is about to be pushed. Called by "git
|
||||
# push" after it has checked the remote status, but before anything has been
|
||||
# pushed. If this script exits with a non-zero status nothing will be pushed.
|
||||
#
|
||||
# This hook is called with the following parameters:
|
||||
#
|
||||
# $1 -- Name of the remote to which the push is being done
|
||||
# $2 -- URL to which the push is being done
|
||||
#
|
||||
# If pushing without using a named remote those arguments will be equal.
|
||||
#
|
||||
# Information about the commits which are being pushed is supplied as lines to
|
||||
# the standard input in the form:
|
||||
#
|
||||
# <local ref> <local sha1> <remote ref> <remote sha1>
|
||||
#
|
||||
# This sample shows how to prevent push of commits where the log message starts
|
||||
# with "WIP" (work in progress).
|
||||
|
||||
remote="$1"
|
||||
url="$2"
|
||||
|
||||
z40=0000000000000000000000000000000000000000
|
||||
|
||||
while read local_ref local_sha remote_ref remote_sha
|
||||
do
|
||||
if [ "$local_sha" = $z40 ]
|
||||
then
|
||||
# Handle delete
|
||||
:
|
||||
else
|
||||
if [ "$remote_sha" = $z40 ]
|
||||
then
|
||||
# New branch, examine all commits
|
||||
range="$local_sha"
|
||||
else
|
||||
# Update to existing branch, examine new commits
|
||||
range="$remote_sha..$local_sha"
|
||||
fi
|
||||
|
||||
# Check for WIP commit
|
||||
commit=`git rev-list -n 1 --grep '^WIP' "$range"`
|
||||
if [ -n "$commit" ]
|
||||
then
|
||||
echo >&2 "Found WIP commit in $local_ref, not pushing"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
exit 0
|
||||
169
hooks/pre-rebase.sample
Executable file
169
hooks/pre-rebase.sample
Executable file
@@ -0,0 +1,169 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (c) 2006, 2008 Junio C Hamano
|
||||
#
|
||||
# The "pre-rebase" hook is run just before "git rebase" starts doing
|
||||
# its job, and can prevent the command from running by exiting with
|
||||
# non-zero status.
|
||||
#
|
||||
# The hook is called with the following parameters:
|
||||
#
|
||||
# $1 -- the upstream the series was forked from.
|
||||
# $2 -- the branch being rebased (or empty when rebasing the current branch).
|
||||
#
|
||||
# This sample shows how to prevent topic branches that are already
|
||||
# merged to 'next' branch from getting rebased, because allowing it
|
||||
# would result in rebasing already published history.
|
||||
|
||||
publish=next
|
||||
basebranch="$1"
|
||||
if test "$#" = 2
|
||||
then
|
||||
topic="refs/heads/$2"
|
||||
else
|
||||
topic=`git symbolic-ref HEAD` ||
|
||||
exit 0 ;# we do not interrupt rebasing detached HEAD
|
||||
fi
|
||||
|
||||
case "$topic" in
|
||||
refs/heads/??/*)
|
||||
;;
|
||||
*)
|
||||
exit 0 ;# we do not interrupt others.
|
||||
;;
|
||||
esac
|
||||
|
||||
# Now we are dealing with a topic branch being rebased
|
||||
# on top of master. Is it OK to rebase it?
|
||||
|
||||
# Does the topic really exist?
|
||||
git show-ref -q "$topic" || {
|
||||
echo >&2 "No such branch $topic"
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Is topic fully merged to master?
|
||||
not_in_master=`git rev-list --pretty=oneline ^master "$topic"`
|
||||
if test -z "$not_in_master"
|
||||
then
|
||||
echo >&2 "$topic is fully merged to master; better remove it."
|
||||
exit 1 ;# we could allow it, but there is no point.
|
||||
fi
|
||||
|
||||
# Is topic ever merged to next? If so you should not be rebasing it.
|
||||
only_next_1=`git rev-list ^master "^$topic" ${publish} | sort`
|
||||
only_next_2=`git rev-list ^master ${publish} | sort`
|
||||
if test "$only_next_1" = "$only_next_2"
|
||||
then
|
||||
not_in_topic=`git rev-list "^$topic" master`
|
||||
if test -z "$not_in_topic"
|
||||
then
|
||||
echo >&2 "$topic is already up to date with master"
|
||||
exit 1 ;# we could allow it, but there is no point.
|
||||
else
|
||||
exit 0
|
||||
fi
|
||||
else
|
||||
not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"`
|
||||
/usr/bin/perl -e '
|
||||
my $topic = $ARGV[0];
|
||||
my $msg = "* $topic has commits already merged to public branch:\n";
|
||||
my (%not_in_next) = map {
|
||||
/^([0-9a-f]+) /;
|
||||
($1 => 1);
|
||||
} split(/\n/, $ARGV[1]);
|
||||
for my $elem (map {
|
||||
/^([0-9a-f]+) (.*)$/;
|
||||
[$1 => $2];
|
||||
} split(/\n/, $ARGV[2])) {
|
||||
if (!exists $not_in_next{$elem->[0]}) {
|
||||
if ($msg) {
|
||||
print STDERR $msg;
|
||||
undef $msg;
|
||||
}
|
||||
print STDERR " $elem->[1]\n";
|
||||
}
|
||||
}
|
||||
' "$topic" "$not_in_next" "$not_in_master"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
<<\DOC_END
|
||||
|
||||
This sample hook safeguards topic branches that have been
|
||||
published from being rewound.
|
||||
|
||||
The workflow assumed here is:
|
||||
|
||||
* Once a topic branch forks from "master", "master" is never
|
||||
merged into it again (either directly or indirectly).
|
||||
|
||||
* Once a topic branch is fully cooked and merged into "master",
|
||||
it is deleted. If you need to build on top of it to correct
|
||||
earlier mistakes, a new topic branch is created by forking at
|
||||
the tip of the "master". This is not strictly necessary, but
|
||||
it makes it easier to keep your history simple.
|
||||
|
||||
* Whenever you need to test or publish your changes to topic
|
||||
branches, merge them into "next" branch.
|
||||
|
||||
The script, being an example, hardcodes the publish branch name
|
||||
to be "next", but it is trivial to make it configurable via
|
||||
$GIT_DIR/config mechanism.
|
||||
|
||||
With this workflow, you would want to know:
|
||||
|
||||
(1) ... if a topic branch has ever been merged to "next". Young
|
||||
topic branches can have stupid mistakes you would rather
|
||||
clean up before publishing, and things that have not been
|
||||
merged into other branches can be easily rebased without
|
||||
affecting other people. But once it is published, you would
|
||||
not want to rewind it.
|
||||
|
||||
(2) ... if a topic branch has been fully merged to "master".
|
||||
Then you can delete it. More importantly, you should not
|
||||
build on top of it -- other people may already want to
|
||||
change things related to the topic as patches against your
|
||||
"master", so if you need further changes, it is better to
|
||||
fork the topic (perhaps with the same name) afresh from the
|
||||
tip of "master".
|
||||
|
||||
Let's look at this example:
|
||||
|
||||
o---o---o---o---o---o---o---o---o---o "next"
|
||||
/ / / /
|
||||
/ a---a---b A / /
|
||||
/ / / /
|
||||
/ / c---c---c---c B /
|
||||
/ / / \ /
|
||||
/ / / b---b C \ /
|
||||
/ / / / \ /
|
||||
---o---o---o---o---o---o---o---o---o---o---o "master"
|
||||
|
||||
|
||||
A, B and C are topic branches.
|
||||
|
||||
* A has one fix since it was merged up to "next".
|
||||
|
||||
* B has finished. It has been fully merged up to "master" and "next",
|
||||
and is ready to be deleted.
|
||||
|
||||
* C has not merged to "next" at all.
|
||||
|
||||
We would want to allow C to be rebased, refuse A, and encourage
|
||||
B to be deleted.
|
||||
|
||||
To compute (1):
|
||||
|
||||
git rev-list ^master ^topic next
|
||||
git rev-list ^master next
|
||||
|
||||
if these match, topic has not merged in next at all.
|
||||
|
||||
To compute (2):
|
||||
|
||||
git rev-list master..topic
|
||||
|
||||
if this is empty, it is fully merged to "master".
|
||||
|
||||
DOC_END
|
||||
16
hooks/pre-receive
Executable file
16
hooks/pre-receive
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
# AUTO GENERATED BY GITEA, DO NOT MODIFY
|
||||
data=$(cat)
|
||||
exitcodes=""
|
||||
hookname=$(basename $0)
|
||||
GIT_DIR=${GIT_DIR:-$(dirname $0)/..}
|
||||
|
||||
for hook in ${GIT_DIR}/hooks/${hookname}.d/*; do
|
||||
test -x "${hook}" && test -f "${hook}" || continue
|
||||
echo "${data}" | "${hook}"
|
||||
exitcodes="${exitcodes} $?"
|
||||
done
|
||||
|
||||
for i in ${exitcodes}; do
|
||||
[ ${i} -eq 0 ] || exit ${i}
|
||||
done
|
||||
3
hooks/pre-receive.d/gitea
Executable file
3
hooks/pre-receive.d/gitea
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
# AUTO GENERATED BY GITEA, DO NOT MODIFY
|
||||
/usr/local/bin/gitea hook --config=/data/gitea/conf/app.ini pre-receive
|
||||
24
hooks/pre-receive.sample
Executable file
24
hooks/pre-receive.sample
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to make use of push options.
|
||||
# The example simply echoes all push options that start with 'echoback='
|
||||
# and rejects all pushes when the "reject" push option is used.
|
||||
#
|
||||
# To enable this hook, rename this file to "pre-receive".
|
||||
|
||||
if test -n "$GIT_PUSH_OPTION_COUNT"
|
||||
then
|
||||
i=0
|
||||
while test "$i" -lt "$GIT_PUSH_OPTION_COUNT"
|
||||
do
|
||||
eval "value=\$GIT_PUSH_OPTION_$i"
|
||||
case "$value" in
|
||||
echoback=*)
|
||||
echo "echo from the pre-receive-hook: ${value#*=}" >&2
|
||||
;;
|
||||
reject)
|
||||
exit 1
|
||||
esac
|
||||
i=$((i + 1))
|
||||
done
|
||||
fi
|
||||
42
hooks/prepare-commit-msg.sample
Executable file
42
hooks/prepare-commit-msg.sample
Executable file
@@ -0,0 +1,42 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to prepare the commit log message.
|
||||
# Called by "git commit" with the name of the file that has the
|
||||
# commit message, followed by the description of the commit
|
||||
# message's source. The hook's purpose is to edit the commit
|
||||
# message file. If the hook fails with a non-zero status,
|
||||
# the commit is aborted.
|
||||
#
|
||||
# To enable this hook, rename this file to "prepare-commit-msg".
|
||||
|
||||
# This hook includes three examples. The first one removes the
|
||||
# "# Please enter the commit message..." help message.
|
||||
#
|
||||
# The second includes the output of "git diff --name-status -r"
|
||||
# into the message, just before the "git status" output. It is
|
||||
# commented because it doesn't cope with --amend or with squashed
|
||||
# commits.
|
||||
#
|
||||
# The third example adds a Signed-off-by line to the message, that can
|
||||
# still be edited. This is rarely a good idea.
|
||||
|
||||
COMMIT_MSG_FILE=$1
|
||||
COMMIT_SOURCE=$2
|
||||
SHA1=$3
|
||||
|
||||
/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE"
|
||||
|
||||
# case "$COMMIT_SOURCE,$SHA1" in
|
||||
# ,|template,)
|
||||
# /usr/bin/perl -i.bak -pe '
|
||||
# print "\n" . `git diff --cached --name-status -r`
|
||||
# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;;
|
||||
# *) ;;
|
||||
# esac
|
||||
|
||||
# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
|
||||
# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE"
|
||||
# if test -z "$COMMIT_SOURCE"
|
||||
# then
|
||||
# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE"
|
||||
# fi
|
||||
3
hooks/proc-receive
Executable file
3
hooks/proc-receive
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
# AUTO GENERATED BY GITEA, DO NOT MODIFY
|
||||
/usr/local/bin/gitea hook --config=/data/gitea/conf/app.ini proc-receive
|
||||
0
hooks/proc-receive.d/gitea
Executable file
0
hooks/proc-receive.d/gitea
Executable file
15
hooks/update
Executable file
15
hooks/update
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env bash
|
||||
# AUTO GENERATED BY GITEA, DO NOT MODIFY
|
||||
exitcodes=""
|
||||
hookname=$(basename $0)
|
||||
GIT_DIR=${GIT_DIR:-$(dirname $0/..)}
|
||||
|
||||
for hook in ${GIT_DIR}/hooks/${hookname}.d/*; do
|
||||
test -x "${hook}" && test -f "${hook}" || continue
|
||||
"${hook}" $1 $2 $3
|
||||
exitcodes="${exitcodes} $?"
|
||||
done
|
||||
|
||||
for i in ${exitcodes}; do
|
||||
[ ${i} -eq 0 ] || exit ${i}
|
||||
done
|
||||
3
hooks/update.d/gitea
Executable file
3
hooks/update.d/gitea
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
# AUTO GENERATED BY GITEA, DO NOT MODIFY
|
||||
/usr/local/bin/gitea hook --config=/data/gitea/conf/app.ini update $1 $2 $3
|
||||
128
hooks/update.sample
Executable file
128
hooks/update.sample
Executable file
@@ -0,0 +1,128 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to block unannotated tags from entering.
|
||||
# Called by "git receive-pack" with arguments: refname sha1-old sha1-new
|
||||
#
|
||||
# To enable this hook, rename this file to "update".
|
||||
#
|
||||
# Config
|
||||
# ------
|
||||
# hooks.allowunannotated
|
||||
# This boolean sets whether unannotated tags will be allowed into the
|
||||
# repository. By default they won't be.
|
||||
# hooks.allowdeletetag
|
||||
# This boolean sets whether deleting tags will be allowed in the
|
||||
# repository. By default they won't be.
|
||||
# hooks.allowmodifytag
|
||||
# This boolean sets whether a tag may be modified after creation. By default
|
||||
# it won't be.
|
||||
# hooks.allowdeletebranch
|
||||
# This boolean sets whether deleting branches will be allowed in the
|
||||
# repository. By default they won't be.
|
||||
# hooks.denycreatebranch
|
||||
# This boolean sets whether remotely creating branches will be denied
|
||||
# in the repository. By default this is allowed.
|
||||
#
|
||||
|
||||
# --- Command line
|
||||
refname="$1"
|
||||
oldrev="$2"
|
||||
newrev="$3"
|
||||
|
||||
# --- Safety check
|
||||
if [ -z "$GIT_DIR" ]; then
|
||||
echo "Don't run this script from the command line." >&2
|
||||
echo " (if you want, you could supply GIT_DIR then run" >&2
|
||||
echo " $0 <ref> <oldrev> <newrev>)" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
|
||||
echo "usage: $0 <ref> <oldrev> <newrev>" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# --- Config
|
||||
allowunannotated=$(git config --bool hooks.allowunannotated)
|
||||
allowdeletebranch=$(git config --bool hooks.allowdeletebranch)
|
||||
denycreatebranch=$(git config --bool hooks.denycreatebranch)
|
||||
allowdeletetag=$(git config --bool hooks.allowdeletetag)
|
||||
allowmodifytag=$(git config --bool hooks.allowmodifytag)
|
||||
|
||||
# check for no description
|
||||
projectdesc=$(sed -e '1q' "$GIT_DIR/description")
|
||||
case "$projectdesc" in
|
||||
"Unnamed repository"* | "")
|
||||
echo "*** Project description file hasn't been set" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# --- Check types
|
||||
# if $newrev is 0000...0000, it's a commit to delete a ref.
|
||||
zero="0000000000000000000000000000000000000000"
|
||||
if [ "$newrev" = "$zero" ]; then
|
||||
newrev_type=delete
|
||||
else
|
||||
newrev_type=$(git cat-file -t $newrev)
|
||||
fi
|
||||
|
||||
case "$refname","$newrev_type" in
|
||||
refs/tags/*,commit)
|
||||
# un-annotated tag
|
||||
short_refname=${refname##refs/tags/}
|
||||
if [ "$allowunannotated" != "true" ]; then
|
||||
echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2
|
||||
echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/tags/*,delete)
|
||||
# delete tag
|
||||
if [ "$allowdeletetag" != "true" ]; then
|
||||
echo "*** Deleting a tag is not allowed in this repository" >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/tags/*,tag)
|
||||
# annotated tag
|
||||
if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1
|
||||
then
|
||||
echo "*** Tag '$refname' already exists." >&2
|
||||
echo "*** Modifying a tag is not allowed in this repository." >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/heads/*,commit)
|
||||
# branch
|
||||
if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then
|
||||
echo "*** Creating a branch is not allowed in this repository" >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/heads/*,delete)
|
||||
# delete branch
|
||||
if [ "$allowdeletebranch" != "true" ]; then
|
||||
echo "*** Deleting a branch is not allowed in this repository" >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/remotes/*,commit)
|
||||
# tracking branch
|
||||
;;
|
||||
refs/remotes/*,delete)
|
||||
# delete tracking branch
|
||||
if [ "$allowdeletebranch" != "true" ]; then
|
||||
echo "*** Deleting a tracking branch is not allowed in this repository" >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
# Anything else (is there anything else?)
|
||||
echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# --- Finished
|
||||
exit 0
|
||||
6
info/exclude
Executable file
6
info/exclude
Executable file
@@ -0,0 +1,6 @@
|
||||
# git ls-files --others --exclude-from=.git/info/exclude
|
||||
# Lines that start with '#' are comments.
|
||||
# For a project mostly in C, the following would be a good set of
|
||||
# exclude patterns (uncomment them if you want to use them):
|
||||
# *.[oa]
|
||||
# *~
|
||||
1
info/refs
Executable file
1
info/refs
Executable file
@@ -0,0 +1 @@
|
||||
ce817b2eafc8ac2751d2da0618b36fce6826eab5 refs/heads/main
|
||||
BIN
objects/00/67c783327cc2b7a6bb180f8e6773109aeb4046
Executable file
BIN
objects/00/67c783327cc2b7a6bb180f8e6773109aeb4046
Executable file
Binary file not shown.
2
objects/00/6a403eb2b00113225f8df3ccdbc19b1ce0da1c
Executable file
2
objects/00/6a403eb2b00113225f8df3ccdbc19b1ce0da1c
Executable file
@@ -0,0 +1,2 @@
|
||||
x<01><>AN<41> <10>aלb<D79C>&/e($Ƹ<>3䑔b(z~<7E><19><><EFBFBD>/<19><><05><><EFBFBD>5U<35>S
|
||||
<EFBFBD><EFBFBD>p<EFBFBD><EFBFBD>y<EFBFBD><EFBFBD>f <09> ~g<><67>UH"G_<47>O=<17>p<EFBFBD>H<EFBFBD>T<EFBFBD><54>2e<32>J5S@<40>j.<2E>2<EFBFBD>
|
||||
BIN
objects/00/be96a758570d26359e99e67ce02418b137b6cf
Executable file
BIN
objects/00/be96a758570d26359e99e67ce02418b137b6cf
Executable file
Binary file not shown.
BIN
objects/00/c3bc965c2428d65dcfd0d35e2bc02f6a4c466a
Executable file
BIN
objects/00/c3bc965c2428d65dcfd0d35e2bc02f6a4c466a
Executable file
Binary file not shown.
BIN
objects/01/1afec56f04ff23fd5779741d08e71c035da6f5
Executable file
BIN
objects/01/1afec56f04ff23fd5779741d08e71c035da6f5
Executable file
Binary file not shown.
BIN
objects/01/2155eff01dc9ef9b8b215cdd76b446691b8531
Executable file
BIN
objects/01/2155eff01dc9ef9b8b215cdd76b446691b8531
Executable file
Binary file not shown.
BIN
objects/02/bce9c3affc07b5ca018823034fe3f548f7cfed
Executable file
BIN
objects/02/bce9c3affc07b5ca018823034fe3f548f7cfed
Executable file
Binary file not shown.
BIN
objects/02/eca56799ab0f06220a112da971378377bf3fa4
Executable file
BIN
objects/02/eca56799ab0f06220a112da971378377bf3fa4
Executable file
Binary file not shown.
BIN
objects/03/2a7cdfab671c746ba42f764415a3cc5a866bf2
Executable file
BIN
objects/03/2a7cdfab671c746ba42f764415a3cc5a866bf2
Executable file
Binary file not shown.
BIN
objects/07/7cccaddcd3b11e7046893fef8f5a848266800b
Executable file
BIN
objects/07/7cccaddcd3b11e7046893fef8f5a848266800b
Executable file
Binary file not shown.
BIN
objects/0a/58fbe1ecd64a40ba4ab51b70caa109d05fc3a0
Executable file
BIN
objects/0a/58fbe1ecd64a40ba4ab51b70caa109d05fc3a0
Executable file
Binary file not shown.
BIN
objects/0a/7f2e133b85a44797ac46566b7c30caf0065fbc
Executable file
BIN
objects/0a/7f2e133b85a44797ac46566b7c30caf0065fbc
Executable file
Binary file not shown.
BIN
objects/0b/0ed3bff6c5237235bfbbeb528259dc3d0c25db
Executable file
BIN
objects/0b/0ed3bff6c5237235bfbbeb528259dc3d0c25db
Executable file
Binary file not shown.
BIN
objects/0b/33b43b71411bd0d3641bba7aad4d2edda76139
Executable file
BIN
objects/0b/33b43b71411bd0d3641bba7aad4d2edda76139
Executable file
Binary file not shown.
BIN
objects/0b/51c742843af659a13e99729e67d33c4f9ce181
Executable file
BIN
objects/0b/51c742843af659a13e99729e67d33c4f9ce181
Executable file
Binary file not shown.
BIN
objects/0d/23776e788a5edf99ff3b42e98d2c06b755d1a9
Executable file
BIN
objects/0d/23776e788a5edf99ff3b42e98d2c06b755d1a9
Executable file
Binary file not shown.
BIN
objects/0d/91eec7daba9457e38d41d7084677b749fdcc2b
Executable file
BIN
objects/0d/91eec7daba9457e38d41d7084677b749fdcc2b
Executable file
Binary file not shown.
BIN
objects/0d/a940502ee213b5b01e5fb5605760ebc25b5cf8
Executable file
BIN
objects/0d/a940502ee213b5b01e5fb5605760ebc25b5cf8
Executable file
Binary file not shown.
BIN
objects/10/5d00e61dc2185c1f9dab1f4f0a0efe3e0fb0ae
Executable file
BIN
objects/10/5d00e61dc2185c1f9dab1f4f0a0efe3e0fb0ae
Executable file
Binary file not shown.
BIN
objects/10/76d951b8d07f0e9b770062c9bce8313103dc5d
Executable file
BIN
objects/10/76d951b8d07f0e9b770062c9bce8313103dc5d
Executable file
Binary file not shown.
BIN
objects/10/9f611015b89b344354f4a8f1afbb6dec65aa5c
Executable file
BIN
objects/10/9f611015b89b344354f4a8f1afbb6dec65aa5c
Executable file
Binary file not shown.
BIN
objects/10/ac3f7fac9335c34a712cdf1aac405e81cc5f4c
Executable file
BIN
objects/10/ac3f7fac9335c34a712cdf1aac405e81cc5f4c
Executable file
Binary file not shown.
BIN
objects/11/3965afdf07ba3135acc1a9894aeee7dd01694c
Executable file
BIN
objects/11/3965afdf07ba3135acc1a9894aeee7dd01694c
Executable file
Binary file not shown.
1
objects/11/65a7274621a5d8040a483df444f08e0c3d7a8a
Executable file
1
objects/11/65a7274621a5d8040a483df444f08e0c3d7a8a
Executable file
@@ -0,0 +1 @@
|
||||
xmO<6D>k<EFBFBD>0<10><><EFBFBD>G<><47>6<EFBFBD>|<18><11><><EFBFBD>1ƐXc
|
||||
BIN
objects/12/9727dc4bbd61c3e9353129b24a53b96045e5a5
Executable file
BIN
objects/12/9727dc4bbd61c3e9353129b24a53b96045e5a5
Executable file
Binary file not shown.
BIN
objects/12/9d123d5f1a0be4917f6f0476c9bf83dd2363ef
Executable file
BIN
objects/12/9d123d5f1a0be4917f6f0476c9bf83dd2363ef
Executable file
Binary file not shown.
2
objects/14/3e18b618c4121987cc1fbc2fbb52d2b4f72dac
Executable file
2
objects/14/3e18b618c4121987cc1fbc2fbb52d2b4f72dac
Executable file
@@ -0,0 +1,2 @@
|
||||
x<01>S<EFBFBD>n<EFBFBD>0<0C><>O<EFBFBD><4F>&<03>o
|
||||
n(ХV`h<><68><EFBFBD>@<40><>Y<EFBFBD>#i<><69>4+<2B><><EFBFBD>d<EFBFBD>M<EFBFBD>6,<2C><><EFBFBD>cRn<07><>ŧ<EFBFBD>wc$P]2O<32><4F>(">/<2F>.<2E>VmI<6D><49><EFBFBD><EFBFBD>z-2<>l2i<32>x3Go<47>}^8<>h<EFBFBD>Xt<58><06><>%<1C>?(<28>6<EFBFBD>9<EFBFBD><39>ZV<5A><56>WW<57><57><13><><EFBFBD><EFBFBD>$<24>)y [<5B><>@;H<>w<EFBFBD><77><EFBFBD>+<0F>k<EFBFBD><6B>.]<5D>J<EFBFBD><4A><EFBFBD><EFBFBD>Ƹ{<7B>5<17>)<11><><EFBFBD>I<EFBFBD>)ۡ <20><>rVsX<73>_)hb[<5B>đQ<C491><51><EFBFBD>.<2E><>cQ҈^<5E><1E><><EFBFBD>_<EFBFBD><5F>ԔDA1v<31>l<EFBFBD>'v<><76>g<EFBFBD>T~lac!'EDx<44>!&<26>L1<>>^Ύ'<27>0u<30><75>3<EFBFBD><33>Q<EFBFBD>M<EFBFBD><4D>^ĺ:<3A>n<><6E><12><>;BnǗ<6E>y)<29><>4ϕ$w<><77><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ųL(7Ld<4C>ʺ<19>.(/<2F>S{<7B><> <09>%1s<><73>߄<EFBFBD>n<EFBFBD>Z<EFBFBD>e<EFBFBD><65><EFBFBD>4<EFBFBD>{_<><5F><EFBFBD><03><>$<11><13><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>fu+<2B><><EFBFBD>GF<47><46>l<EFBFBD>5<EFBFBD>g<EFBFBD>C<19><>{<7B><>q<EFBFBD><71>/<2F>a<>b<EFBFBD>e<EFBFBD>#_/<2F><<3C><><EFBFBD>ѱ<>u!)<29><>Q;e<12><><05>#<23>
|
||||
BIN
objects/14/717342a809d1d0781921335144bbc0a4746939
Executable file
BIN
objects/14/717342a809d1d0781921335144bbc0a4746939
Executable file
Binary file not shown.
BIN
objects/14/f6d66b98172e21dbbcdd10bf84ada832690d6d
Executable file
BIN
objects/14/f6d66b98172e21dbbcdd10bf84ada832690d6d
Executable file
Binary file not shown.
BIN
objects/16/46e5811d796b85b656222f195d2e5686389cca
Executable file
BIN
objects/16/46e5811d796b85b656222f195d2e5686389cca
Executable file
Binary file not shown.
1
objects/17/9a2b2fc2fcb99dbf0e3b45cbfe6c29137eacfa
Executable file
1
objects/17/9a2b2fc2fcb99dbf0e3b45cbfe6c29137eacfa
Executable file
@@ -0,0 +1 @@
|
||||
xM<>MN<4D>0<10>Y<EFBFBD>)<29>Y<EFBFBD>;I<>.z<>(B<>xZLS'<27>MB<>;.<12><>i<EFBFBD><69><0C><<3C>Z<EFBFBD><5A><EFBFBD><EFBFBD><EFBFBD>]<5D>Gwg<><1B><1C>g<EFBFBD>#<23>생]ƕT<C695>B`c<><63><EFBFBD>J+<04>/<2F><0C><>r<EFBFBD><72><EFBFBD>h?_6<1E><><EFBFBD><EFBFBD><EFBFBD>؉C<D889>9<EFBFBD>1<EFBFBD><<3C>Ư<EFBFBD>өI<%<25>-<2D>+<2B><><06>Ņ)~<7E>=<3D><>e<0E><><04><>{<7B>OO<0B><>S<EFBFBD>N^<5E>C<EFBFBD><43>q{B<><42>L);<3B>6<EFBFBD>͑<EFBFBD>Z<EFBFBD>j<EFBFBD>s<EFBFBD><73>t{<7B>$[j<><6A><EFBFBD><EFBFBD><EFBFBD>>-k<>"{*<07><><EFBFBD>ġ\@
|
||||
BIN
objects/18/00d8706a93fd4d23f4d9387d4eab614da038f3
Executable file
BIN
objects/18/00d8706a93fd4d23f4d9387d4eab614da038f3
Executable file
Binary file not shown.
2
objects/19/3bb94396c0b47c273bc2b9ca69ab2920183542
Executable file
2
objects/19/3bb94396c0b47c273bc2b9ca69ab2920183542
Executable file
@@ -0,0 +1,2 @@
|
||||
x<01>TMo<4D>0ݹ<>BP/<2F>A<EFBFBD><41><1B>ƹ<EFBFBD>'t;<0F><>8<EFBFBD>hː<68> <20><><EFBFBD>d<EFBFBD>I<EFBFBD><14><><1F>(<28><><EFBFBD>'5<><1A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>v<EFBFBD><76>j B<><42><EFBFBD>6<EFBFBD><36><EFBFBD>1x<31>`<60><0C>e<EFBFBD><03>W5<57>I_<49><5F>Sj<53><6A>uo<75>F;<3B>7{<7B><><EFBFBD><EFBFBD><01><>q_<71>J<EFBFBD><4A>v<EFBFBD>U<EFBFBD><55>۶<><DBB6><EFBFBD>\ニc<EFBE86><10>Z<EFBFBD><5A><EFBFBD><EFBFBD><EFBFBD>><3E><><0F><>=<0E>{K<><4B>I<EFBFBD><49><EFBFBD><EFBFBD>??|y<>t$R<><52><EFBFBD>n<EFBFBD>&a<><61>=<3D>_'I7<49>h<EFBFBD><01>i²\<5C><><11><14>b|<7C><><EFBFBD>~<7E><>%N<><4E><EFBFBD><EFBFBD>O!<21>#No<4E>$<24><><EFBFBD>*<2A>a<><61><EFBFBD><EFBFBD>z<0F><><EFBFBD><EFBFBD>
|
||||
R<EFBFBD>e<EFBFBD>I]ۋn\DJA<4A><41>M<EFBFBD>X)<29>ا<EFBFBD>E<EFBFBD>jf<6A><66><EFBFBD><EFBFBD>2<EFBFBD>+<<3C><><02><03>s<11>
|
||||
BIN
objects/19/ceca8401294fb5efbde68c330760321630cc30
Executable file
BIN
objects/19/ceca8401294fb5efbde68c330760321630cc30
Executable file
Binary file not shown.
BIN
objects/1a/d768d3a1900db626865af2f5a937e26841b366
Executable file
BIN
objects/1a/d768d3a1900db626865af2f5a937e26841b366
Executable file
Binary file not shown.
BIN
objects/1b/ff56c9599e59ee41938840e287436ff5280fce
Executable file
BIN
objects/1b/ff56c9599e59ee41938840e287436ff5280fce
Executable file
Binary file not shown.
BIN
objects/1c/9819684c8723fa6d73e318f0fa59de5ee81733
Executable file
BIN
objects/1c/9819684c8723fa6d73e318f0fa59de5ee81733
Executable file
Binary file not shown.
BIN
objects/1d/e086d68af03e42d077a5e86cb1792f924baa7b
Executable file
BIN
objects/1d/e086d68af03e42d077a5e86cb1792f924baa7b
Executable file
Binary file not shown.
BIN
objects/1f/0b842b2ad83f9d98838241f207f9bfec072e95
Executable file
BIN
objects/1f/0b842b2ad83f9d98838241f207f9bfec072e95
Executable file
Binary file not shown.
BIN
objects/20/6f0d4bf7829a6dd03a0281bf8f19c07ce73c14
Executable file
BIN
objects/20/6f0d4bf7829a6dd03a0281bf8f19c07ce73c14
Executable file
Binary file not shown.
BIN
objects/21/3aaa191effd81b59bbb5d2f855c8b1bac449f1
Executable file
BIN
objects/21/3aaa191effd81b59bbb5d2f855c8b1bac449f1
Executable file
Binary file not shown.
BIN
objects/22/76cbc486e8f59100f331b2b855540a881fa806
Executable file
BIN
objects/22/76cbc486e8f59100f331b2b855540a881fa806
Executable file
Binary file not shown.
BIN
objects/23/68503c57d158ccd25be39ede9895bb606acf5c
Executable file
BIN
objects/23/68503c57d158ccd25be39ede9895bb606acf5c
Executable file
Binary file not shown.
BIN
objects/23/88c9b8ac04ff5aa17c7e476bb8cedea9816313
Executable file
BIN
objects/23/88c9b8ac04ff5aa17c7e476bb8cedea9816313
Executable file
Binary file not shown.
BIN
objects/25/e275cfcae96a2b38625cfbde232ea74561c943
Executable file
BIN
objects/25/e275cfcae96a2b38625cfbde232ea74561c943
Executable file
Binary file not shown.
BIN
objects/25/eba79a66773a45e801fd6bbd150c6e9892eda2
Executable file
BIN
objects/25/eba79a66773a45e801fd6bbd150c6e9892eda2
Executable file
Binary file not shown.
3
objects/27/6dd4687d22dc1d597263031eeb0f5bef49d87e
Executable file
3
objects/27/6dd4687d22dc1d597263031eeb0f5bef49d87e
Executable file
@@ -0,0 +1,3 @@
|
||||
x<01><>O<EFBFBD><4F>0<10>9<EFBFBD><39><08>V<EFBFBD><56>m<EFBFBD><EFBFBD><EEA2A6><EFBFBD>'<27><14>=<3D>1M<31><4D>4<EFBFBD><34><EFBFBD>8<EFBFBD><38><EFBFBD><EFBFBD>I<EFBFBD>m<EFBFBD><6D><04>=<3D><><EFBFBD><EFBFBD><EFBFBD>N<EFBFBD>]pE/VUX<>1<EFBFBD>T+<16>1<13><12><><EFBFBD>*R<><52>S<EFBFBD>3<EFBFBD><33><EFBFBD>懡<>9C<39><43>hğ@<40><><EFBFBD>
|
||||
<EFBFBD>X<EFBFBD>ْOE<EFBFBD><19><>?<3F>Dlp <20>J<EFBFBD><02><><EFBFBD><EFBFBD><EFBFBD>^<5E>a<EFBFBD>6Q.<2E>6<08><>%<25>Z<EFBFBD>2穮Ħ<<3C>pT@<40><>Ȑ<EFBFBD><C890><0F>U?/{=<3D><>1<EFBFBD>CaE<17>JXLd<06><><EFBFBD><EFBFBD><EFBFBD>ѽo<D1BD><6F>| O!.<2E>T<EFBFBD>zW<7A>s<EFBFBD><73><EFBFBD>DZ<EFBFBD><C7B1>E<EFBFBD><45>v<EFBFBD>lb<6C>c<EFBFBD><0C><><EFBFBD>t\<5C>Ԣq<01>4f<34>I:<3A>e <20><><EFBFBD>Q<EFBFBD><51>N<EFBFBD><4E><EFBFBD><EFBFBD><EFBFBD>|<7C><>z
|
||||
<EFBFBD><EFBFBD>U&<26>wL4Tr<><72><EFBFBD><15><>f<11><><EFBFBD>k9}'<27>"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>|<7C><><EFBFBD><EFBFBD><EFBFBD>m><3E><><15><><EFBFBD>y<><79><EFBFBD><EFBFBD>|z<><7A>~<7E>W<EFBFBD><57><EFBFBD>F<EFBFBD>t<><74><EFBFBD>R<><52><EFBFBD><EFBFBD>U<><12>U[<5B><><EFBFBD>z%<06><>XG"<22><1A>Y<EFBFBD><59>Z<1B><>9L<39>x<EFBFBD><78><EFBFBD>=<3D><15>N~<7E>9<<3C>`<60>pί}$<24>y<>V<EFBFBD>hc<68><63><EFBFBD>֩<EFBFBD>c<EFBFBD><EFBFBD>ox<6F><78>:<08><1A>!y<>P<EFBFBD>
|
||||
BIN
objects/28/b598812960801047b82dcb340a02ddd9b80459
Executable file
BIN
objects/28/b598812960801047b82dcb340a02ddd9b80459
Executable file
Binary file not shown.
BIN
objects/29/e7625424f21e072a6a9971474f4ac981cc0568
Executable file
BIN
objects/29/e7625424f21e072a6a9971474f4ac981cc0568
Executable file
Binary file not shown.
BIN
objects/2a/83e4b24e66a74bd4e0b7c9cb6c1acdcebd6d08
Executable file
BIN
objects/2a/83e4b24e66a74bd4e0b7c9cb6c1acdcebd6d08
Executable file
Binary file not shown.
BIN
objects/2a/d532ca462e237d22e43db11d97021de737b851
Executable file
BIN
objects/2a/d532ca462e237d22e43db11d97021de737b851
Executable file
Binary file not shown.
BIN
objects/2d/55dffdd8f039b264ee7a90fd56c1cbbe2a21df
Executable file
BIN
objects/2d/55dffdd8f039b264ee7a90fd56c1cbbe2a21df
Executable file
Binary file not shown.
BIN
objects/2d/c9601bb639912224e34faf798a5bb28b5a3456
Executable file
BIN
objects/2d/c9601bb639912224e34faf798a5bb28b5a3456
Executable file
Binary file not shown.
BIN
objects/2f/2b9f85c2f788dd78782d2e33dade30b74e4ffd
Executable file
BIN
objects/2f/2b9f85c2f788dd78782d2e33dade30b74e4ffd
Executable file
Binary file not shown.
BIN
objects/2f/e33e4def1340e1578172aa396f95199f71c62c
Executable file
BIN
objects/2f/e33e4def1340e1578172aa396f95199f71c62c
Executable file
Binary file not shown.
BIN
objects/2f/eab11183e7df98250afed4d56506235bd91546
Executable file
BIN
objects/2f/eab11183e7df98250afed4d56506235bd91546
Executable file
Binary file not shown.
2
objects/30/5a210699a31c81b719e9019df6f3073cd8b4fa
Executable file
2
objects/30/5a210699a31c81b719e9019df6f3073cd8b4fa
Executable file
@@ -0,0 +1,2 @@
|
||||
xm<>AO<41>0<0C>9<EFBFBD>W<EFBFBD>4R)<29><>84iHhC<68><43>䶮ѥU<D1A5><55>
|
||||
<EFBFBD><EFBFBD>N<EFBFBD><0E>&r<><12>><3E>{IRV \]^<5E><>
|
||||
BIN
objects/30/6ba1bce3b66b6ec66dd483c7399341d9988043
Executable file
BIN
objects/30/6ba1bce3b66b6ec66dd483c7399341d9988043
Executable file
Binary file not shown.
BIN
objects/31/9dbe0f11bc7e53b2983548bd40463ea4a680fd
Executable file
BIN
objects/31/9dbe0f11bc7e53b2983548bd40463ea4a680fd
Executable file
Binary file not shown.
BIN
objects/32/032de5eda0999169c7b973d56674acbaa8f9b9
Executable file
BIN
objects/32/032de5eda0999169c7b973d56674acbaa8f9b9
Executable file
Binary file not shown.
1
objects/32/18f79f6ea90cbf170cf5067cda40acdb3bab0f
Executable file
1
objects/32/18f79f6ea90cbf170cf5067cda40acdb3bab0f
Executable file
@@ -0,0 +1 @@
|
||||
x<01><>Mj!F<><46><14>Z<><5A>
|
||||
BIN
objects/32/d367070d6b3e42a29cc0c596a42bf631d33b8b
Executable file
BIN
objects/32/d367070d6b3e42a29cc0c596a42bf631d33b8b
Executable file
Binary file not shown.
BIN
objects/32/ec41ac2bea348c2470f8cdb8d4f2106da81683
Executable file
BIN
objects/32/ec41ac2bea348c2470f8cdb8d4f2106da81683
Executable file
Binary file not shown.
BIN
objects/33/ebfe3c72a04d210e70f879e2f200d9486f16ae
Executable file
BIN
objects/33/ebfe3c72a04d210e70f879e2f200d9486f16ae
Executable file
Binary file not shown.
BIN
objects/34/e4662e25fe1abc9b15eb36ef6063ac8f29951f
Executable file
BIN
objects/34/e4662e25fe1abc9b15eb36ef6063ac8f29951f
Executable file
Binary file not shown.
BIN
objects/37/835854a7ae43610b1ecf4566dfeed2005141d9
Executable file
BIN
objects/37/835854a7ae43610b1ecf4566dfeed2005141d9
Executable file
Binary file not shown.
BIN
objects/38/26a7c596fff50eaed2b3be1cd6c63ce1e124ad
Executable file
BIN
objects/38/26a7c596fff50eaed2b3be1cd6c63ce1e124ad
Executable file
Binary file not shown.
BIN
objects/39/f085aa9ff8320e767ab1539245b3d0aa1e9209
Executable file
BIN
objects/39/f085aa9ff8320e767ab1539245b3d0aa1e9209
Executable file
Binary file not shown.
BIN
objects/3a/81b20082ddb7f63d423689e4e3f35dafd86abf
Executable file
BIN
objects/3a/81b20082ddb7f63d423689e4e3f35dafd86abf
Executable file
Binary file not shown.
3
objects/3b/388a3e0139e27761e8c0d107a311cdb205a464
Executable file
3
objects/3b/388a3e0139e27761e8c0d107a311cdb205a464
Executable file
@@ -0,0 +1,3 @@
|
||||
x<1D>1<0E>0<0C>a<EFBFBD><61>²<EFBFBD>E01<30><31>ō]j<>(1C<31><43>;)<29><><EFBFBD><EFBFBD>-<2D>.p<><70>N<EFBFBD> <09>
|
||||
<EFBFBD>L<1E><><0E>˚<>0L_p_<70>e<EFBFBD>hIK@_<><5F>$<24>'f<>,<2C>TX<><1B><>h{<7B><><EFBFBD><EFBFBD>Y<EFBFBD><59><EFBFBD><1F><><EFBFBD>gw|<7C><><EFBFBD>
|
||||
S
|
||||
BIN
objects/3b/c52259e62cc1434d7e5d8886086df4a1122a6b
Executable file
BIN
objects/3b/c52259e62cc1434d7e5d8886086df4a1122a6b
Executable file
Binary file not shown.
BIN
objects/3b/ca7dc4001522151ddd04571f58976394ca0481
Executable file
BIN
objects/3b/ca7dc4001522151ddd04571f58976394ca0481
Executable file
Binary file not shown.
1
objects/3d/62ecbeafae06c692a8caa741d4fc7ff17938b2
Executable file
1
objects/3d/62ecbeafae06c692a8caa741d4fc7ff17938b2
Executable file
@@ -0,0 +1 @@
|
||||
xe<>A<0B>0<18>;<3B>+<2B><>B<><42>q<EFBFBD>,<2C>f|Z<>)<29><1B>M<><4D>ߟBP<42><50>y<EFBFBD><79><EFBFBD><EFBFBD><EFBFBD><EFBFBD>x<EFBFBD>^t<><74>d<EFBFBD>t<EFBFBD>-<<3C><>a8<03><>\p<>|/<2F><><EFBFBD>l<EFBFBD><6C><EFBFBD>C<EFBFBD><43><EFBFBD><EFBFBD>t<EFBFBD><74><EFBFBD>t+<2B><>I<EFBFBD>A<EFBFBD>5<EFBFBD>cQ̎Ѥ<CC8E><D1A4><EFBFBD><EFBFBD>|ёLx<4C>?<3F><>p<EFBFBD>]<5D><><EFBFBD><EFBFBD><EFBFBD>%+Q<>5<><35>}<(3<>R<EFBFBD><52><EFBFBD>7<1E>3<<3C><>!<21>?y
|
||||
BIN
objects/3d/dc48f0803e9c0028b9a1c611753fe87361f9a2
Executable file
BIN
objects/3d/dc48f0803e9c0028b9a1c611753fe87361f9a2
Executable file
Binary file not shown.
BIN
objects/3e/42d708d833753cc1705be31f7d156351c018f8
Executable file
BIN
objects/3e/42d708d833753cc1705be31f7d156351c018f8
Executable file
Binary file not shown.
BIN
objects/3e/a28508679caa3673346634fc26eb0cb2819db1
Executable file
BIN
objects/3e/a28508679caa3673346634fc26eb0cb2819db1
Executable file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user