dir clean
This commit is contained in:
parent
1ebba712b7
commit
b235ce3986
|
@ -1 +0,0 @@
|
|||
Subproject commit 17331c389e98897895d01997028451651ced8040
|
|
@ -1 +0,0 @@
|
|||
procédure ListPlat
|
31
git/config
31
git/config
|
@ -1,31 +0,0 @@
|
|||
[core]
|
||||
repositoryformatversion = 0
|
||||
filemode = false
|
||||
bare = false
|
||||
logallrefupdates = true
|
||||
symlinks = false
|
||||
ignorecase = true
|
||||
[user]
|
||||
[diff]
|
||||
tool = vsdiffmerge
|
||||
[difftool]
|
||||
prompt = true
|
||||
[difftool "vsdiffmerge"]
|
||||
cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Professional\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\vsdiffmerge.exe\" \"$LOCAL\" \"$REMOTE\" //t
|
||||
keepBackup = false
|
||||
[merge]
|
||||
tool = vsdiffmerge
|
||||
[mergetool]
|
||||
prompt = true
|
||||
[mergetool "vsdiffmerge"]
|
||||
cmd = \"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Professional\\Common7\\IDE\\CommonExtensions\\Microsoft\\TeamFoundation\\Team Explorer\\vsdiffmerge.exe\" \"$REMOTE\" \"$LOCAL\" \"$BASE\" \"$MERGED\" //m
|
||||
keepBackup = false
|
||||
trustExitCode = true
|
||||
[credential]
|
||||
helper = store
|
||||
[remote "origin"]
|
||||
url = https://git.adriy.be/iset3/projetthealone.git
|
||||
fetch = +refs/heads/*:refs/remotes/origin/*
|
||||
[branch "master"]
|
||||
remote = origin
|
||||
merge = refs/heads/master
|
|
@ -1 +0,0 @@
|
|||
Unnamed repository; edit this file 'description' to name the repository.
|
|
@ -1,15 +0,0 @@
|
|||
#!/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+"$@"}
|
||||
:
|
|
@ -1,24 +0,0 @@
|
|||
#!/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
|
||||
}
|
|
@ -1,114 +0,0 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use IPC::Open2;
|
||||
|
||||
# An example hook script to integrate Watchman
|
||||
# (https://facebook.github.io/watchman/) with git to speed up detecting
|
||||
# new and modified files.
|
||||
#
|
||||
# The hook is passed a version (currently 1) and a time in nanoseconds
|
||||
# formatted as a string and outputs to stdout all files that have been
|
||||
# modified since the given time. Paths must be relative to the root of
|
||||
# the working tree and separated by a single NUL.
|
||||
#
|
||||
# To enable this hook, rename this file to "query-watchman" and set
|
||||
# 'git config core.fsmonitor .git/hooks/query-watchman'
|
||||
#
|
||||
my ($version, $time) = @ARGV;
|
||||
|
||||
# Check the hook interface version
|
||||
|
||||
if ($version == 1) {
|
||||
# convert nanoseconds to seconds
|
||||
$time = int $time / 1000000000;
|
||||
} else {
|
||||
die "Unsupported query-fsmonitor hook version '$version'.\n" .
|
||||
"Falling back to scanning...\n";
|
||||
}
|
||||
|
||||
my $git_work_tree;
|
||||
if ($^O =~ 'msys' || $^O =~ 'cygwin') {
|
||||
$git_work_tree = Win32::GetCwd();
|
||||
$git_work_tree =~ tr/\\/\//;
|
||||
} else {
|
||||
require Cwd;
|
||||
$git_work_tree = Cwd::cwd();
|
||||
}
|
||||
|
||||
my $retry = 1;
|
||||
|
||||
launch_watchman();
|
||||
|
||||
sub launch_watchman {
|
||||
|
||||
my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty')
|
||||
or die "open2() failed: $!\n" .
|
||||
"Falling back to scanning...\n";
|
||||
|
||||
# In the query expression below we're asking for names of files that
|
||||
# changed since $time but were not transient (ie created after
|
||||
# $time but no longer exist).
|
||||
#
|
||||
# To accomplish this, we're using the "since" generator to use the
|
||||
# recency index to select candidate nodes and "fields" to limit the
|
||||
# output to file names only. Then we're using the "expression" term to
|
||||
# further constrain the results.
|
||||
#
|
||||
# The category of transient files that we want to ignore will have a
|
||||
# creation clock (cclock) newer than $time_t value and will also not
|
||||
# currently exist.
|
||||
|
||||
my $query = <<" END";
|
||||
["query", "$git_work_tree", {
|
||||
"since": $time,
|
||||
"fields": ["name"],
|
||||
"expression": ["not", ["allof", ["since", $time, "cclock"], ["not", "exists"]]]
|
||||
}]
|
||||
END
|
||||
|
||||
print CHLD_IN $query;
|
||||
close CHLD_IN;
|
||||
my $response = do {local $/; <CHLD_OUT>};
|
||||
|
||||
die "Watchman: command returned no output.\n" .
|
||||
"Falling back to scanning...\n" if $response eq "";
|
||||
die "Watchman: command returned invalid output: $response\n" .
|
||||
"Falling back to scanning...\n" unless $response =~ /^\{/;
|
||||
|
||||
my $json_pkg;
|
||||
eval {
|
||||
require JSON::XS;
|
||||
$json_pkg = "JSON::XS";
|
||||
1;
|
||||
} or do {
|
||||
require JSON::PP;
|
||||
$json_pkg = "JSON::PP";
|
||||
};
|
||||
|
||||
my $o = $json_pkg->new->utf8->decode($response);
|
||||
|
||||
if ($retry > 0 and $o->{error} and $o->{error} =~ m/unable to resolve root .* directory (.*) is not watched/) {
|
||||
print STDERR "Adding '$git_work_tree' to watchman's watch list.\n";
|
||||
$retry--;
|
||||
qx/watchman watch "$git_work_tree"/;
|
||||
die "Failed to make watchman watch '$git_work_tree'.\n" .
|
||||
"Falling back to scanning...\n" if $? != 0;
|
||||
|
||||
# Watchman will always return all files on the first query so
|
||||
# return the fast "everything is dirty" flag to git and do the
|
||||
# Watchman query just to get it over with now so we won't pay
|
||||
# the cost in git to look up each individual file.
|
||||
print "/\0";
|
||||
eval { launch_watchman() };
|
||||
exit 0;
|
||||
}
|
||||
|
||||
die "Watchman: $o->{error}.\n" .
|
||||
"Falling back to scanning...\n" if $o->{error};
|
||||
|
||||
binmode STDOUT, ":utf8";
|
||||
local $, = "\0";
|
||||
print @{$o->{files}};
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
#!/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
|
|
@ -1,14 +0,0 @@
|
|||
#!/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+"$@"}
|
||||
:
|
|
@ -1,49 +0,0 @@
|
|||
#!/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=4b825dc642cb6eb9a060e54bf8d69288fbee4904
|
||||
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 --
|
|
@ -1,53 +0,0 @@
|
|||
#!/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
|
|
@ -1,169 +0,0 @@
|
|||
#!/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
|
|
@ -1,24 +0,0 @@
|
|||
#!/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
|
|
@ -1,36 +0,0 @@
|
|||
#!/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,)
|
||||
/usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;
|
||||
|
||||
# ,|template,)
|
||||
# /usr/bin/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"
|
|
@ -1,128 +0,0 @@
|
|||
#!/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
|
|
@ -1,6 +0,0 @@
|
|||
# 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,12 +0,0 @@
|
|||
0000000000000000000000000000000000000000 59a152abd16873768cc6d02a92d8612ec4ffc673 adri <reg+git@adriy.be> 1547654469 +0100 commit (initial): Add .gitignore and .gitattributes.
|
||||
59a152abd16873768cc6d02a92d8612ec4ffc673 8321fc9793e3793cad85713db702dbfc97c0a589 adri <reg+git@adriy.be> 1547654471 +0100 commit: Add project files.
|
||||
8321fc9793e3793cad85713db702dbfc97c0a589 8f7992622cff4685e066f42d5d2f8722fc4a49cb adri <reg+git@adriy.be> 1547656655 +0100 commit: Initial commit
|
||||
8f7992622cff4685e066f42d5d2f8722fc4a49cb 63ac321e2f7dff89ffcf24c9ff27aff40ef4e228 adri <reg+git@adriy.be> 1547813335 +0100 commit: ini
|
||||
63ac321e2f7dff89ffcf24c9ff27aff40ef4e228 995fb3068e3b1bfdd66fcc79e95c5715f5b66c35 adri <reg+git@adriy.be> 1547817036 +0100 commit: blocage
|
||||
995fb3068e3b1bfdd66fcc79e95c5715f5b66c35 8c94a47456ad738e02f9dcc9448b11e12399401a adri <reg+git@adriy.be> 1547834694 +0100 commit: Hauteur plat non automatique
|
||||
8c94a47456ad738e02f9dcc9448b11e12399401a 660f5d385590495ae91eac09592832a477a9198c adri <reg+git@adriy.be> 1547891900 +0100 commit: Gros UC avec 3 petit UC Ok (3xPlat=>Repa)
|
||||
660f5d385590495ae91eac09592832a477a9198c dc46e7a99cbf3612c9abfc742f537210190d9f15 adri <reg+git@adriy.be> 1547892179 +0100 commit: Gros UC avec 3 petit UC Ok (3xPlat=>Repa) Vanish0
|
||||
dc46e7a99cbf3612c9abfc742f537210190d9f15 abc3480b882519c7046c2d7ceac6c13ebbd83af4 adri <reg+git@adriy.be> 1547892257 +0100 commit: add files
|
||||
abc3480b882519c7046c2d7ceac6c13ebbd83af4 e26277090551f9b9a150bde990c14ce70a0c94f9 adri <reg+git@adriy.be> 1547933349 +0100 commit: avent sup hu
|
||||
e26277090551f9b9a150bde990c14ce70a0c94f9 6be830de85484eac67c4f3707a706890ea9def2f adri <reg+git@adriy.be> 1547981205 +0100 commit: procédure ListPlat
|
||||
6be830de85484eac67c4f3707a706890ea9def2f 9e06f31677cb715fd78429d5f019f5e0a89e479a adri <reg+git@adriy.be> 1547981247 +0100 commit: procédure ListPlat
|
|
@ -1,12 +0,0 @@
|
|||
0000000000000000000000000000000000000000 59a152abd16873768cc6d02a92d8612ec4ffc673 adri <reg+git@adriy.be> 1547654469 +0100 commit (initial): Add .gitignore and .gitattributes.
|
||||
59a152abd16873768cc6d02a92d8612ec4ffc673 8321fc9793e3793cad85713db702dbfc97c0a589 adri <reg+git@adriy.be> 1547654471 +0100 commit: Add project files.
|
||||
8321fc9793e3793cad85713db702dbfc97c0a589 8f7992622cff4685e066f42d5d2f8722fc4a49cb adri <reg+git@adriy.be> 1547656655 +0100 commit: Initial commit
|
||||
8f7992622cff4685e066f42d5d2f8722fc4a49cb 63ac321e2f7dff89ffcf24c9ff27aff40ef4e228 adri <reg+git@adriy.be> 1547813335 +0100 commit: ini
|
||||
63ac321e2f7dff89ffcf24c9ff27aff40ef4e228 995fb3068e3b1bfdd66fcc79e95c5715f5b66c35 adri <reg+git@adriy.be> 1547817036 +0100 commit: blocage
|
||||
995fb3068e3b1bfdd66fcc79e95c5715f5b66c35 8c94a47456ad738e02f9dcc9448b11e12399401a adri <reg+git@adriy.be> 1547834694 +0100 commit: Hauteur plat non automatique
|
||||
8c94a47456ad738e02f9dcc9448b11e12399401a 660f5d385590495ae91eac09592832a477a9198c adri <reg+git@adriy.be> 1547891900 +0100 commit: Gros UC avec 3 petit UC Ok (3xPlat=>Repa)
|
||||
660f5d385590495ae91eac09592832a477a9198c dc46e7a99cbf3612c9abfc742f537210190d9f15 adri <reg+git@adriy.be> 1547892179 +0100 commit: Gros UC avec 3 petit UC Ok (3xPlat=>Repa) Vanish0
|
||||
dc46e7a99cbf3612c9abfc742f537210190d9f15 abc3480b882519c7046c2d7ceac6c13ebbd83af4 adri <reg+git@adriy.be> 1547892257 +0100 commit: add files
|
||||
abc3480b882519c7046c2d7ceac6c13ebbd83af4 e26277090551f9b9a150bde990c14ce70a0c94f9 adri <reg+git@adriy.be> 1547933349 +0100 commit: avent sup hu
|
||||
e26277090551f9b9a150bde990c14ce70a0c94f9 6be830de85484eac67c4f3707a706890ea9def2f adri <reg+git@adriy.be> 1547981205 +0100 commit: procédure ListPlat
|
||||
6be830de85484eac67c4f3707a706890ea9def2f 9e06f31677cb715fd78429d5f019f5e0a89e479a adri <reg+git@adriy.be> 1547981247 +0100 commit: procédure ListPlat
|
|
@ -1,9 +0,0 @@
|
|||
0000000000000000000000000000000000000000 63ac321e2f7dff89ffcf24c9ff27aff40ef4e228 adri <reg+git@adriy.be> 1547813420 +0100 update by push
|
||||
63ac321e2f7dff89ffcf24c9ff27aff40ef4e228 995fb3068e3b1bfdd66fcc79e95c5715f5b66c35 adri <reg+git@adriy.be> 1547817042 +0100 update by push
|
||||
995fb3068e3b1bfdd66fcc79e95c5715f5b66c35 8c94a47456ad738e02f9dcc9448b11e12399401a adri <reg+git@adriy.be> 1547834701 +0100 update by push
|
||||
8c94a47456ad738e02f9dcc9448b11e12399401a 660f5d385590495ae91eac09592832a477a9198c adri <reg+git@adriy.be> 1547891909 +0100 update by push
|
||||
660f5d385590495ae91eac09592832a477a9198c dc46e7a99cbf3612c9abfc742f537210190d9f15 adri <reg+git@adriy.be> 1547892186 +0100 update by push
|
||||
dc46e7a99cbf3612c9abfc742f537210190d9f15 abc3480b882519c7046c2d7ceac6c13ebbd83af4 adri <reg+git@adriy.be> 1547892265 +0100 update by push
|
||||
abc3480b882519c7046c2d7ceac6c13ebbd83af4 e26277090551f9b9a150bde990c14ce70a0c94f9 adri <reg+git@adriy.be> 1547933354 +0100 update by push
|
||||
e26277090551f9b9a150bde990c14ce70a0c94f9 6be830de85484eac67c4f3707a706890ea9def2f adri <reg+git@adriy.be> 1547981226 +0100 update by push
|
||||
6be830de85484eac67c4f3707a706890ea9def2f 9e06f31677cb715fd78429d5f019f5e0a89e479a adri <reg+git@adriy.be> 1547981252 +0100 update by push
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PendingCommit>
|
||||
<CommitComment />
|
||||
<WorkItems />
|
||||
<PublishPrompt Enabled="True" />
|
||||
</PendingCommit>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,3 +0,0 @@
|
|||
xµTËnÛ0ìY_±@.)Øð¨š<04>½oE!è±uXH”@RF
#äïð<C3AF>u—Ô‹´\ôRŸÌ]ÎìÎìRYYg°ú°Z½»Q¸µ„¯¨uݪ5àos>)<29>BµZÈ|;hƒUì<55>ëº,17„Ö‹Ï(Q‰<¸±%ª8ºAY¸*Q$Ó
|
||||
u“æ/ªþ…fûŠOe-q±.S©Þ1‚år Ÿt[U©:<¸£ËB<C38B>PœO?…\•ŽŠZÊ󉀶qM›•"‡œ‰a<E280B0>lÜ£4PèUo:4TXe, QbŸ!
$_6OÊnE…<45><E280A6><'®'ÉA/Kœ„"Rshð™ÚÁŠZšâµQì73£Î•hXèôÂ@QÒ€8á~}×ÙÁàã÷LðÂã ©£û£î5Į́674d+Úy5¸tûž<C3BB>GxcÙajÔïä'wà…X4Ål£¡TŠw
|
||||
=<3D>“ë,‹Ž½+#±Ý°VWî»?‰5€‚\ÓEmukS>
øÑkÇ2žÝrcŽÂ¶8ZÏ°mZ(¹n!³ÖñN•]DéÙF‹†þ““ð̫зÃø:©ü…AwìôÄ
{¥›Q0›^˜3Éid—؉Ù%|Êék£ý
œ:D¸#}‡†vQ¡i•œ<IKÚ&‡‡JÅ÷iÙbl³“!„^Ï“;K¸§v±#æ‰]eæä5¯rϾ¡yþpr~¡0Vd›í¯{ís<C3AD>”fÀ“¸¿NÖ¨‹°_ÂcïeÙ'5²R“‰¾.ð&ï3á5È_¿<5F>¨žÃjDƒ`o3yYߢ?‰zQå
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,2 +0,0 @@
|
|||
x•ÎA
|
||||
Â0@Q×9Ÿ.H&MÒ ˆ¸ñ ÓdR‹¶)1"Þ^ô.ÿâÁ<C3A2>eYæiתd‹ÖyÏ.° "Þ{Ç(6<>D£ÍBŽq½Ú¸ÊÚÀQHšr쵑8°vÌž|Öìf“8§!E¤ øÙ®¥§:ñÊÔMs;ë}åè,Yc†¾‡N£Ö*þÆšüAÔe<C394>% TÙø|¿Ã«ÔìÕ7ìCz
|
Binary file not shown.
|
@ -1,5 +0,0 @@
|
|||
xTÍn1朧åÒ<C3A5> ›„U¤-RȨÔTÀ–^º=8ÞÉÆȱ#ÿ¤
|
||||
¨ïÃ;pàÀñ
|
||||
Œ“ìæõ€º‡d=kóù›of(õ:Ç<>£g~þjµšOúÔZ-8eÞéf<C3A9>
|
||||
s˜¿ ±ð\<5C>…®s„{f¡úÃ90pZ˸ÜùÙ+'&7h¬Ðª{·ãÃöaçu|ô²ÝnÓ¶rgÌT<C38C>–Žƒð#!&lœy‹ ×Æ w0Ä1› m€©î…”©1*ÁÜ—üÈ`EpAë´µ«'U®Y«)6A;eá£Ñ_Ñ]<5D>±'µBø^únª!“Ýn:·'ñJ¯¸¯'SÀ¤hf‚£ïËbôœ3bèF<>»Þ.TŸê“èIu2®Ž†/ëãõ<C3A3>àF[=rñ<72>°žÉÔù\èø<N§èœP…MЊ‚œPRŠJ|G4WÈÚÔ_@½ó*>¦*·ë+^B94ŠI°È$æ0eÆ Zrɬ…½]ØÑ¢¯ÕHž¬GΉ{Ó©|ñ^žyËÈKE+UÃËÔˆù¬£í|#EŽ#楻PôEQqÎ ŠJ°N#úŸüq:W|l´ß0<C39F>Þ¯ÓE
zNµÙ¦ç‡t“}vÉ’ÝÆ<C39D>±ÝN$D
:oì\h<>,ìy¨R¯ßªÐ¾[6ÅþbÉz\O1_ɳ¶Ëªª!Á.F"X¡¨·q‚C_h®´
|
||||
`Û–{c»è+IV$n˜ô›ÆM˜c<CB9C>jo8žE—š3™¼mdÙ M?]®–'Dœñq26
]y–ô»Y8Ù,ûà<0B>áŸFÂ9×4sêð¼R)ܲNcN2˜Ñ¤A.ÅïfY/7Üô® é
çÐÜiö,Ûnþ<6E>u¼—d’<64>²ƒ“ê•b1kÉFÜáædÒkã±ì¦ÀhZÈP‚åcmÇ#<23>º&Š,ÍU4¢0ioëK„úݦ[CžµmÂÊþÓˆÛDvŠô¸jµ¿ÚË
|
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
x¥’Νn1Η9οSΜ<53>TB7Z<37>ς<05>T4+Η;έLλµ·ώΘ¶ <P<><50>‡>―€½ ›Ν†UυΙ<CF85><CE99><EFBFBD>όf<©πβΥΛηO~ύψι-©f·Φa~<7E>4_l¤¥DαH+Λή£BCΆqJκΊe<CE8A>γ<EFBFBD>k›–yΚ°9·W¶εύJ*Υe‡50(g΄μr<CEBC>ΉγΧcc-|<7C>Κu¥NUαΫ¤[φSκ<53>|l<>σ,tΤQ{¶δ†Β‰β9Ϊ‚„OF_Ά›/q µBφ…°LΎ'NΏί‡λσ<CEBB>›Ϋ·µεTgtν<11>§¤^ύΪxGbΆ„Ny†μ†η²Ξ9ιοΙ~!I@Α<>#.AHnm3^Γ¦αJ`<13>¶y<C2B6>2½£*$:waρ5Uµι<1B>t^„Ζ”λΧΑλϊVZq‡°<E280A1>”ΒΠ©Ο<C2A9>\hλ|―zzq
,<2C>Ν38Σήa:Yµ<>Ι,`Wω<57>I²<49>EXΟνHΰ
\piqGAGR[άGλ`σΞiu~†·<>ΝFW Tί„P&…e<E280A6>}Γά¤‰<C2A4>%›-u9γΤYτΥ|λέu<75>ΤΙκώNa\υΗπΖiW"‡Μ-ΧCά±—xΐκϋ»ΔΙΰcΠ‡<CEA0>ό<EFBFBD>Ξ!ύ΅χίΨ΄±N~΅U<CE85>±
|
|
@ -1,3 +0,0 @@
|
|||
xS]Oƒ0õ™_q}
–¡sM,mÑìiÙ\M0ÈX¢ÿÞ[(£‹fs‰}éÇý<çÜ®ór
žw{0âs–$LÿÜ5²ËZV+Æ4lO<6C>
$©˜§Âí^ólÛÌóU£,ú©ùª$Ã0õdùÜsÂn"<22>.£ƒùúHÏ}È•ðäG)áŽ*¹wQDZoi4F#‰‹‘²ØzL¬€få&{Í~Gt”IÛ˜b(‡8<E280A1>"HØÐÌ<C390>BÀ|Š€Y›ndÑ`áòVË<56>]¶…KÛõî\IÄ @:÷=ÕÐ-Ñ``t@‡ÁFkè©ÁÚÝzžÝT£K«ã~¸ÌåK“•EarTlä'
|
||||
‚©ÏÁµr*”edÚWÀID×0aÉLBvBÂàaa¢ÑÐéA¢Ä_õ¾:ÑÉÂç£_Òðpìèú+hùÏ5ÒíjyÔüïÏ6“GëDUƒÐªª÷cCÏwUUg廉Ã?þG@!
|
||||
<EFBFBD>#lÊ~²Ùo<C399>ÛYC
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,2 +0,0 @@
|
|||
x∙нмjB1@aвy┼ИZпL2so╔■>┌tИ&?╫X█дз>}╘oЮР,>8╔÷о▀┌С╪р!╠0%°╓%┤s
uF▓ГлXcУ≥хO▌╡╧╕!╝h▀4 &fl╜┘9{²▀|CГ▒cиdр]▐}@╙c│в!┤УaяВЪЗыdyd
|
||||
Дg╢k▀ж РSy┌≤]в╓÷Р╜_╫°`Ш╡┤²э√_│KW╦щ╞}╗TС-H▄
|
Binary file not shown.
|
@ -1,3 +0,0 @@
|
|||
xíVÍŽÓHæ:yŠb8àH‘ $``3ZE <20>h9v1iä´½ÝmH„æ}à9æŨênwœlÂ2?{Ú½XjWÕW?ýUUÏŠr?zpçžÂsQJx‡Z—µÊP.Íå%°V¨;µòÆ+mpñtã'eQ`fÈZÇ¢D%²-<2D> Amý¤&Ýñ+ÿU$…@¹KŸ…“U…º1©ò3šÉûE)1NŠTk–ÞC™»|:™.PWi†°¥ÝÏ(ÉηÁ3]/©Z=wǤ¬³9B~?ͲËïÒz y)ååªKıƒ5×pš®Pu=ÈÑ¥ªg…È ã<> ?<3F>L«"5ðúƒ“TcÈ/45O¨rFÕ™¡Rkúïm«ˆ„\|<7C>ÌS!‘´%.©ÚäžÀŒð¢]²opÁNÖµÈBè.kƒªMe¹èÁleð㌦bqÞÒ{ÃÁÔPÑG?{äÀ!Qˆ*)©d2ÇèÐc¹$»OY…}qàØs£<1D>REWB®uÜÏóè<C3B3>ð¹6‡= ëÌø‚ã¡4e ”£V[/ iü¦6UímħÈfÇÇ ë¢èÂß„™¿O‹š2øÃZPTÝ/¨L<8yͦ6t,4^Ãbù*p,TË+ÆB7ŽÅaXï!–Ö]^)¢–Ý
ãÚDj<44>\Œá¦,ËíP‰ßT(£-ñË%fDß×¥|[£Zy±ã1<>IF]qJìñdQtÉäÍ2»Öò•%Ù9¹BS+É$fp/ùÆdj¿*sñIPÿðÁ÷Àwê<77>š©A¾N7µÝdÛkÂsYý߶ÛÿƒÝ±«·~‹ï§B›g‰ßaÏ<61>»ªYCšÿË}kaŒþ]@o‚
6‡HÂ$·»`ƒ½L³Æ9ØÜ ~mÍÞ´˜ßaš£‚\Ñæ ~ü¸p2ßÞ[Y¹Ù!ñ+å×N×k<6B>‹!ÊUÌ Q—sv»šÊ€YTä”!š_Þ˜%±ïGÒX¨\}Sé,ž”c»é Ý&LÊ
|
||||
n5<EFBFBD>ÁÝcp[)¶K«kQ<51>0Ûšû<C5A1>˜õ{<7B>HH@/eF£MžÇýq2҃ΜЛ@{|°Ÿ2l^
|
||||
û¼´Tvbmþ7<‡íƒ<C3AD>jIå988¸à]Hà0Ã<>·8Ò–·g:#„™Þܘe÷t8hÏõßç7úçOäO
wëÁ²•Â
h[¼ùõÏÔæšß>oõVxë€þmÞú"4ܼ"oo•¥üØ×U¥Äbóé±—¢<E28094>òÆüeÊŠ2ùåÛ|c_‹¬ÎI`ôŽWÛuzö¢sÑù ÞLÊÒ
|
Binary file not shown.
|
@ -1,4 +0,0 @@
|
|||
xTKoÓ@æœ_1ÊGP'á)Ò)<29>ËCj+À¥ÜÃf=qmvÍ>‚
|
||||
êáHùAüfÛyõ€º{wfçõÍ7;–zýçÏÝûóëw·»s§«ÕíÂóNï¨Ð0‡ùË k„ÀuŽÀ`qåWP,®ÔâÊЮd¼í<><C3AD>q}ý<0C>ZAîÁxåÄað$îÅ<C3AE>{<7B>û/â'<27>z½]o¡…™ÎÅDpæÈÌ+Km()?€#<23>j*Ð@‰~ŽÊAiô\ñ$¡Ø\ÏÂuœ<05>P\ƒÜ:°ht¸<74>&÷äËŠ:¤¬êA뀪hʹ®`¯{…;Ez§ÕRl†¶dTÚ;£?£;<3B>âPj…ð½ð^}>Ôs&ƒôÂR‰ñ‡%žñˆŠMŠf.8ÚFðºnÞÐ9#ÆÞaÔ9¿ö·íjDMô¬±ŒÓ Y™·<E284A2>7ÚꉋτõL¦ÎçBLJ¹pÚØ8Eç„*l‚VÄœF<C593>’Tâ+J³ò¬Mû!´ûOã§D†^»ÊK(‡F1Iíbó@)'èÈ%³jï}À#&¢ðDUbM<,KY1¨¶9`¶F´A5lJ#æÄo°ŽLùZˆ'ÌK÷V‘FQsö!ŠjgýNô?ñãôBñ)ñP|Ã<Røu.êÐÚ½îÍfz~L•ÜÌ.YfWq$˜„UÑ—¬Yž—_ƒÎšÀÍ‚VÁÂË&ôj׈n²eì<>4Z)×%æ<+ºT]
¶}$‚J[ÂÜÆ Ž}Q 9Ñ*8Û¤Ü->6›^AR%qƤ_'nƒT{Ãq?:ÒœÉä “eÇiúþ¨:îRâŒO“q i˜Êýìþh<C3BE>e!'›eo|A/ýéI@8äš^Ž6<hP
|
||||
U¶éa”æB’’öGbñ³À,æF ‚³á $ÃããCØÙö,Ûþµs|#È,Ÿd÷wßÒ¬×o3ш{#Ü‘ôÔx¬§)dTÖ24<32>`ù”@ÛâȬ‰"Ko‡*:‘›
|
||||
û©½ôÐ>_gkˆ³¢M8ÙqÓ%;Mº<4D>ˆ—ËÖ_f¾
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,2 +0,0 @@
|
|||
x¥TÍnÓ@æì§ù‚“VkAÅÚ"Ò´E‘ZšRUk{’l»Þuw×MÍ“qà‘xf<>Ÿ:¦AHøä<C3B8>Ÿo¾ùvv©xñêõγ_?~–V¨1ïÃ|7¨ŸXWK‰©ZYö‘6"úBÝ4Lçx皦‰AžQvÎíµmx?•éé+qPÎh¹É}È<1A>ê´ÌQ¹M©=U”M¦.l€™Ø„[ùX/çcêhCíá„Ø,Ü;Ù
Dj´Õ#ǨâÎK²+ž£-xŠpjôºó v¤V|€¾8ŽaÏ–yÎÍýÛ•¥¯Çâ¦DÈžåÐðê® Ð¥<C390>c‘©Tgx*¹cw<—«¬½x
¨()R(¸q‚KH%·v=ÞÀ\˜
|
||||
bNÈ“Zd®•ŠZU<EFBFBD>w?úSO <09>/¾aWçu¦\ÔÚ]û™þ¾i‚`NáBàt@MHv1¸ô<C2B8>ÔSfÁ*»0â–;„[-28pêc) r٥ή#<23>\уE•¡Ù†3]:ÌŽn‰AÇŒ-à&Ê]©-þKÅÄ©“Õ±<C395>øŸ%—0‡$•ƒ^ .ŽsQÖcêü¼ˆë)Œ8‘$gè'aD-DmVÐð¶ÙU<C399>ãÖCýôБò1ªí<C2AA>ípýžÄ¢F™áDOç$£ìïƒ3eMVÏk}¼Å:ãW<C3A3>WíM?ql€.=ô<||ýswî(Næ÷
¥þ%6Ž½sèh å0²‹Ñšo<Ö;ñ-¼Ñ»0ÜZ"m…ávë<07>yÑçÇNš¢µìŒVZc~=Á8>Š©w“ÞOrÝ<1A>쓙ɽÃ/_Á -¥ï)1U•2Û(¢'ÞYÖG5vÊÿC“ê‚={6¤
@›dYÙ弨œ‘gòÉß'l4£ß0l5(ÍVøµwVÙfÁ,ø
'çC
|
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
xµTÁn1íyżb¤\<5C>AsliEU˝EőRU+X¦ŕj׋l/*Bů ľ#?Öϲk’[9áĎ{óŢŚwYÖK¸ýôńöĂ•ÁµŞ5|GkëĆh˙ş×ŁQŘ´Yc•^ĂloVăč4śÔe‰…Łj;üŠŤ*’s‚gW¨WÂ’ezQˇÝ.
|
||||
„gS˙A7ßŕcYkNĘ…µÄwČ`4ÁŰTŐÂěďĺ(YX!¬^Źż•VĚJG«Zë×#J٨ŻŰ6ËRP00LňyŽ;Ô.b€“ęi[
VK–°5j·pJ;ČżMĄj$¦”ť«
|
||||
ĘWtx;IFY¤*uű->Q;XQKa˝u†ýfd´…Q[^č JP<>Xî>üüĹĄĎ<ŮűŢ+žĐ´śi
|
||||
GăőrĹĄÎźÁ5Uŕ…§©^ąĎo
|
||||
±\ŠůS‘oµEŇ‚ë,<2C>Ž'^F^@á®ý“ł@ţĎśőě>śrS>
uő˝Ë‚Ňźĺ
|
||||
rcá[ôD.?ߦ/%×}ÉEëx›ĘŻ ‰ŚlŁJC˙ÉIřnŁě _k ŃźtĂînř+팒ٜ„‰I˘‘]b'..ácAßo`čŐxľkt´‹]ctđ=0Xźěž(‘ďe<>cź
†<>z}\,ţč!N’9‡—ů·Ź¤ŰmfËĺÄ
|
||||
üďŕ…ÜÝź>Â2ś×łMmWĚüł\Kó-fÔ8oÄ›ťsRJ<52>¦9xŢu‹}ńŤ^ĆO7#&Jł)cgBjT°[4cžtkPżscŻć,S<>ʼn,˙d{Tj’#=^x)úE
ň×5hŚŽ!LÖ Ž6źĂKöi[oS
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,5 +0,0 @@
|
|||
x¥‘Νj1…»ΞS\pc΅h»ιΆ<CEB9> SΑ‚Tχ3·™I†ά„*βυ9ϊb½qόm»°έΝ<CEAD>δ|η<>“Yfgπp<CF80>xSs8ΧΦΐ+ΩΰΰΚ~8<>Α!‰@ΪΜaΌ&<26>yλlj$6ΛPyVS£<53><06>V7&<26>:ό9»D?Y`7³I&‰<>~9ν*^¤%jh<6A>r?!<21>Μ‘
|
||||
©.H}¤ΈƒΨh6›Π¦<CEA0>η<EFBFBD>;ε<>Ψ ΪxtωηG<CEB7>¥v)ΒΌ”A½#rzΚ5ΊΫ=¥yΒa–i*nύιdκΧ<05>2ια‰Η<E280B0>$ΐζp¨2αBΌΚsƒΔ<C692>χϊ<CF87>²Ξ6ΐς‹wίΨώr“Qρ(YH^“ΩW·
|
||||
ψι¬V
|
||||
<ξΑU@wiRίΓ'£©±yDnΐ΅Ξ€ΑwθV²Φ/ύΖ^ά<>&<26>/6Υo<CEA5>Mβ0x>¶v<07>q=RΟ<52>?ν0ΤδΫI%B†όφ‡Μ“βκΚΘ;})<‹[uΩ™LΟ—±<E28094>`)•<>·g<C2B7>±Υq(
|
||||
§σο_ivβ|³Ϋ<C2B3>ψKΙrά
|
Binary file not shown.
Binary file not shown.
|
@ -1,5 +0,0 @@
|
|||
xRÛjÛ@ìó~Å<>¼(lJèKŽÆà‚IL_Åzujo<6A>vÅ^¨<>Éå;òc=«•dEN(.Õ“v¥™3gf6…ÞÀ×Ûo·_®n¥VðˆÖjoZÀ½{{5½A˼•jOë°œ¼;<3B>R](¡íhŽ
|
||||
<EFBFBD>ƒ?ÖDÕ^Œ~F·Þá´Ð
|
||||
GiÁEûÉש !v…*<2A>úS¼D[q<>0`š£
Ø‘Áx<†;ëË’›Ã}<¦Ú‹‚TMùöšK.
BŽ°<C5BD>0HŠ´=,ùÍuÃ2>ÑT~SH"(†y¶Î
|
||||
iݪà¾Óñ<C393>[d@áµ2%Cœñ‘ƒ–î|™Ð ø†Àõû^>ù“¨B6Ýq’IÜ
|
||||
÷´nŸà£o‘°g`§ƒ¬€é³ödH2ãײDX®²ð¶º fÁb–UtcŽ`Ðy£@áo˜ööO†šF-ï;º–jÒß1Ìø¡sùK’Œf`ëë
üo]Ý$Òršòw•KJú.í|KêOÒ„²P9î/´¨ÆG B•íÓGöáö<C3A1>Xq[N¥érì´…œ]2§0ž DXë‹ðõ…J×OSø³Å²Ålõ?˜Xz1^ŸÕêÉW•¡Rw½Š>÷æWNœ4:òu1êõû»øÐÉ
|
Binary file not shown.
|
@ -1,3 +0,0 @@
|
|||
xuRMO1õ¼¿bnBbÊÁƒQЄ€HTIwwÝvé~™’Áv!··Î¼7ï½Nc¡b¸¹½¾øùúv†ä†[c1kF§7ÖQB`bIIÞQ¢¦¤„è“\–J#ÜØri¦‘§^†<>¸Y˜R÷<52>dªÖUïAZDU»Ë-ÿëªÄe(mµ'sWvzð˜RÕÜ¢ÇzŸúDÚÃÏÑG’ghrž ¼h5G;ša[(‰lL¸Ž>#ð§Ñh@˸,ãzûp¬ôÕ”–!½$iQób<0F>+§á‰’.ZNâqåó±
ÏÄ‘ÖjœMÊ],(<28>œkK\@"¸1%>ÜÁ>v1co)Ø:PÏÅjõúÈpëI
|
||||
|
||||
ô<EFBFBD>•å>¡´µzó<0E>°«°NÿAà$®!<Â@¥(Øx0)ÂœrvÑ‘žkZq‹°R”Blå«#ëeÒñá5Ïý7ƒ2E}oÊYL‹qm=5€Už;B<W>wÑ.úW
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,2 +0,0 @@
|
|||
xTKnÛ0íÚ§h%£µlÇ)‚8q<38>Äê'@ÒŸÒl¢,hj,³ I<C2A0>¤¸EîÓ;tÑEÔ+th[ò¯È¢ˆ9œyó8ó†#©GÐ=ê<ûóóW»ÝzÒ¯ÑnÃ)+<2B>nå¨Ð0‡Ù+oóßõDXà:C¸gêsÍ<><C38D>ÓZF•ççR91E¸Ac…Výèõ:½îqtxÐétÈòN˜ÊÑR88?aÊæÀYi„âÚäF8a3¡
0•Á½<C381>’, µu Ƙ›à’¬ .h<>¶÷oõ¤•k5ŠMÑŒ#|4ú+ºë žI0j59|oø2®·9µ’É~?™[‡ÓhU6rŸT“ ™ Ž¶6¼zr朣Òaؼ[àíB
©M±žÖ‘QêOÖáÁ•àF[=vÑ<76>°%“‰+3¡£×™pÚØ(Aç„ÊmŒVä$ˆÚ<CB86><C39A>U⢹BÖ&xA÷etDÍî+^B94ŠI°È$fP0ãm¹dÖB…Þ…>ìÔbY²’HŠÎŠB
|
||||
¾XW1çŒô±¬h]U¿(Œ˜‘lÁ:rç)2³RºE'Šz4€0¬ÀºÍðòGÉ\ñ‰ÑJ|Ã,Tx¿N6é;Yôf›^9¢›ì³‹—ì6näÃrt;o5èJ£`çBëdÞç¡N½^Õ¦}µx}VÅþbIz\˜Ê³–˪«>Á.F,X®h·QŒ£2ÏѼ×ʃmKîŒí¦¯J²"qÃd¹)ܘ9‰.
ÇAx©9“ñy3M¯’äÓåj{BÄŸÄ#/S?œƒ4öÓÔs²iÊ2#0M?(ŒI3-xÇx^WÉß2 ƒ×\Ó«Dïžd0£§g±¾¿äÞUh<55>¦ÛCOpC]„ð˜hmŸíeÙpˆ¦Ù8
N.hpòÅûKšâ¥n>¸6%VƒåÉ•–
#X>¡úíÈåQ…¡¥gDåÍп½·Á!¸Û®Ï³V<C2B3>ßÙjr<1B>†kæûõ¸&<0F>¿§x
|
|
@ -1,3 +0,0 @@
|
|||
x<01>SÁjã0ݳ¿b —., ¥‡ÍvK›ÀÒÛÒæVc+SWÅ–ƒFJ>(ß‘ëHŠcY‰·Ð“Í›÷ÞŒò²ÎáûåÕÕ—‘ÆBÖ
|
||||
<1E>¨n´@ügö;-±ÑHICRð¸!ƒÕ´wÏê²Da¸šÆ¿Q¡–"º±`¨i2Bµô]’DeÒ*týŠfñ‚·ep<+3"î÷–Àd2<64>ŸÔTU¦7¿üÑga‰°Ü’¶+ –µRûú²IW·jòR
|
||||
fé"Í™ã³2“àFЊŸ@ Â*·ªVZ®3ƒ •<>ô~Þ+žy2Ú”Þ¥ªfƒºÂ.±Òå挼<C592>ÞغL)¹FM–V<08>oÞ<ýµWdUØL`dÇ}ÆöÝÃórĽìXðÅWxƒe8pãÀØ)I¿Áñèùs¤£ÝgÍ©–¬ãšº^Ü \ûoj5ð¯ÇsÑô!:áÒa f/\Ž¿.ô?EvxÑìBa<•ðø9<C3B8>ðÌ‹¤‹Ö¶V#Ÿ¸¹QcYQä(ðìäo¿Vê<56>ýŒb;wk|<7C>†@£i´:]i·@îN¼ïLl<4C>•
NÝ¥Àð㊰“çÛøgÑowâH?<3F>!TŸõ„ZÖóƒt‡öw¨I¸~q«07Ø°÷*†ºØÇäw<2(Ü<>m²MÞQBìÄ
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
xuRMO1õÜ_17áÒ<C3A1>MMDB‰ <04>¦t'ìh?–¶@Ã/óàOò/¸]È¢«ÛÓtæÍ{o:])»‚›«ë‹¯<E280B9>Ï“YÃ|ïêûyãC«Ê@Öx>FƒŽd1%³i¤¸ÍTæP¤¥_ÿêÕ'2©Ý¶dK&8«ÚÊ#Äÿ||de¡Ñ„¶Ö‰É‹¦Ó“>ÔÚx«Ÿh±.'jÑžg"ÇR˜¡ÑçB"<:û‚a‘á@Yƒ|I¸eïÊ“$ ô}¡µpûû:3µkÚé%™€NT{€ÜHŽÑǽºÀwB«º¯Ÿü¢Ê‹•" ¹p<C2B9>„©„÷M¸…ãàÉÑT4V]cp"ièvº5àÜáCQŒÞphu^NkB§Û«Á2ò<./î·ü1p·_efST|9{þ#w¦8Ôd¬ŠìÀ¾B ï|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue