commit d83de2c14a596f1c8c17a21f4b298b634366f7e3 Author: sorlinv Date: Tue Nov 22 15:20:41 2022 +0100 recup du projet diff --git a/portfolio.sorlinv.fr.git/HEAD b/portfolio.sorlinv.fr.git/HEAD new file mode 100755 index 0000000..cb089cd --- /dev/null +++ b/portfolio.sorlinv.fr.git/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/portfolio.sorlinv.fr.git/config b/portfolio.sorlinv.fr.git/config new file mode 100755 index 0000000..07d359d --- /dev/null +++ b/portfolio.sorlinv.fr.git/config @@ -0,0 +1,4 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = true diff --git a/portfolio.sorlinv.fr.git/description b/portfolio.sorlinv.fr.git/description new file mode 100755 index 0000000..498b267 --- /dev/null +++ b/portfolio.sorlinv.fr.git/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/portfolio.sorlinv.fr.git/hooks/applypatch-msg.sample b/portfolio.sorlinv.fr.git/hooks/applypatch-msg.sample new file mode 100755 index 0000000..a5d7b84 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/applypatch-msg.sample @@ -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+"$@"} +: diff --git a/portfolio.sorlinv.fr.git/hooks/commit-msg.sample b/portfolio.sorlinv.fr.git/hooks/commit-msg.sample new file mode 100755 index 0000000..b58d118 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/commit-msg.sample @@ -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 +} diff --git a/portfolio.sorlinv.fr.git/hooks/post-receive b/portfolio.sorlinv.fr.git/hooks/post-receive new file mode 100755 index 0000000..80ae570 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/post-receive @@ -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 diff --git a/portfolio.sorlinv.fr.git/hooks/post-receive.d/gitea b/portfolio.sorlinv.fr.git/hooks/post-receive.d/gitea new file mode 100755 index 0000000..2a84d52 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/post-receive.d/gitea @@ -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 diff --git a/portfolio.sorlinv.fr.git/hooks/post-update.sample b/portfolio.sorlinv.fr.git/hooks/post-update.sample new file mode 100755 index 0000000..ec17ec1 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/post-update.sample @@ -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 diff --git a/portfolio.sorlinv.fr.git/hooks/pre-applypatch.sample b/portfolio.sorlinv.fr.git/hooks/pre-applypatch.sample new file mode 100755 index 0000000..4142082 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/pre-applypatch.sample @@ -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+"$@"} +: diff --git a/portfolio.sorlinv.fr.git/hooks/pre-commit.sample b/portfolio.sorlinv.fr.git/hooks/pre-commit.sample new file mode 100755 index 0000000..6a75641 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/pre-commit.sample @@ -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 -- diff --git a/portfolio.sorlinv.fr.git/hooks/pre-push.sample b/portfolio.sorlinv.fr.git/hooks/pre-push.sample new file mode 100755 index 0000000..6187dbf --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/pre-push.sample @@ -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: +# +# +# +# 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 diff --git a/portfolio.sorlinv.fr.git/hooks/pre-rebase.sample b/portfolio.sorlinv.fr.git/hooks/pre-rebase.sample new file mode 100755 index 0000000..6cbef5c --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/pre-rebase.sample @@ -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 diff --git a/portfolio.sorlinv.fr.git/hooks/pre-receive b/portfolio.sorlinv.fr.git/hooks/pre-receive new file mode 100755 index 0000000..80ae570 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/pre-receive @@ -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 diff --git a/portfolio.sorlinv.fr.git/hooks/pre-receive.d/gitea b/portfolio.sorlinv.fr.git/hooks/pre-receive.d/gitea new file mode 100755 index 0000000..00db788 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/pre-receive.d/gitea @@ -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 diff --git a/portfolio.sorlinv.fr.git/hooks/pre-receive.sample b/portfolio.sorlinv.fr.git/hooks/pre-receive.sample new file mode 100755 index 0000000..a1fd29e --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/pre-receive.sample @@ -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 diff --git a/portfolio.sorlinv.fr.git/hooks/prepare-commit-msg.sample b/portfolio.sorlinv.fr.git/hooks/prepare-commit-msg.sample new file mode 100755 index 0000000..10fa14c --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/prepare-commit-msg.sample @@ -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 diff --git a/portfolio.sorlinv.fr.git/hooks/proc-receive b/portfolio.sorlinv.fr.git/hooks/proc-receive new file mode 100755 index 0000000..1974627 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/proc-receive @@ -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 diff --git a/portfolio.sorlinv.fr.git/hooks/proc-receive.d/gitea b/portfolio.sorlinv.fr.git/hooks/proc-receive.d/gitea new file mode 100755 index 0000000..e69de29 diff --git a/portfolio.sorlinv.fr.git/hooks/update b/portfolio.sorlinv.fr.git/hooks/update new file mode 100755 index 0000000..b3570b0 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/update @@ -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 diff --git a/portfolio.sorlinv.fr.git/hooks/update.d/gitea b/portfolio.sorlinv.fr.git/hooks/update.d/gitea new file mode 100755 index 0000000..3f58296 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/update.d/gitea @@ -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 diff --git a/portfolio.sorlinv.fr.git/hooks/update.sample b/portfolio.sorlinv.fr.git/hooks/update.sample new file mode 100755 index 0000000..80ba941 --- /dev/null +++ b/portfolio.sorlinv.fr.git/hooks/update.sample @@ -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 )" >&2 + exit 1 +fi + +if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then + echo "usage: $0 " >&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 diff --git a/portfolio.sorlinv.fr.git/info/exclude b/portfolio.sorlinv.fr.git/info/exclude new file mode 100755 index 0000000..a5196d1 --- /dev/null +++ b/portfolio.sorlinv.fr.git/info/exclude @@ -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] +# *~ diff --git a/portfolio.sorlinv.fr.git/info/refs b/portfolio.sorlinv.fr.git/info/refs new file mode 100755 index 0000000..c69f3c6 --- /dev/null +++ b/portfolio.sorlinv.fr.git/info/refs @@ -0,0 +1 @@ +15d4da33d6d44c425760c2d107beca0cbce527ef refs/heads/master diff --git a/portfolio.sorlinv.fr.git/objects/00/51ac7073ab00eaa11fc2d2becdbd7ddf81451f b/portfolio.sorlinv.fr.git/objects/00/51ac7073ab00eaa11fc2d2becdbd7ddf81451f new file mode 100755 index 0000000..7c90f3e Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/00/51ac7073ab00eaa11fc2d2becdbd7ddf81451f differ diff --git a/portfolio.sorlinv.fr.git/objects/00/dbfdff02fc667aa387169a48cf4ca0c2fe67c3 b/portfolio.sorlinv.fr.git/objects/00/dbfdff02fc667aa387169a48cf4ca0c2fe67c3 new file mode 100755 index 0000000..6a64946 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/00/dbfdff02fc667aa387169a48cf4ca0c2fe67c3 differ diff --git a/portfolio.sorlinv.fr.git/objects/01/b1a7755899928efebe338ef84a76a86cc93d8c b/portfolio.sorlinv.fr.git/objects/01/b1a7755899928efebe338ef84a76a86cc93d8c new file mode 100755 index 0000000..28645d2 --- /dev/null +++ b/portfolio.sorlinv.fr.git/objects/01/b1a7755899928efebe338ef84a76a86cc93d8c @@ -0,0 +1 @@ +x%̱ 0FaL( Gr83+_q_ӫ.0n EŔ"iB^"]`$[el,Yɘ.V5nf ]t>6$z+5C. \ No newline at end of file diff --git a/portfolio.sorlinv.fr.git/objects/03/51ed4ab65b0321a6e722c1bbc0625c72951015 b/portfolio.sorlinv.fr.git/objects/03/51ed4ab65b0321a6e722c1bbc0625c72951015 new file mode 100755 index 0000000..a74cbea Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/03/51ed4ab65b0321a6e722c1bbc0625c72951015 differ diff --git a/portfolio.sorlinv.fr.git/objects/08/39e1d507ade787385e8d636365548c305329a2 b/portfolio.sorlinv.fr.git/objects/08/39e1d507ade787385e8d636365548c305329a2 new file mode 100755 index 0000000..007d141 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/08/39e1d507ade787385e8d636365548c305329a2 differ diff --git a/portfolio.sorlinv.fr.git/objects/0a/7d71872b3c1d1adbe82ebee5ef23eeec852537 b/portfolio.sorlinv.fr.git/objects/0a/7d71872b3c1d1adbe82ebee5ef23eeec852537 new file mode 100755 index 0000000..1d14c81 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/0a/7d71872b3c1d1adbe82ebee5ef23eeec852537 differ diff --git a/portfolio.sorlinv.fr.git/objects/0a/c0f85dbebeb904b86449f91fd110430ec348b1 b/portfolio.sorlinv.fr.git/objects/0a/c0f85dbebeb904b86449f91fd110430ec348b1 new file mode 100755 index 0000000..1811d6d Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/0a/c0f85dbebeb904b86449f91fd110430ec348b1 differ diff --git a/portfolio.sorlinv.fr.git/objects/0b/a34193674d9d568bad8b779e622a55189b9f19 b/portfolio.sorlinv.fr.git/objects/0b/a34193674d9d568bad8b779e622a55189b9f19 new file mode 100755 index 0000000..59cd0fe Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/0b/a34193674d9d568bad8b779e622a55189b9f19 differ diff --git a/portfolio.sorlinv.fr.git/objects/0c/e3943dde111ad0a65867638523f4359732ddf1 b/portfolio.sorlinv.fr.git/objects/0c/e3943dde111ad0a65867638523f4359732ddf1 new file mode 100755 index 0000000..7e1b773 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/0c/e3943dde111ad0a65867638523f4359732ddf1 differ diff --git a/portfolio.sorlinv.fr.git/objects/0e/7724766a897a5fb6dd8b970319a38de429b560 b/portfolio.sorlinv.fr.git/objects/0e/7724766a897a5fb6dd8b970319a38de429b560 new file mode 100755 index 0000000..e92d0f5 --- /dev/null +++ b/portfolio.sorlinv.fr.git/objects/0e/7724766a897a5fb6dd8b970319a38de429b560 @@ -0,0 +1,2 @@ +xAj!=*Zf;Ǩ֒5f}|خ v]DcDAHsH=2xh94.u( +S\Hn'Ff g]RFs +.wgϣ˹v}iQsGP;ޥUK \ No newline at end of file diff --git a/portfolio.sorlinv.fr.git/objects/0f/097061286de7e6772bf717df009622a2640f5f b/portfolio.sorlinv.fr.git/objects/0f/097061286de7e6772bf717df009622a2640f5f new file mode 100755 index 0000000..e406261 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/0f/097061286de7e6772bf717df009622a2640f5f differ diff --git a/portfolio.sorlinv.fr.git/objects/0f/90cff044172d981449ad68edd56d6b28483a06 b/portfolio.sorlinv.fr.git/objects/0f/90cff044172d981449ad68edd56d6b28483a06 new file mode 100755 index 0000000..f75e006 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/0f/90cff044172d981449ad68edd56d6b28483a06 differ diff --git a/portfolio.sorlinv.fr.git/objects/10/c230609652c9f888386e5f41e5925ba3e5de87 b/portfolio.sorlinv.fr.git/objects/10/c230609652c9f888386e5f41e5925ba3e5de87 new file mode 100755 index 0000000..41923bd Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/10/c230609652c9f888386e5f41e5925ba3e5de87 differ diff --git a/portfolio.sorlinv.fr.git/objects/13/19abfe3f1963aee74c17e3a40585dc4ac04197 b/portfolio.sorlinv.fr.git/objects/13/19abfe3f1963aee74c17e3a40585dc4ac04197 new file mode 100755 index 0000000..d40b5f5 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/13/19abfe3f1963aee74c17e3a40585dc4ac04197 differ diff --git a/portfolio.sorlinv.fr.git/objects/15/a0d78917de6c6acd1f763e60d104ee78be9fe8 b/portfolio.sorlinv.fr.git/objects/15/a0d78917de6c6acd1f763e60d104ee78be9fe8 new file mode 100755 index 0000000..27dd89c Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/15/a0d78917de6c6acd1f763e60d104ee78be9fe8 differ diff --git a/portfolio.sorlinv.fr.git/objects/15/d4da33d6d44c425760c2d107beca0cbce527ef b/portfolio.sorlinv.fr.git/objects/15/d4da33d6d44c425760c2d107beca0cbce527ef new file mode 100755 index 0000000..9e4108a Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/15/d4da33d6d44c425760c2d107beca0cbce527ef differ diff --git a/portfolio.sorlinv.fr.git/objects/17/7529bdd427701c60b5bff22e47fbc8d295bd79 b/portfolio.sorlinv.fr.git/objects/17/7529bdd427701c60b5bff22e47fbc8d295bd79 new file mode 100755 index 0000000..ed18153 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/17/7529bdd427701c60b5bff22e47fbc8d295bd79 differ diff --git a/portfolio.sorlinv.fr.git/objects/19/f1843716d0e9d5acd5702b52bffc9c5f20f8bb b/portfolio.sorlinv.fr.git/objects/19/f1843716d0e9d5acd5702b52bffc9c5f20f8bb new file mode 100755 index 0000000..c1559a3 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/19/f1843716d0e9d5acd5702b52bffc9c5f20f8bb differ diff --git a/portfolio.sorlinv.fr.git/objects/1a/a9ba91d5420c55a3ce35c2a47f701d12481e6a b/portfolio.sorlinv.fr.git/objects/1a/a9ba91d5420c55a3ce35c2a47f701d12481e6a new file mode 100755 index 0000000..54ed3fc Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/1a/a9ba91d5420c55a3ce35c2a47f701d12481e6a differ diff --git a/portfolio.sorlinv.fr.git/objects/20/6f0d4bf7829a6dd03a0281bf8f19c07ce73c14 b/portfolio.sorlinv.fr.git/objects/20/6f0d4bf7829a6dd03a0281bf8f19c07ce73c14 new file mode 100755 index 0000000..017c24c Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/20/6f0d4bf7829a6dd03a0281bf8f19c07ce73c14 differ diff --git a/portfolio.sorlinv.fr.git/objects/21/3fe154569566ac35a89abaed13095800387e30 b/portfolio.sorlinv.fr.git/objects/21/3fe154569566ac35a89abaed13095800387e30 new file mode 100755 index 0000000..3dcb895 --- /dev/null +++ b/portfolio.sorlinv.fr.git/objects/21/3fe154569566ac35a89abaed13095800387e30 @@ -0,0 +1,3 @@ +xͪ @} +3:*\.1?"$oޡ۳8{(EU H @d/2h\0b + Cd kyG;A}xv,g[;k;mI}: +PJ\Bpβʹ./HaK \ No newline at end of file diff --git a/portfolio.sorlinv.fr.git/objects/22/b1428c32ba6b6a5ef8cd0f787f96c7a5f74cf5 b/portfolio.sorlinv.fr.git/objects/22/b1428c32ba6b6a5ef8cd0f787f96c7a5f74cf5 new file mode 100755 index 0000000..765d536 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/22/b1428c32ba6b6a5ef8cd0f787f96c7a5f74cf5 differ diff --git a/portfolio.sorlinv.fr.git/objects/29/685d9a2732bdf2913115202ffd6d9b22ed09fa b/portfolio.sorlinv.fr.git/objects/29/685d9a2732bdf2913115202ffd6d9b22ed09fa new file mode 100755 index 0000000..a58211e --- /dev/null +++ b/portfolio.sorlinv.fr.git/objects/29/685d9a2732bdf2913115202ffd6d9b22ed09fa @@ -0,0 +1 @@ +xAn @Ѯ9#E6HUm1X2R)_[(2 |~ 帏r|?۬\{j 4uk 5:z@G҄ST6 \ No newline at end of file diff --git a/portfolio.sorlinv.fr.git/objects/2c/2e21da783bf9d22da823c7f185189561b77204 b/portfolio.sorlinv.fr.git/objects/2c/2e21da783bf9d22da823c7f185189561b77204 new file mode 100755 index 0000000..f8a4e44 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/2c/2e21da783bf9d22da823c7f185189561b77204 differ diff --git a/portfolio.sorlinv.fr.git/objects/30/ed0a81cc79587ace178b5ea4cf2054f18b0e9c b/portfolio.sorlinv.fr.git/objects/30/ed0a81cc79587ace178b5ea4cf2054f18b0e9c new file mode 100755 index 0000000..91ccad8 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/30/ed0a81cc79587ace178b5ea4cf2054f18b0e9c differ diff --git a/portfolio.sorlinv.fr.git/objects/31/d67ede28605800f25b9b98208e88d214d917e3 b/portfolio.sorlinv.fr.git/objects/31/d67ede28605800f25b9b98208e88d214d917e3 new file mode 100755 index 0000000..f951278 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/31/d67ede28605800f25b9b98208e88d214d917e3 differ diff --git a/portfolio.sorlinv.fr.git/objects/33/0bc9ca01e2908d94f6ab95974d10d24f346e3f b/portfolio.sorlinv.fr.git/objects/33/0bc9ca01e2908d94f6ab95974d10d24f346e3f new file mode 100755 index 0000000..3669b7b Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/33/0bc9ca01e2908d94f6ab95974d10d24f346e3f differ diff --git a/portfolio.sorlinv.fr.git/objects/33/60628a0217b3f32cd6cdd579088e87b7c18228 b/portfolio.sorlinv.fr.git/objects/33/60628a0217b3f32cd6cdd579088e87b7c18228 new file mode 100755 index 0000000..66b4e75 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/33/60628a0217b3f32cd6cdd579088e87b7c18228 differ diff --git a/portfolio.sorlinv.fr.git/objects/38/55a5a2065ed53fcb3e0d34cdd92f02b488ee11 b/portfolio.sorlinv.fr.git/objects/38/55a5a2065ed53fcb3e0d34cdd92f02b488ee11 new file mode 100755 index 0000000..6665157 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/38/55a5a2065ed53fcb3e0d34cdd92f02b488ee11 differ diff --git a/portfolio.sorlinv.fr.git/objects/38/f83edd3e4496c2dba9d0921ae1f45872dd4b56 b/portfolio.sorlinv.fr.git/objects/38/f83edd3e4496c2dba9d0921ae1f45872dd4b56 new file mode 100755 index 0000000..151ae9f Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/38/f83edd3e4496c2dba9d0921ae1f45872dd4b56 differ diff --git a/portfolio.sorlinv.fr.git/objects/3a/99102f81deb6497bee3dbe6bc434c25ebfc531 b/portfolio.sorlinv.fr.git/objects/3a/99102f81deb6497bee3dbe6bc434c25ebfc531 new file mode 100755 index 0000000..78501d3 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/3a/99102f81deb6497bee3dbe6bc434c25ebfc531 differ diff --git a/portfolio.sorlinv.fr.git/objects/3b/26ac5a8069f387cb43f8d6c2f3320df8c52338 b/portfolio.sorlinv.fr.git/objects/3b/26ac5a8069f387cb43f8d6c2f3320df8c52338 new file mode 100755 index 0000000..979d0b9 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/3b/26ac5a8069f387cb43f8d6c2f3320df8c52338 differ diff --git a/portfolio.sorlinv.fr.git/objects/3c/1f7c849ad312ef94af8fa6d6ae2c39066211ad b/portfolio.sorlinv.fr.git/objects/3c/1f7c849ad312ef94af8fa6d6ae2c39066211ad new file mode 100755 index 0000000..45e07f0 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/3c/1f7c849ad312ef94af8fa6d6ae2c39066211ad differ diff --git a/portfolio.sorlinv.fr.git/objects/3e/1496d2bb6a2b79efdcc5ba438ca73b75d7e21c b/portfolio.sorlinv.fr.git/objects/3e/1496d2bb6a2b79efdcc5ba438ca73b75d7e21c new file mode 100755 index 0000000..547644b Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/3e/1496d2bb6a2b79efdcc5ba438ca73b75d7e21c differ diff --git a/portfolio.sorlinv.fr.git/objects/3f/217ab7cb03ed1001d720fff5a92cbb307b3d6d b/portfolio.sorlinv.fr.git/objects/3f/217ab7cb03ed1001d720fff5a92cbb307b3d6d new file mode 100755 index 0000000..e111e1b Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/3f/217ab7cb03ed1001d720fff5a92cbb307b3d6d differ diff --git a/portfolio.sorlinv.fr.git/objects/42/549009b303c40486dd1744e9c0cc0f433ef59b b/portfolio.sorlinv.fr.git/objects/42/549009b303c40486dd1744e9c0cc0f433ef59b new file mode 100755 index 0000000..7c31eb7 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/42/549009b303c40486dd1744e9c0cc0f433ef59b differ diff --git a/portfolio.sorlinv.fr.git/objects/43/86791e4b4c8e2d9cfc7083a01a5ceed2a02ba7 b/portfolio.sorlinv.fr.git/objects/43/86791e4b4c8e2d9cfc7083a01a5ceed2a02ba7 new file mode 100755 index 0000000..31f4857 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/43/86791e4b4c8e2d9cfc7083a01a5ceed2a02ba7 differ diff --git a/portfolio.sorlinv.fr.git/objects/45/c41ef5d8816bbeff0784892c4ce0d5638cc837 b/portfolio.sorlinv.fr.git/objects/45/c41ef5d8816bbeff0784892c4ce0d5638cc837 new file mode 100755 index 0000000..7dbca19 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/45/c41ef5d8816bbeff0784892c4ce0d5638cc837 differ diff --git a/portfolio.sorlinv.fr.git/objects/47/9d42bb8c84c0520a58ea7c1299bccb19806045 b/portfolio.sorlinv.fr.git/objects/47/9d42bb8c84c0520a58ea7c1299bccb19806045 new file mode 100755 index 0000000..eca0241 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/47/9d42bb8c84c0520a58ea7c1299bccb19806045 differ diff --git a/portfolio.sorlinv.fr.git/objects/47/fe9e152c74c6f3b440e2a8e176e5c56d89ca15 b/portfolio.sorlinv.fr.git/objects/47/fe9e152c74c6f3b440e2a8e176e5c56d89ca15 new file mode 100755 index 0000000..ee3fcce Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/47/fe9e152c74c6f3b440e2a8e176e5c56d89ca15 differ diff --git a/portfolio.sorlinv.fr.git/objects/48/229a7d123f1333aa9ba5aff7fb552c943ef4f4 b/portfolio.sorlinv.fr.git/objects/48/229a7d123f1333aa9ba5aff7fb552c943ef4f4 new file mode 100755 index 0000000..156fe3b Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/48/229a7d123f1333aa9ba5aff7fb552c943ef4f4 differ diff --git a/portfolio.sorlinv.fr.git/objects/48/90562ee79d11e48104c9cf860f4f410ac6bfdf b/portfolio.sorlinv.fr.git/objects/48/90562ee79d11e48104c9cf860f4f410ac6bfdf new file mode 100755 index 0000000..f1dec85 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/48/90562ee79d11e48104c9cf860f4f410ac6bfdf differ diff --git a/portfolio.sorlinv.fr.git/objects/4a/4ac250b70598a40b11e770640b09ed77d8bcd6 b/portfolio.sorlinv.fr.git/objects/4a/4ac250b70598a40b11e770640b09ed77d8bcd6 new file mode 100755 index 0000000..2ce215f Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/4a/4ac250b70598a40b11e770640b09ed77d8bcd6 differ diff --git a/portfolio.sorlinv.fr.git/objects/4f/779d86b6a5e5490c3fbd34414620b0b1e0e9c0 b/portfolio.sorlinv.fr.git/objects/4f/779d86b6a5e5490c3fbd34414620b0b1e0e9c0 new file mode 100755 index 0000000..35430c6 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/4f/779d86b6a5e5490c3fbd34414620b0b1e0e9c0 differ diff --git a/portfolio.sorlinv.fr.git/objects/51/00bbff30a567a7277b9099347efd2f89a5b620 b/portfolio.sorlinv.fr.git/objects/51/00bbff30a567a7277b9099347efd2f89a5b620 new file mode 100755 index 0000000..c354cb9 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/51/00bbff30a567a7277b9099347efd2f89a5b620 differ diff --git a/portfolio.sorlinv.fr.git/objects/51/2791f92caecf56450e93d4ddc7ba75114119ad b/portfolio.sorlinv.fr.git/objects/51/2791f92caecf56450e93d4ddc7ba75114119ad new file mode 100755 index 0000000..4573623 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/51/2791f92caecf56450e93d4ddc7ba75114119ad differ diff --git a/portfolio.sorlinv.fr.git/objects/55/96bee2066dcaf12b3badf056901bc8a7235b08 b/portfolio.sorlinv.fr.git/objects/55/96bee2066dcaf12b3badf056901bc8a7235b08 new file mode 100755 index 0000000..93be498 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/55/96bee2066dcaf12b3badf056901bc8a7235b08 differ diff --git a/portfolio.sorlinv.fr.git/objects/56/303516e6326533843947b8ec09439f08be8f47 b/portfolio.sorlinv.fr.git/objects/56/303516e6326533843947b8ec09439f08be8f47 new file mode 100755 index 0000000..1f4e52c Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/56/303516e6326533843947b8ec09439f08be8f47 differ diff --git a/portfolio.sorlinv.fr.git/objects/59/01aaad4b6b4ed7e7b022a7384189c9ae1dad7e b/portfolio.sorlinv.fr.git/objects/59/01aaad4b6b4ed7e7b022a7384189c9ae1dad7e new file mode 100755 index 0000000..f4b576c Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/59/01aaad4b6b4ed7e7b022a7384189c9ae1dad7e differ diff --git a/portfolio.sorlinv.fr.git/objects/5d/03f373d0960ec6284a1ab164a6ae03046f43c9 b/portfolio.sorlinv.fr.git/objects/5d/03f373d0960ec6284a1ab164a6ae03046f43c9 new file mode 100755 index 0000000..8e182a5 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/5d/03f373d0960ec6284a1ab164a6ae03046f43c9 differ diff --git a/portfolio.sorlinv.fr.git/objects/5d/eab4b89090ca03a3be40a2908c34a882760b86 b/portfolio.sorlinv.fr.git/objects/5d/eab4b89090ca03a3be40a2908c34a882760b86 new file mode 100755 index 0000000..4fd0d90 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/5d/eab4b89090ca03a3be40a2908c34a882760b86 differ diff --git a/portfolio.sorlinv.fr.git/objects/61/497dacf5c446f9e1459d6deaa44eaedf49e2d7 b/portfolio.sorlinv.fr.git/objects/61/497dacf5c446f9e1459d6deaa44eaedf49e2d7 new file mode 100755 index 0000000..334964a Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/61/497dacf5c446f9e1459d6deaa44eaedf49e2d7 differ diff --git a/portfolio.sorlinv.fr.git/objects/61/d8546f22b4caa9fc9dc23a7528c2b16cfa9b19 b/portfolio.sorlinv.fr.git/objects/61/d8546f22b4caa9fc9dc23a7528c2b16cfa9b19 new file mode 100755 index 0000000..b75fe18 --- /dev/null +++ b/portfolio.sorlinv.fr.git/objects/61/d8546f22b4caa9fc9dc23a7528c2b16cfa9b19 @@ -0,0 +1,8 @@ +xk4gqNuKL+j*5eRٴ斣UCY&p8։hԥmUE"~9.u*u\E<}=OJ@Z0VR6X,2,4..",,,x1ΎFSg[]kot>ob#,qRȡإT+)ƙ e!fF CN- {s(X.mώ(H𰣦C #f_b1Lv'3bVbi9 ~d +Ê藗p8| +aAŚbbցG{[4u5(%d-߇W`FZUv(ńm 'ꎩ(uyaVfi)U9L4;W(P~QXV6AV€wqAC~r$Ux7[u#QErxnWV(S캔T.#dVr8{MNe9V%6ѕj)L=@ :tyWKVٯI+nCS'Ț˃hU oo2WuA ;Ge,y-#Y̋,V2)iÚyU#H<u=]YӦ1%^_@_he+Xh254I/?DA@A[3 ^?{Vg +3/79h%5:ήF{8+MbU2аMR:6MHըC = + +, Y3~rFsbWhQBhSQu$hb5m-coHbOrr +>Wt)f\?h;dH Z՗sFZ,N\r6@K1NIտhVb +A~"pǔUj VG~-Mƙi!Zf='/ϖ%ʰ %vu>,R}NRYB${b_Ș&8W$zsoks]{f,+@7%NؓZx# 'ن1\ 8PKGJ;u`ˌԊE6ZD1>>8<0zܺI>GW+-0lh:nFKfH Oo4 }0g{x>10MQMP}e[qƌ 1zs1.[QK=?uP')b لkWϸ+<%T*#YGIEx +2tgAA)KRzm"QbjC!ؒ5bNjaIKgc!YE@f7hqspW1Ts#!FV3E>cGvy,)!i2l?sj%V2UTTIuiw/CG o58 +Ϙ=*XmE C˲cA;МP/Pj>(ꊅ:)yiCx7׍{{Ul +4UZa9w殮{VY6{o(fB ZWFlژIrAIivOOlhUh]Vh_heNg +ݯE)*y鿆[d=KRR?wݽ1բ2HVn639y>bp ꫖g1ň.,<1 +? +BBʻ1gy!vk{P61d :Ձ\mԃyX/biUW#~\ ~=$Y[rBa{Du1!߱m}?h*0k^9 ɿ18/`. +d;?׮^*<[h*P}]ưQzٸ2]M[.TuӼR ѕZ: \ No newline at end of file diff --git a/portfolio.sorlinv.fr.git/objects/ca/e971634d74b88e0b62d098e2b6b7a6fc7d9ae9 b/portfolio.sorlinv.fr.git/objects/ca/e971634d74b88e0b62d098e2b6b7a6fc7d9ae9 new file mode 100755 index 0000000..0a1fedb Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/ca/e971634d74b88e0b62d098e2b6b7a6fc7d9ae9 differ diff --git a/portfolio.sorlinv.fr.git/objects/cb/b89fb22d1989e2e64cc7cedf0f1312e9cb03e1 b/portfolio.sorlinv.fr.git/objects/cb/b89fb22d1989e2e64cc7cedf0f1312e9cb03e1 new file mode 100755 index 0000000..8de38e0 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/cb/b89fb22d1989e2e64cc7cedf0f1312e9cb03e1 differ diff --git a/portfolio.sorlinv.fr.git/objects/cb/cef9e797907a1b5923be0abd775e4f1a834aeb b/portfolio.sorlinv.fr.git/objects/cb/cef9e797907a1b5923be0abd775e4f1a834aeb new file mode 100755 index 0000000..ac0bf2c Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/cb/cef9e797907a1b5923be0abd775e4f1a834aeb differ diff --git a/portfolio.sorlinv.fr.git/objects/cc/4c7cd953e34f9a4ca68162bbbc8f8259b23f06 b/portfolio.sorlinv.fr.git/objects/cc/4c7cd953e34f9a4ca68162bbbc8f8259b23f06 new file mode 100755 index 0000000..d00f7f1 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/cc/4c7cd953e34f9a4ca68162bbbc8f8259b23f06 differ diff --git a/portfolio.sorlinv.fr.git/objects/ce/1e45c485f8fa9359f02e279d7b5a20d7721a15 b/portfolio.sorlinv.fr.git/objects/ce/1e45c485f8fa9359f02e279d7b5a20d7721a15 new file mode 100755 index 0000000..abbf1ba --- /dev/null +++ b/portfolio.sorlinv.fr.git/objects/ce/1e45c485f8fa9359f02e279d7b5a20d7721a15 @@ -0,0 +1,2 @@ +xAn C5 D1|Ҫ/=Cm١uy=F&=efR.dI=)R!bSVMW MgP5z>ܿ蘄\ogG{q FTns +Qt1W+o׀A?_[FqZ \ No newline at end of file diff --git a/portfolio.sorlinv.fr.git/objects/cf/c358b4a9968ce8d29eabe59c12cc0614e7dae5 b/portfolio.sorlinv.fr.git/objects/cf/c358b4a9968ce8d29eabe59c12cc0614e7dae5 new file mode 100755 index 0000000..02b4cad Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/cf/c358b4a9968ce8d29eabe59c12cc0614e7dae5 differ diff --git a/portfolio.sorlinv.fr.git/objects/d0/4a4e38dd8af70e8f6e3b95ea563ce31035dd7e b/portfolio.sorlinv.fr.git/objects/d0/4a4e38dd8af70e8f6e3b95ea563ce31035dd7e new file mode 100755 index 0000000..7506c2f Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/d0/4a4e38dd8af70e8f6e3b95ea563ce31035dd7e differ diff --git a/portfolio.sorlinv.fr.git/objects/d8/b47c154a33c9e24a2b69df5d6436f49f8fdbe8 b/portfolio.sorlinv.fr.git/objects/d8/b47c154a33c9e24a2b69df5d6436f49f8fdbe8 new file mode 100755 index 0000000..d855a1a Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/d8/b47c154a33c9e24a2b69df5d6436f49f8fdbe8 differ diff --git a/portfolio.sorlinv.fr.git/objects/da/182b4d5f79bcf1e6d3a0b02b2faa64bd1a1162 b/portfolio.sorlinv.fr.git/objects/da/182b4d5f79bcf1e6d3a0b02b2faa64bd1a1162 new file mode 100755 index 0000000..a19f370 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/da/182b4d5f79bcf1e6d3a0b02b2faa64bd1a1162 differ diff --git a/portfolio.sorlinv.fr.git/objects/db/7a7f073db35bbe2ad5a5e1e4548095722b606e b/portfolio.sorlinv.fr.git/objects/db/7a7f073db35bbe2ad5a5e1e4548095722b606e new file mode 100755 index 0000000..4890053 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/db/7a7f073db35bbe2ad5a5e1e4548095722b606e differ diff --git a/portfolio.sorlinv.fr.git/objects/de/8f5cccd21636047fd121cb4939bd8fb101c229 b/portfolio.sorlinv.fr.git/objects/de/8f5cccd21636047fd121cb4939bd8fb101c229 new file mode 100755 index 0000000..36c55c3 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/de/8f5cccd21636047fd121cb4939bd8fb101c229 differ diff --git a/portfolio.sorlinv.fr.git/objects/e0/5501a9fdd9c5ca2881e751dee3bb659684a34d b/portfolio.sorlinv.fr.git/objects/e0/5501a9fdd9c5ca2881e751dee3bb659684a34d new file mode 100755 index 0000000..7ca1b37 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/e0/5501a9fdd9c5ca2881e751dee3bb659684a34d differ diff --git a/portfolio.sorlinv.fr.git/objects/e6/eda7a0549e141da5fd9561d0e03f7258f6508b b/portfolio.sorlinv.fr.git/objects/e6/eda7a0549e141da5fd9561d0e03f7258f6508b new file mode 100755 index 0000000..cfe7985 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/e6/eda7a0549e141da5fd9561d0e03f7258f6508b differ diff --git a/portfolio.sorlinv.fr.git/objects/e8/fe5628805c1dbba9767744ae25c34603539970 b/portfolio.sorlinv.fr.git/objects/e8/fe5628805c1dbba9767744ae25c34603539970 new file mode 100755 index 0000000..d15a73e Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/e8/fe5628805c1dbba9767744ae25c34603539970 differ diff --git a/portfolio.sorlinv.fr.git/objects/ea/4e6bceefe038cf2bf6351c978b80445591dc0a b/portfolio.sorlinv.fr.git/objects/ea/4e6bceefe038cf2bf6351c978b80445591dc0a new file mode 100755 index 0000000..77e94eb Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/ea/4e6bceefe038cf2bf6351c978b80445591dc0a differ diff --git a/portfolio.sorlinv.fr.git/objects/ea/901c3667ee466f3df8c712c610fbe653969da7 b/portfolio.sorlinv.fr.git/objects/ea/901c3667ee466f3df8c712c610fbe653969da7 new file mode 100755 index 0000000..5821053 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/ea/901c3667ee466f3df8c712c610fbe653969da7 differ diff --git a/portfolio.sorlinv.fr.git/objects/ea/ca39fad25d6415c915c1099a84c65b25f5d7aa b/portfolio.sorlinv.fr.git/objects/ea/ca39fad25d6415c915c1099a84c65b25f5d7aa new file mode 100755 index 0000000..001adfd Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/ea/ca39fad25d6415c915c1099a84c65b25f5d7aa differ diff --git a/portfolio.sorlinv.fr.git/objects/f0/0467541473c97fccf078b54e59152bd14f141a b/portfolio.sorlinv.fr.git/objects/f0/0467541473c97fccf078b54e59152bd14f141a new file mode 100755 index 0000000..77cd3ec Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/f0/0467541473c97fccf078b54e59152bd14f141a differ diff --git a/portfolio.sorlinv.fr.git/objects/f1/8b8b251739e659ef18b9b608f0df0d56bfaad1 b/portfolio.sorlinv.fr.git/objects/f1/8b8b251739e659ef18b9b608f0df0d56bfaad1 new file mode 100755 index 0000000..a254b08 --- /dev/null +++ b/portfolio.sorlinv.fr.git/objects/f1/8b8b251739e659ef18b9b608f0df0d56bfaad1 @@ -0,0 +1,2 @@ +x%10S󊕛4*9$c EXݮv4={{yV(1%g<+a $ kGo+{y' +;9v`]f8g5uMsOV )J>& \ No newline at end of file diff --git a/portfolio.sorlinv.fr.git/objects/f3/586c86fc23be9c385dcd9d8c540532487411b1 b/portfolio.sorlinv.fr.git/objects/f3/586c86fc23be9c385dcd9d8c540532487411b1 new file mode 100755 index 0000000..162a4f6 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/f3/586c86fc23be9c385dcd9d8c540532487411b1 differ diff --git a/portfolio.sorlinv.fr.git/objects/f3/a924cf9d489ee3d8bd58640dae447bd1c98530 b/portfolio.sorlinv.fr.git/objects/f3/a924cf9d489ee3d8bd58640dae447bd1c98530 new file mode 100755 index 0000000..c1c3ea7 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/f3/a924cf9d489ee3d8bd58640dae447bd1c98530 differ diff --git a/portfolio.sorlinv.fr.git/objects/f3/c0ccd5bbf08ea0ea55f396d7493c5e2895ed3c b/portfolio.sorlinv.fr.git/objects/f3/c0ccd5bbf08ea0ea55f396d7493c5e2895ed3c new file mode 100755 index 0000000..98364f4 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/f3/c0ccd5bbf08ea0ea55f396d7493c5e2895ed3c differ diff --git a/portfolio.sorlinv.fr.git/objects/f4/fc37352a01dbf6cd4de2008e83393812fa56ac b/portfolio.sorlinv.fr.git/objects/f4/fc37352a01dbf6cd4de2008e83393812fa56ac new file mode 100755 index 0000000..150cded Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/f4/fc37352a01dbf6cd4de2008e83393812fa56ac differ diff --git a/portfolio.sorlinv.fr.git/objects/f7/2dc0dc4c41d5a3efdbe6269b7302b10825e623 b/portfolio.sorlinv.fr.git/objects/f7/2dc0dc4c41d5a3efdbe6269b7302b10825e623 new file mode 100755 index 0000000..4469817 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/f7/2dc0dc4c41d5a3efdbe6269b7302b10825e623 differ diff --git a/portfolio.sorlinv.fr.git/objects/f8/dc291ea283f92a16bfb00127d2194f7abcf8b4 b/portfolio.sorlinv.fr.git/objects/f8/dc291ea283f92a16bfb00127d2194f7abcf8b4 new file mode 100755 index 0000000..5e85133 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/f8/dc291ea283f92a16bfb00127d2194f7abcf8b4 differ diff --git a/portfolio.sorlinv.fr.git/objects/fa/1024c03c462cb62d19c7f791d69c4dbdd25ec2 b/portfolio.sorlinv.fr.git/objects/fa/1024c03c462cb62d19c7f791d69c4dbdd25ec2 new file mode 100755 index 0000000..325a9ff --- /dev/null +++ b/portfolio.sorlinv.fr.git/objects/fa/1024c03c462cb62d19c7f791d69c4dbdd25ec2 @@ -0,0 +1,2 @@ +xMj0@uF(!c$lY 9~}nmuq"B0KH_܏Z7Ss.oWE[Y) T&>wx N6xP[ \ No newline at end of file diff --git a/portfolio.sorlinv.fr.git/objects/fc/a8fac041c0662ce51a46122c3e66969574bba9 b/portfolio.sorlinv.fr.git/objects/fc/a8fac041c0662ce51a46122c3e66969574bba9 new file mode 100755 index 0000000..5ff5266 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/fc/a8fac041c0662ce51a46122c3e66969574bba9 differ diff --git a/portfolio.sorlinv.fr.git/objects/fc/d4e5675e06058a7d383a2c17bdc9562fb95905 b/portfolio.sorlinv.fr.git/objects/fc/d4e5675e06058a7d383a2c17bdc9562fb95905 new file mode 100755 index 0000000..c826c5c Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/fc/d4e5675e06058a7d383a2c17bdc9562fb95905 differ diff --git a/portfolio.sorlinv.fr.git/objects/fe/0f7bdb3c7ac78545451048ac7ae8fa74c1322d b/portfolio.sorlinv.fr.git/objects/fe/0f7bdb3c7ac78545451048ac7ae8fa74c1322d new file mode 100755 index 0000000..2a5fb43 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/fe/0f7bdb3c7ac78545451048ac7ae8fa74c1322d differ diff --git a/portfolio.sorlinv.fr.git/objects/fe/cd4120ad36ff9dbbcf74a5070cdf254884a550 b/portfolio.sorlinv.fr.git/objects/fe/cd4120ad36ff9dbbcf74a5070cdf254884a550 new file mode 100755 index 0000000..f09bf91 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/fe/cd4120ad36ff9dbbcf74a5070cdf254884a550 differ diff --git a/portfolio.sorlinv.fr.git/objects/info/packs b/portfolio.sorlinv.fr.git/objects/info/packs new file mode 100755 index 0000000..6779fcf --- /dev/null +++ b/portfolio.sorlinv.fr.git/objects/info/packs @@ -0,0 +1,2 @@ +P pack-9de41f5829d4140983b25cc4df0ee8290fac3c20.pack + diff --git a/portfolio.sorlinv.fr.git/objects/pack/pack-9de41f5829d4140983b25cc4df0ee8290fac3c20.idx b/portfolio.sorlinv.fr.git/objects/pack/pack-9de41f5829d4140983b25cc4df0ee8290fac3c20.idx new file mode 100755 index 0000000..b20f340 Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/pack/pack-9de41f5829d4140983b25cc4df0ee8290fac3c20.idx differ diff --git a/portfolio.sorlinv.fr.git/objects/pack/pack-9de41f5829d4140983b25cc4df0ee8290fac3c20.pack b/portfolio.sorlinv.fr.git/objects/pack/pack-9de41f5829d4140983b25cc4df0ee8290fac3c20.pack new file mode 100755 index 0000000..5f9d46c Binary files /dev/null and b/portfolio.sorlinv.fr.git/objects/pack/pack-9de41f5829d4140983b25cc4df0ee8290fac3c20.pack differ diff --git a/portfolio.sorlinv.fr.git/refs/heads/master b/portfolio.sorlinv.fr.git/refs/heads/master new file mode 100755 index 0000000..c0d0634 --- /dev/null +++ b/portfolio.sorlinv.fr.git/refs/heads/master @@ -0,0 +1 @@ +15d4da33d6d44c425760c2d107beca0cbce527ef