Just configured from Wine's GIT
svn path=/; revision=1
This commit is contained in:
12
.git/config
Normal file
12
.git/config
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
[core]
|
||||||
|
repositoryformatversion = 0
|
||||||
|
filemode = true
|
||||||
|
bare = false
|
||||||
|
logallrefupdates = true
|
||||||
|
ignorecase = true
|
||||||
|
[remote "origin"]
|
||||||
|
fetch = +refs/heads/*:refs/remotes/origin/*
|
||||||
|
url = http://source.winehq.org/git/appdb.git/
|
||||||
|
[branch "master"]
|
||||||
|
remote = origin
|
||||||
|
merge = refs/heads/master
|
||||||
1
.git/description
Normal file
1
.git/description
Normal file
@@ -0,0 +1 @@
|
|||||||
|
Unnamed repository; edit this file 'description' to name the repository.
|
||||||
15
.git/hooks/applypatch-msg.sample
Executable file
15
.git/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
|
||||||
|
test -x "$GIT_DIR/hooks/commit-msg" &&
|
||||||
|
exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"}
|
||||||
|
:
|
||||||
24
.git/hooks/commit-msg.sample
Executable file
24
.git/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
|
||||||
|
}
|
||||||
8
.git/hooks/post-commit.sample
Executable file
8
.git/hooks/post-commit.sample
Executable file
@@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# An example hook script that is called after a successful
|
||||||
|
# commit is made.
|
||||||
|
#
|
||||||
|
# To enable this hook, rename this file to "post-commit".
|
||||||
|
|
||||||
|
: Nothing
|
||||||
15
.git/hooks/post-receive.sample
Executable file
15
.git/hooks/post-receive.sample
Executable file
@@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# An example hook script for the "post-receive" event.
|
||||||
|
#
|
||||||
|
# The "post-receive" script is run after receive-pack has accepted a pack
|
||||||
|
# and the repository has been updated. It is passed arguments in through
|
||||||
|
# stdin in the form
|
||||||
|
# <oldrev> <newrev> <refname>
|
||||||
|
# For example:
|
||||||
|
# aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master
|
||||||
|
#
|
||||||
|
# see contrib/hooks/ for an sample, or uncomment the next line and
|
||||||
|
# rename the file to "post-receive".
|
||||||
|
|
||||||
|
#. /usr/share/doc/git-core/contrib/hooks/post-receive-email
|
||||||
8
.git/hooks/post-update.sample
Executable file
8
.git/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
.git/hooks/pre-applypatch.sample
Executable file
14
.git/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
|
||||||
|
test -x "$GIT_DIR/hooks/pre-commit" &&
|
||||||
|
exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
|
||||||
|
:
|
||||||
43
.git/hooks/pre-commit.sample
Executable file
43
.git/hooks/pre-commit.sample
Executable file
@@ -0,0 +1,43 @@
|
|||||||
|
#!/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 you want to allow non-ascii filenames set this variable to true.
|
||||||
|
allownonascii=$(git config hooks.allownonascii)
|
||||||
|
|
||||||
|
# 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" ] &&
|
||||||
|
test "$(git diff --cached --name-only --diff-filter=A -z |
|
||||||
|
LC_ALL=C tr -d '[ -~]\0')"
|
||||||
|
then
|
||||||
|
echo "Error: Attempt to add a non-ascii filename."
|
||||||
|
echo
|
||||||
|
echo "This can cause problems if you want to work together"
|
||||||
|
echo "with people on other platforms than you."
|
||||||
|
echo
|
||||||
|
echo "To be portable it is adviseable to rename the file ..."
|
||||||
|
echo
|
||||||
|
echo "If you know what you are doing you can disable this"
|
||||||
|
echo "check using:"
|
||||||
|
echo
|
||||||
|
echo " git config hooks.allownonascii true"
|
||||||
|
echo
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if git-rev-parse --verify HEAD >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
against=HEAD
|
||||||
|
else
|
||||||
|
# Initial commit: diff against an empty tree object
|
||||||
|
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
|
||||||
|
fi
|
||||||
|
|
||||||
|
exec git diff-index --check --cached $against --
|
||||||
169
.git/hooks/pre-rebase.sample
Executable file
169
.git/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"`
|
||||||
|
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
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
################################################################
|
||||||
|
|
||||||
|
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".
|
||||||
36
.git/hooks/prepare-commit-msg.sample
Executable file
36
.git/hooks/prepare-commit-msg.sample
Executable file
@@ -0,0 +1,36 @@
|
|||||||
|
#!/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 comments out the
|
||||||
|
# "Conflicts:" part of a merge commit.
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
|
||||||
|
case "$2,$3" in
|
||||||
|
merge,)
|
||||||
|
perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;
|
||||||
|
|
||||||
|
# ,|template,)
|
||||||
|
# perl -i.bak -pe '
|
||||||
|
# print "\n" . `git diff --cached --name-status -r`
|
||||||
|
# if /^#/ && $first++ == 0' "$1" ;;
|
||||||
|
|
||||||
|
*) ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
|
||||||
|
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
|
||||||
128
.git/hooks/update.sample
Executable file
128
.git/hooks/update.sample
Executable file
@@ -0,0 +1,128 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# An example hook script to blocks 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
|
||||||
BIN
.git/index
Normal file
BIN
.git/index
Normal file
Binary file not shown.
6
.git/info/exclude
Normal file
6
.git/info/exclude
Normal 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
.git/logs/HEAD
Normal file
1
.git/logs/HEAD
Normal file
@@ -0,0 +1 @@
|
|||||||
|
0000000000000000000000000000000000000000 5a9e078df620ab1f29ace3f9f6f78ced726c762b Natalia Portillo <claunia@hecate.claunia.com> 1254963405 +0100 clone: from http://source.winehq.org/git/appdb.git/
|
||||||
1
.git/logs/refs/heads/master
Normal file
1
.git/logs/refs/heads/master
Normal file
@@ -0,0 +1 @@
|
|||||||
|
0000000000000000000000000000000000000000 5a9e078df620ab1f29ace3f9f6f78ced726c762b Natalia Portillo <claunia@hecate.claunia.com> 1254963405 +0100 clone: from http://source.winehq.org/git/appdb.git/
|
||||||
1
.git/logs/refs/remotes/origin/HEAD
Normal file
1
.git/logs/refs/remotes/origin/HEAD
Normal file
@@ -0,0 +1 @@
|
|||||||
|
0000000000000000000000000000000000000000 5a9e078df620ab1f29ace3f9f6f78ced726c762b Natalia Portillo <claunia@hecate.claunia.com> 1254963405 +0100 clone: from http://source.winehq.org/git/appdb.git/
|
||||||
BIN
.git/objects/00/01b42f6656882195cf50659811428b9265e4aa
Normal file
BIN
.git/objects/00/01b42f6656882195cf50659811428b9265e4aa
Normal file
Binary file not shown.
BIN
.git/objects/00/054db8e74f7bbae254a86e8e2ae2b8356f5496
Normal file
BIN
.git/objects/00/054db8e74f7bbae254a86e8e2ae2b8356f5496
Normal file
Binary file not shown.
BIN
.git/objects/00/139640e82a15073aac580ed3bc433a59048d72
Normal file
BIN
.git/objects/00/139640e82a15073aac580ed3bc433a59048d72
Normal file
Binary file not shown.
BIN
.git/objects/00/48da7134eed3d342b4c05ab75753a467668664
Normal file
BIN
.git/objects/00/48da7134eed3d342b4c05ab75753a467668664
Normal file
Binary file not shown.
BIN
.git/objects/00/7296a118638ebcd8788729ab270864511c8f20
Normal file
BIN
.git/objects/00/7296a118638ebcd8788729ab270864511c8f20
Normal file
Binary file not shown.
BIN
.git/objects/00/81e4ca812638250ac50653a617fed4ef480313
Normal file
BIN
.git/objects/00/81e4ca812638250ac50653a617fed4ef480313
Normal file
Binary file not shown.
BIN
.git/objects/00/83a67fa562a7b608d290b85ff7d5f4906e3ad9
Normal file
BIN
.git/objects/00/83a67fa562a7b608d290b85ff7d5f4906e3ad9
Normal file
Binary file not shown.
2
.git/objects/00/f9a20596bf14a5b72b697016a999fbaced0318
Normal file
2
.git/objects/00/f9a20596bf14a5b72b697016a999fbaced0318
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
x<01><>AN<41>09<>sGB<47>ד<EFBFBD><08><>p<>L<>3<EFBFBD><33><EFBFBD>^9F<39><46>q<EFBFBD>c<EFBFBD><63><13><><EFBFBD>[<5B>n<EFBFBD><6E>+<2B>sW<73>x<>+<19><>7a<37><61><EFBFBD><EFBFBD>3e'<27><>[da<64><61>Cw<43>"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>A<EFBFBD>Ĩi<1E><>ӄ<EFBFBD>蜥Q;<3B><>k.<2E>r<EFBFBD>/JA
|
||||||
|
<EFBFBD>E<EFBFBD>W:vIp<49><70>.Ivx<76><78><EFBFBD><EFBFBD>*k<>d<EFBFBD>%<25><><EFBFBD><EFBFBD><EFBFBD><0C><>npn<70><01>{<7B><>]s<><73><EFBFBD>8<EFBFBD>E<EFBFBD><45><EFBFBD>.\_)<29>"<22>.k<><04><><EFBFBD>@Ԧ<><1E><>倸<EFBFBD><16>=<3D><><EFBFBD>G<>j<EFBFBD>
|
||||||
BIN
.git/objects/01/26067319b91e45c0c7b2b564bb2531351587e7
Normal file
BIN
.git/objects/01/26067319b91e45c0c7b2b564bb2531351587e7
Normal file
Binary file not shown.
BIN
.git/objects/01/2c845238e57ac1ea2708515d656eab1061dc9a
Normal file
BIN
.git/objects/01/2c845238e57ac1ea2708515d656eab1061dc9a
Normal file
Binary file not shown.
2
.git/objects/01/36e4a92bdefe7943f9fa9f8eb8d45d691a40d5
Normal file
2
.git/objects/01/36e4a92bdefe7943f9fa9f8eb8d45d691a40d5
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
x<01><>KJ1Ego-/<2F>|Aı<03><>ϋ!I<><49><EFBFBD><EFBFBD><EFBFBD>[<5B><05><>ˁs<CB81><73><EFBFBD>Zß<> <02><0C>3<EFBFBD><33><EFBFBD>)<29><><EFBFBD>h<EFBFBD>6<EFBFBD>ɹ<EFBFBD><C9B9>+<2B>fW?<3F><><EFBFBD><18>
|
||||||
|
<EFBFBD>m<EFBFBD><14><><EFBFBD>6<EFBFBD>GR*<2A><><EFBFBD>1ڰ<19><>m<EFBFBD>}<7D>;
|
||||||
BIN
.git/objects/01/4cbeb65164d9dd4cd71d02b6480583d8cbae22
Normal file
BIN
.git/objects/01/4cbeb65164d9dd4cd71d02b6480583d8cbae22
Normal file
Binary file not shown.
BIN
.git/objects/01/592c60efe4818cb8d8daf15dfdc563ce9e1315
Normal file
BIN
.git/objects/01/592c60efe4818cb8d8daf15dfdc563ce9e1315
Normal file
Binary file not shown.
BIN
.git/objects/01/61b73f481aea148e2b4ce42034379fb4d489be
Normal file
BIN
.git/objects/01/61b73f481aea148e2b4ce42034379fb4d489be
Normal file
Binary file not shown.
1
.git/objects/01/7703632a83c1869beed4d495d2e0a0c3cf0cc6
Normal file
1
.git/objects/01/7703632a83c1869beed4d495d2e0a0c3cf0cc6
Normal file
@@ -0,0 +1 @@
|
|||||||
|
x<01><>]j<> <14><><EFBFBD>*<2A>f0ƫJ)<14><>E\<5C>:<11>(j<>v<EFBFBD><76><EFBFBD><12>v<EFBFBD><76>'<27>m<EFBFBD>Ԃ/<2F>1C<31>6jV['<27><>J䍳<4A><E48DB3><EFBFBD>1Y<31>l<EFBFBD>sATj<54><0F> <09>c<EFBFBD>Q<EFBFBD><51>4<EFBFBD><34>C<EFBFBD><16>#<23>ˀ8<CB80><38>A<>XK<58><4B><EFBFBD><EFBFBD>_<><5F>h<EFBFBD>װ=<3D>;}<1F><>^<5E><><EFBFBD><EFBFBD><06><><EFBFBD>Z<EFBFBD><5A><17>H-<2D>ϓ<><CF93>Y<17><>ο=<3D>7<EFBFBD><37>J<EFBFBD><4A><EFBFBD>{<7B>:<1E>j<EFBFBD><6A>ԕ;P<>!<21>=G<><47><EFBFBD><EFBFBD>v&<26><>]z
|
||||||
1
.git/objects/01/7d2d68a0b202baac41f83bd1d661faba2651f7
Normal file
1
.git/objects/01/7d2d68a0b202baac41f83bd1d661faba2651f7
Normal file
@@ -0,0 +1 @@
|
|||||||
|
x%<25>MN<4D>0<14>Y<EFBFBD>o<><6F><1C>$vU<76><55><EFBFBD>a<EFBFBD> <09><><EFBFBD><EFBFBD>RbG<62><47>қ<EFBFBD><D29B>bX<62><1B><>7<1A><>5V<35><56>=<3D>B<04>4<06><>vRf"<22>
|
||||||
BIN
.git/objects/01/7ed62ad51c2e32835c8ca4eb9333dccd12e14c
Normal file
BIN
.git/objects/01/7ed62ad51c2e32835c8ca4eb9333dccd12e14c
Normal file
Binary file not shown.
BIN
.git/objects/01/8304081d7ed0231ab34a1d7b048557944a21c1
Normal file
BIN
.git/objects/01/8304081d7ed0231ab34a1d7b048557944a21c1
Normal file
Binary file not shown.
BIN
.git/objects/01/bc58552afe3f7248fcde3d683a5275fdc56a69
Normal file
BIN
.git/objects/01/bc58552afe3f7248fcde3d683a5275fdc56a69
Normal file
Binary file not shown.
BIN
.git/objects/01/dc82bc53dd792d08219709a49f5ba1995c22a0
Normal file
BIN
.git/objects/01/dc82bc53dd792d08219709a49f5ba1995c22a0
Normal file
Binary file not shown.
BIN
.git/objects/01/e9607cd59e04678ea50766744a84e9416d8385
Normal file
BIN
.git/objects/01/e9607cd59e04678ea50766744a84e9416d8385
Normal file
Binary file not shown.
BIN
.git/objects/02/2459cde23e1306822485d0f4386ba6ecb3a8d9
Normal file
BIN
.git/objects/02/2459cde23e1306822485d0f4386ba6ecb3a8d9
Normal file
Binary file not shown.
BIN
.git/objects/02/2a100d94d498b5d0b144c614edbe7f1739933f
Normal file
BIN
.git/objects/02/2a100d94d498b5d0b144c614edbe7f1739933f
Normal file
Binary file not shown.
BIN
.git/objects/02/5cd92d632343cfd707a4648d3a61803cad22e4
Normal file
BIN
.git/objects/02/5cd92d632343cfd707a4648d3a61803cad22e4
Normal file
Binary file not shown.
3
.git/objects/02/8d51d85dbc16a2f3f592ccf85ed9c58a79c817
Normal file
3
.git/objects/02/8d51d85dbc16a2f3f592ccf85ed9c58a79c817
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
x<01><>=N<>@<0C><>s
|
||||||
|
w[ <20><><EFBFBD>3<EFBFBD>B+()<29>A<EFBFBD><41>L<EFBFBD>M<EFBFBD>f<EFBFBD><66>?{3z.<2E><0F>d<EFBFBD><64>{z<><7A><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>p<EFBFBD>*3<><33>M<>L<EFBFBD><4C><EFBFBD><EFBFBD><EFBFBD>
|
||||||
|
<EFBFBD>"a<><61><EFBFBD><EFBFBD>.D<1F><>P<EFBFBD><50><EFBFBD><EFBFBD>S<EFBFBD><53>BF3<46>3<EFBFBD><33><EFBFBD>d<EFBFBD>8L<38>;<1F>p@<40>}<7D><>><3E>,<1E><>Me<4D>
|
||||||
BIN
.git/objects/02/8edb6c8806bc9aa38f45ad14d4857881cf9979
Normal file
BIN
.git/objects/02/8edb6c8806bc9aa38f45ad14d4857881cf9979
Normal file
Binary file not shown.
2
.git/objects/02/94f01c3f1bed540dd7030969ebde83b879611b
Normal file
2
.git/objects/02/94f01c3f1bed540dd7030969ebde83b879611b
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
x<01><>AN<41>09<>s_ <09><><EFBFBD><EFBFBD> <20><>p<>㉳<><E389B3><EFBFBD><EFBFBD><EFBFBD>
|
||||||
|
<EFBFBD>3<EFBFBD>|x<01><>VuI<75><49><EFBFBD><EFBFBD>><3E>#H<><48><EFBFBD><EFBFBD>F,<2C><1E>w<EFBFBD>Ȃ<EFBFBD><1B>#'<13><0F>17^<5E>P<EFBFBD><50><EFBFBD><EFBFBD><EFBFBD><<3C> <09><11><><EFBFBD>b<EFBFBD><62><EFBFBD>#"Q|ok<6F><6B><EFBFBD><EFBFBD>/<2F>s<EFBFBD><73><EFBFBD><EFBFBD>l|1<><31><EFBFBD>w<EFBFBD><77><EFBFBD>g<EFBFBD><67><EFBFBD><EFBFBD>q퓲<71><ED93B2><EFBFBD><EFBFBD>Q<EFBFBD><51><02><>ɡ1f<31><66>6Z<36><5A>v<EFBFBD><76>9<EFBFBD>&vW<76><57>菨<EFBFBD>t<EFBFBD><74>½<EFBFBD><C2BD><EFBFBD>:v+<2B><><EFBFBD><EFBFBD><EFBFBD>|<7C>pB<70>=<3D>_<EFBFBD><5F>bK
|
||||||
BIN
.git/objects/02/f40e5bd4da88e96b01f9aa71050ebfb40be431
Normal file
BIN
.git/objects/02/f40e5bd4da88e96b01f9aa71050ebfb40be431
Normal file
Binary file not shown.
BIN
.git/objects/02/f54da8cad08c3ec1f0dcf0128a46af68af9b61
Normal file
BIN
.git/objects/02/f54da8cad08c3ec1f0dcf0128a46af68af9b61
Normal file
Binary file not shown.
2
.git/objects/03/39fa60c2a467e49649e5bbc563eec81e6f9a39
Normal file
2
.git/objects/03/39fa60c2a467e49649e5bbc563eec81e6f9a39
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
x<01><>9N1<14><>}<7D><>4<><34><EFBFBD>"!D.@\<5C>y<EFBFBD>̌<EFBFBD><CC8C>#<23>C<EFBFBD><43><EFBFBD><EFBFBD>\<5C><>_<EFBFBD>M<EFBFBD>tZ:(<28>nz#n<14>V<EFBFBD><56><EFBFBD>HB<06><>I<1F><><EFBFBD>Z<11><><EFBFBD>'d+6*<1D>E'<27><><EFBFBD><<3C><>;D<> <09>W<EFBFBD><14> (<28><>9F<39><46>><3E><06>#}bI<62><49>y<EFBFBD><79><11>x<><78>j<EFBFBD>6x<36><78>><3E><><EFBFBD>Q<EFBFBD><19>k<EFBFBD><6B><EFBFBD>zz!<21>^i<><69>K<EFBFBD><4B>pw?<3F><><EFBFBD>^<5E><>Z<EFBFBD><5A>!%<25><><EFBFBD>Z<EFBFBD><5A><19><><EFBFBD>LؗZ<D897>/K"(<28><0F>[<5B><><EFBFBD><EFBFBD><EFBFBD>m<EFBFBD><6D>ۼl<DBBC>~<7E><1B><>m<><6D>A(<28>٨'#<23>\<5C>@<40><>(<28><>&
|
||||||
|
<EFBFBD>g?X^{<7B>
|
||||||
BIN
.git/objects/03/73d15ce396a988819668b767341109e3fc2b6d
Normal file
BIN
.git/objects/03/73d15ce396a988819668b767341109e3fc2b6d
Normal file
Binary file not shown.
BIN
.git/objects/03/7c0a63656e654bebc12fdadd4fca454a2c4cf8
Normal file
BIN
.git/objects/03/7c0a63656e654bebc12fdadd4fca454a2c4cf8
Normal file
Binary file not shown.
BIN
.git/objects/03/b56f240562b2451d358eef2c22c93764255c71
Normal file
BIN
.git/objects/03/b56f240562b2451d358eef2c22c93764255c71
Normal file
Binary file not shown.
BIN
.git/objects/03/b59209793072ec14aeddb7c6c6bdb3cbb669b4
Normal file
BIN
.git/objects/03/b59209793072ec14aeddb7c6c6bdb3cbb669b4
Normal file
Binary file not shown.
BIN
.git/objects/03/b614fd1003642a1c6d4e3b3391a123d4d2dd8f
Normal file
BIN
.git/objects/03/b614fd1003642a1c6d4e3b3391a123d4d2dd8f
Normal file
Binary file not shown.
BIN
.git/objects/03/bd92dd3529601e7fad7def2300767159a0ed23
Normal file
BIN
.git/objects/03/bd92dd3529601e7fad7def2300767159a0ed23
Normal file
Binary file not shown.
BIN
.git/objects/03/fa3f1c7f1c5f3a80d2e3b53894f52a8b37955a
Normal file
BIN
.git/objects/03/fa3f1c7f1c5f3a80d2e3b53894f52a8b37955a
Normal file
Binary file not shown.
2
.git/objects/04/057ee34b027abd5479645f4d7e90e83083ddee
Normal file
2
.git/objects/04/057ee34b027abd5479645f4d7e90e83083ddee
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
x-<2D>Mj<4D>0F<><46>)<29>/<1C><1B>aJ<61><4A>fN<66><4E><EFBFBD>Đ<EFBFBD><C490>qH<71>f<EFBFBD><66>b5<62><35>}zB˲<>\<5C><>V<EFBFBD><56><EFBFBD><EFBFBD><EFBFBD>D<EFBFBD><44><EFBFBD>0a<30><61><EFBFBD>,<06>PjtƩ <20>
|
||||||
|
<EFBFBD><0F><><EFBFBD>8<11><><EFBFBD>E<EFBFBD><45><14>A<EFBFBD><41>r<12>F.|t8<74><38>M<EFBFBD><4D><EFBFBD>L_><07><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Q<EFBFBD><51><EFBFBD>wʹ<77><CDB4><EFBFBD><EFBFBD><EFBFBD>&<26><>J<EFBFBD><4A>^<5E><><EFBFBD>e<EFBFBD><65>8:<3A>9g<39><67>3<1B><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||||
BIN
.git/objects/04/060f0964d7be10e46ae7034c7f96a7b33fa922
Normal file
BIN
.git/objects/04/060f0964d7be10e46ae7034c7f96a7b33fa922
Normal file
Binary file not shown.
BIN
.git/objects/04/19168192970f4fc4427399682e6f571660ebe5
Normal file
BIN
.git/objects/04/19168192970f4fc4427399682e6f571660ebe5
Normal file
Binary file not shown.
1
.git/objects/04/1d0d2bc32a50968ff0c034daad036d5bd73d5a
Normal file
1
.git/objects/04/1d0d2bc32a50968ff0c034daad036d5bd73d5a
Normal file
@@ -0,0 +1 @@
|
|||||||
|
x=<3D><>j<EFBFBD>0D{<7B>W<EFBFBD>=Ԭ,ɶ <20>@n<><6E>@o<>ze+<2B><>F<EFBFBD>)<29><><EFBFBD>m<EFBFBD><6D>y<03><19><>b<EFBFBD>ƺ<EFBFBD><C6BA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><07>{ݱ
|
||||||
BIN
.git/objects/04/2dfaac387e52a91568cf0f61da71023a41eb12
Normal file
BIN
.git/objects/04/2dfaac387e52a91568cf0f61da71023a41eb12
Normal file
Binary file not shown.
1
.git/objects/04/73f7bfc3f31eb3a58ab6fadbeae31af6988c62
Normal file
1
.git/objects/04/73f7bfc3f31eb3a58ab6fadbeae31af6988c62
Normal file
@@ -0,0 +1 @@
|
|||||||
|
x<01><>=N<>0<10><>s<EFBFBD>鑐<EFBFBD><E99190>8<EFBFBD>Vhi(i8<69>$3<>DJ<<3C><>,<2C><><EFBFBD>s1L<31> <09><><EFBFBD><EFBFBD><EFBFBD>鍲<EFBFBD>sӆ<><D386><EFBFBD>A<EFBFBD>[P9<50><39>><3E><><EFBFBD><EFBFBD>1<EFBFBD><31><01><><EFBFBD><EFBFBD>F<EFBFBD>E<EFBFBD>|`<60>T@a<>ɶ#R<><52>!<1D>Ay<41>]<5D><><EFBFBD>h)Z<><5A>^&<26><><EFBFBD><EFBFBD>q<><71>y<EFBFBD><05><><13><7F><7F><1B><><EFBFBD><EFBFBD>2<EFBFBD>T<11>x<EFBFBD>t<<3C><>>C<>mgz<67>{<0B>J+<2B>Զ<EFBFBD>.<2E><>?ch<63><68><EFBFBD><EFBFBD>|$<24><>H><3E>"H{^6(7<><37>,<2C><> HZ<0E><><EFBFBD>p<EFBFBD>yg<79>_<EFBFBD><5F><01><>l<EFBFBD>
|
||||||
BIN
.git/objects/04/7c4c0ed325a883c3f05fd56b9d6dc77629fbee
Normal file
BIN
.git/objects/04/7c4c0ed325a883c3f05fd56b9d6dc77629fbee
Normal file
Binary file not shown.
BIN
.git/objects/04/94354f0e8e6b494480a3cb98f408aae2a4747d
Normal file
BIN
.git/objects/04/94354f0e8e6b494480a3cb98f408aae2a4747d
Normal file
Binary file not shown.
BIN
.git/objects/04/a2178d15ed7c1b415e79ae53d69f8d1858a66a
Normal file
BIN
.git/objects/04/a2178d15ed7c1b415e79ae53d69f8d1858a66a
Normal file
Binary file not shown.
BIN
.git/objects/04/affed54b1a3b482e161389badf1ec910df3711
Normal file
BIN
.git/objects/04/affed54b1a3b482e161389badf1ec910df3711
Normal file
Binary file not shown.
BIN
.git/objects/04/ba7d3b4cef121bad4d74f9f0dc92cd4abefb6e
Normal file
BIN
.git/objects/04/ba7d3b4cef121bad4d74f9f0dc92cd4abefb6e
Normal file
Binary file not shown.
BIN
.git/objects/04/dbeae441778c5f48b6eea36cc16fb0e7c6ca09
Normal file
BIN
.git/objects/04/dbeae441778c5f48b6eea36cc16fb0e7c6ca09
Normal file
Binary file not shown.
2
.git/objects/05/070e6a3a92b375ad5d3a60b4daa0b893f19c10
Normal file
2
.git/objects/05/070e6a3a92b375ad5d3a60b4daa0b893f19c10
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
x<EFBFBD><EFBFBD><EFBFBD>;N<>0E<><45><EFBFBD><EFBFBD><01><>3v2B <09>n`<03><>sbǑ?<0C>'<27>hh<68>nq<6E>ѱ)<29>PA<50><41>]<5D>D<EFBFBD><44><EFBFBD>
|
||||||
|
<EFBFBD>ƍ<><C68D>$<24>"i9i<39>Nk<4E><6B>Hv<48>v̴U<CCB4>Bk5
|
||||||
BIN
.git/objects/05/30664a8cf1d129efa73e28b7461661937008da
Normal file
BIN
.git/objects/05/30664a8cf1d129efa73e28b7461661937008da
Normal file
Binary file not shown.
BIN
.git/objects/05/35a9e4513c8f71564b8f95d359e0b3c0eed2cc
Normal file
BIN
.git/objects/05/35a9e4513c8f71564b8f95d359e0b3c0eed2cc
Normal file
Binary file not shown.
BIN
.git/objects/05/5a53077f121e5886bd2ebfdd5ba3f380320392
Normal file
BIN
.git/objects/05/5a53077f121e5886bd2ebfdd5ba3f380320392
Normal file
Binary file not shown.
BIN
.git/objects/05/62985244e90a1a6881af0179b32218fb8399c0
Normal file
BIN
.git/objects/05/62985244e90a1a6881af0179b32218fb8399c0
Normal file
Binary file not shown.
4
.git/objects/05/8eba4b4ff88e10c54db21d2306eb0d34fbcbed
Normal file
4
.git/objects/05/8eba4b4ff88e10c54db21d2306eb0d34fbcbed
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
x%NMN<4D> v<>S<EFBFBD><53><EFBFBD>Z<>k2<6B><32>ѭn<<01>GK<47>B<03>:7s<37><73>$<24><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>m<EFBFBD><6D><EFBFBD><EFBFBD><EFBFBD>$"<22><>v<EFBFBD><76>&<26>Ą(<28><>:<3A><>4H<14><><EFBFBD><EFBFBD><EFBFBD> <09><>]'
|
||||||
|
$<06>"<22>:<3A>$N<><4E>H<EFBFBD>703q<33><06><1B><><EFBFBD>><3E><<3C><><EFBFBD><EFBFBD><EFBFBD><04><><EFBFBD>U<EFBFBD>3<05><><EFBFBD>N<EFBFBD>2\tUoe<6F><65>Z<EFBFBD><5A>s<0C><><EFBFBD><EFBFBD>
|
||||||
|
<EFBFBD><EFBFBD><EFBFBD>WJ<57>#<23><>5<EFBFBD><35><EFBFBD>K<EFBFBD>yY<79><59><EFBFBD>Ӭ\<5C><>nz=<3D><><EFBFBD>}K<><4B><EFBFBD><EFBFBD>=J<><13>5<35><DEBC><EFBFBD>u<EFBFBD>b!8<>z<EFBFBD><7A><EFBFBD><EFBFBD>}<7D>!<21>
|
||||||
|
<EFBFBD><02><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>V]<5D>
|
||||||
BIN
.git/objects/05/b1d5cca11feed93c2a315c416190cec1f07418
Normal file
BIN
.git/objects/05/b1d5cca11feed93c2a315c416190cec1f07418
Normal file
Binary file not shown.
BIN
.git/objects/05/edd8a4c5678ce3e8563b447de9c10ac8f66a12
Normal file
BIN
.git/objects/05/edd8a4c5678ce3e8563b447de9c10ac8f66a12
Normal file
Binary file not shown.
BIN
.git/objects/05/efcd1ebbe5cc1e07d482faf69fb6ce36460fa9
Normal file
BIN
.git/objects/05/efcd1ebbe5cc1e07d482faf69fb6ce36460fa9
Normal file
Binary file not shown.
BIN
.git/objects/05/fd02298a6c485adee842c4a33de485035f02e4
Normal file
BIN
.git/objects/05/fd02298a6c485adee842c4a33de485035f02e4
Normal file
Binary file not shown.
BIN
.git/objects/05/ff1aba0506289d4f4e23324fbacb479a32e4a0
Normal file
BIN
.git/objects/05/ff1aba0506289d4f4e23324fbacb479a32e4a0
Normal file
Binary file not shown.
BIN
.git/objects/06/05c81994df22d1b78db47451f301c6393d582b
Normal file
BIN
.git/objects/06/05c81994df22d1b78db47451f301c6393d582b
Normal file
Binary file not shown.
BIN
.git/objects/06/33c007da00952d7874a95ac5d6e8554bf5a888
Normal file
BIN
.git/objects/06/33c007da00952d7874a95ac5d6e8554bf5a888
Normal file
Binary file not shown.
BIN
.git/objects/06/4d8909796de0225a3c6a5f3ca7ee11064c82c3
Normal file
BIN
.git/objects/06/4d8909796de0225a3c6a5f3ca7ee11064c82c3
Normal file
Binary file not shown.
BIN
.git/objects/06/533d8dc9a0012fd2be132a3ea173586466bb97
Normal file
BIN
.git/objects/06/533d8dc9a0012fd2be132a3ea173586466bb97
Normal file
Binary file not shown.
BIN
.git/objects/06/6e5610db897ede5ac2fdeaa02e3d734dee3c57
Normal file
BIN
.git/objects/06/6e5610db897ede5ac2fdeaa02e3d734dee3c57
Normal file
Binary file not shown.
BIN
.git/objects/06/72604b8d7e03e6b838f78a99afbfa2b64b50c8
Normal file
BIN
.git/objects/06/72604b8d7e03e6b838f78a99afbfa2b64b50c8
Normal file
Binary file not shown.
BIN
.git/objects/06/757c64e53fdecaaefc5aed7863c8bb37c78763
Normal file
BIN
.git/objects/06/757c64e53fdecaaefc5aed7863c8bb37c78763
Normal file
Binary file not shown.
BIN
.git/objects/06/87e88543c4e7e4cd7416e92bea4e29d5159381
Normal file
BIN
.git/objects/06/87e88543c4e7e4cd7416e92bea4e29d5159381
Normal file
Binary file not shown.
BIN
.git/objects/06/904156a3ff576ae52a8b9d18b8289b3b9f8445
Normal file
BIN
.git/objects/06/904156a3ff576ae52a8b9d18b8289b3b9f8445
Normal file
Binary file not shown.
BIN
.git/objects/06/dd5243a02fe2ac9ad444a4240c4fc0de561d41
Normal file
BIN
.git/objects/06/dd5243a02fe2ac9ad444a4240c4fc0de561d41
Normal file
Binary file not shown.
1
.git/objects/06/eadf0a293c0a322b3e6811f95c2b48476b9f46
Normal file
1
.git/objects/06/eadf0a293c0a322b3e6811f95c2b48476b9f46
Normal file
@@ -0,0 +1 @@
|
|||||||
|
x<01><>=N<>0F<>s<EFBFBD><73>W <20>bGBhi(i<>{<7B>D<EFBFBD>ؑ<EFBFBD>H<EFBFBD>7<EFBFBD><37>b<EFBFBD><10><><EFBFBD><EFBFBD><EFBFBD>|<><DEB6>B|<7C><><02><>0<EFBFBD>z<EFBFBD>,<2C><><EFBFBD>ܠ<EFBFBD>!J<>А<0E><><EFBFBD>v*<2A>*<2A>0FT(<28>i<><69>AXm<58>r<EFBFBD>h$<24>F<1F>vr<76><72><EFBFBD>:<3A><02>+<2B>).<2E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>_<>?%<25><01><><EFBFBD><EFBFBD><EFBFBD><<3C>K<EFBFBD>4<EFBFBD><34>x<EFBFBD>y{<03>JB<><42><EFBFBD>E<EFBFBD>][[wm<77><6D>2v<1F>F<><46><EFBFBD><EFBFBD>3hu<68>,, <09>;<3B><>*<2A>k<EFBFBD><6B> bɩ><3E>4q<34>,g>
|
||||||
BIN
.git/objects/06/ef247e954ccb9d895da6114b3c5e5e6afe6b71
Normal file
BIN
.git/objects/06/ef247e954ccb9d895da6114b3c5e5e6afe6b71
Normal file
Binary file not shown.
2
.git/objects/06/f693859fbf3dba9e22a82e3811ec004be56076
Normal file
2
.git/objects/06/f693859fbf3dba9e22a82e3811ec004be56076
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
x%<25><>N<EFBFBD>0<10><><EFBFBD>ۥ@D<1B><>1:<3A>C<EFBFBD>BO<>go.<2E>b<EFBFBD>p<1C><>=/<2F><05>hf<68>Ѹ<14>R@uS23HD><3E><>
|
||||||
|
<EFBFBD>7<EFBFBD><1C><><EFBFBD>ɎF<C98E>z<14>M<4D>ls<6C>̱<EFBFBD><CCB1>ki{<7B>:<3A><>z";X<>f<EFBFBD>yV<79>v<><76><EFBFBD><EFBFBD>)<29><><EFBFBD>_=gx]\Z<><5A>q<EFBFBD><71><EFBFBD><EFBFBD>y<><03><>Xf<58>k%MtN<74>ڹ<1E><>m<EFBFBD>`P<19><><1E><>n<EFBFBD>]<5D><>Ӝ<EFBFBD>
|
||||||
3
.git/objects/07/0df9daca87fd782b4b78285621f33929aa131a
Normal file
3
.git/objects/07/0df9daca87fd782b4b78285621f33929aa131a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
x<EFBFBD>-<2D>An<41> E<><45>)f_5<02><><EFBFBD><EFBFBD>*U<><55>&'<18>!<21><>a<>47<34><37><17>u<><75><EFBFBD><EFBFBD>ף2ϩAo<41>S<EFBFBD><53>@" KFim<69><6D>-<2D><17><>z<EFBFBD><7A><EFBFBD><EFBFBD>څ<EFBFBD><DA85>+<2B><06><><EFBFBD>#I!<21>0ad#<06>/V.H<1C><>A<EFBFBD><41>uxm<78>Tx<54><78><1B><>
|
||||||
|
<EFBFBD><EFBFBD>ʄ<EFBFBD><EFBFBD>3j<7F>v<><76><EFBFBD>9<><39><12>T<EFBFBD>}Ce~)<29><><EFBFBD><EFBFBD>U<1A>E/DG<0F><><EFBFBD>|Ě8<>z<EFBFBD>;<3B>a<><61>u<EFBFBD><75>.i<><69><EFBFBD><EFBFBD>= /B<>xWܙ<57>0<><30><EFBFBD>+c<><01>Z<EFBFBD><02><>*Qd<51>Z<EFBFBD>R<EFBFBD>*<2A>
|
||||||
|
x<EFBFBD><EFBFBD><EFBFBD><EFBFBD>!`<60><>?8ue
|
||||||
BIN
.git/objects/07/46379e124221d477bd6ba90f0090c26b99d2db
Normal file
BIN
.git/objects/07/46379e124221d477bd6ba90f0090c26b99d2db
Normal file
Binary file not shown.
BIN
.git/objects/07/609e1723f1ad9aa561b2bdfa45d4eb9d6300bb
Normal file
BIN
.git/objects/07/609e1723f1ad9aa561b2bdfa45d4eb9d6300bb
Normal file
Binary file not shown.
BIN
.git/objects/07/76bdeeb94fadb500a6ee66ad14774ca0f3543b
Normal file
BIN
.git/objects/07/76bdeeb94fadb500a6ee66ad14774ca0f3543b
Normal file
Binary file not shown.
1
.git/objects/07/7ecab9f9044a593af0a70266149e5557442c33
Normal file
1
.git/objects/07/7ecab9f9044a593af0a70266149e5557442c33
Normal file
@@ -0,0 +1 @@
|
|||||||
|
x<01><>MN<4D>0<10>Y<EFBFBD><14><>@<40>cOb<4F>B !<21><08><13><>qc)<29>Sס<53><D7A1><EFBFBD>s1|<08><>O<EFBFBD><4F>y]c<>^<0F>0M{숄<>;1)%H']o<><10>F5<1A><>mT8<54><38>)<29>A:<1C><>v"<22>cJ
|
||||||
BIN
.git/objects/07/8f52775a3c0e841cb5d1d9e3bb2bc3b2cf3c6c
Normal file
BIN
.git/objects/07/8f52775a3c0e841cb5d1d9e3bb2bc3b2cf3c6c
Normal file
Binary file not shown.
BIN
.git/objects/07/a8d90af5b669d6863e90abd38b1e924a8a564c
Normal file
BIN
.git/objects/07/a8d90af5b669d6863e90abd38b1e924a8a564c
Normal file
Binary file not shown.
BIN
.git/objects/07/b957bd67e5092960845662c658524b8ecc3dc4
Normal file
BIN
.git/objects/07/b957bd67e5092960845662c658524b8ecc3dc4
Normal file
Binary file not shown.
BIN
.git/objects/07/c42bd4031ab8b329b76ef297666dd1e914585d
Normal file
BIN
.git/objects/07/c42bd4031ab8b329b76ef297666dd1e914585d
Normal 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