diff --git a/Pilzlicht.git/HEAD b/Pilzlicht.git/HEAD deleted file mode 100644 index cb089cd..0000000 --- a/Pilzlicht.git/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/Pilzlicht.git/config b/Pilzlicht.git/config deleted file mode 100644 index 3312e5d..0000000 --- a/Pilzlicht.git/config +++ /dev/null @@ -1,6 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = true -[remote "origin"] - url = /home/m/Nextcloud_Pilzlicht_wip/Pilzlicht Repository/.git diff --git a/Pilzlicht.git/description b/Pilzlicht.git/description deleted file mode 100644 index 498b267..0000000 --- a/Pilzlicht.git/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/Pilzlicht.git/hooks/applypatch-msg.sample b/Pilzlicht.git/hooks/applypatch-msg.sample deleted file mode 100755 index a5d7b84..0000000 --- a/Pilzlicht.git/hooks/applypatch-msg.sample +++ /dev/null @@ -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+"$@"} -: diff --git a/Pilzlicht.git/hooks/commit-msg.sample b/Pilzlicht.git/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/Pilzlicht.git/hooks/commit-msg.sample +++ /dev/null @@ -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 -} diff --git a/Pilzlicht.git/hooks/fsmonitor-watchman.sample b/Pilzlicht.git/hooks/fsmonitor-watchman.sample deleted file mode 100755 index ef94fa2..0000000 --- a/Pilzlicht.git/hooks/fsmonitor-watchman.sample +++ /dev/null @@ -1,109 +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 - # subtract one second to make sure watchman will return all changes - $time = int ($time / 1000000000) - 1; -} 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. - - my $query = <<" END"; - ["query", "$git_work_tree", { - "since": $time, - "fields": ["name"] - }] - END - - print CHLD_IN $query; - close CHLD_IN; - my $response = do {local $/; }; - - 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}}; -} diff --git a/Pilzlicht.git/hooks/post-update.sample b/Pilzlicht.git/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/Pilzlicht.git/hooks/post-update.sample +++ /dev/null @@ -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 diff --git a/Pilzlicht.git/hooks/pre-applypatch.sample b/Pilzlicht.git/hooks/pre-applypatch.sample deleted file mode 100755 index 4142082..0000000 --- a/Pilzlicht.git/hooks/pre-applypatch.sample +++ /dev/null @@ -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+"$@"} -: diff --git a/Pilzlicht.git/hooks/pre-commit.sample b/Pilzlicht.git/hooks/pre-commit.sample deleted file mode 100755 index 6a75641..0000000 --- a/Pilzlicht.git/hooks/pre-commit.sample +++ /dev/null @@ -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=$(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/Pilzlicht.git/hooks/pre-merge-commit.sample b/Pilzlicht.git/hooks/pre-merge-commit.sample deleted file mode 100755 index 399eab1..0000000 --- a/Pilzlicht.git/hooks/pre-merge-commit.sample +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git merge" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message to -# stderr if it wants to stop the merge commit. -# -# To enable this hook, rename this file to "pre-merge-commit". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" -: diff --git a/Pilzlicht.git/hooks/pre-push.sample b/Pilzlicht.git/hooks/pre-push.sample deleted file mode 100755 index 6187dbf..0000000 --- a/Pilzlicht.git/hooks/pre-push.sample +++ /dev/null @@ -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: -# -# -# -# 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/Pilzlicht.git/hooks/pre-rebase.sample b/Pilzlicht.git/hooks/pre-rebase.sample deleted file mode 100755 index 6cbef5c..0000000 --- a/Pilzlicht.git/hooks/pre-rebase.sample +++ /dev/null @@ -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 diff --git a/Pilzlicht.git/hooks/pre-receive.sample b/Pilzlicht.git/hooks/pre-receive.sample deleted file mode 100755 index a1fd29e..0000000 --- a/Pilzlicht.git/hooks/pre-receive.sample +++ /dev/null @@ -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 diff --git a/Pilzlicht.git/hooks/prepare-commit-msg.sample b/Pilzlicht.git/hooks/prepare-commit-msg.sample deleted file mode 100755 index 10fa14c..0000000 --- a/Pilzlicht.git/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,42 +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 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/Pilzlicht.git/hooks/update.sample b/Pilzlicht.git/hooks/update.sample deleted file mode 100755 index 80ba941..0000000 --- a/Pilzlicht.git/hooks/update.sample +++ /dev/null @@ -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 )" >&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/Pilzlicht.git/info/exclude b/Pilzlicht.git/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/Pilzlicht.git/info/exclude +++ /dev/null @@ -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] -# *~ diff --git a/Pilzlicht.git/objects/06/c40da768f1da32fb44997c6bb7b1046330b12c b/Pilzlicht.git/objects/06/c40da768f1da32fb44997c6bb7b1046330b12c deleted file mode 100644 index feff74a..0000000 Binary files a/Pilzlicht.git/objects/06/c40da768f1da32fb44997c6bb7b1046330b12c and /dev/null differ diff --git a/Pilzlicht.git/objects/09/c1629986a646ffb6140afd7bd2bf5f39329c88 b/Pilzlicht.git/objects/09/c1629986a646ffb6140afd7bd2bf5f39329c88 deleted file mode 100644 index fefe9b8..0000000 Binary files a/Pilzlicht.git/objects/09/c1629986a646ffb6140afd7bd2bf5f39329c88 and /dev/null differ diff --git a/Pilzlicht.git/objects/0c/97efd25b5974b974ed9a8a18207bc4f55bb338 b/Pilzlicht.git/objects/0c/97efd25b5974b974ed9a8a18207bc4f55bb338 deleted file mode 100644 index 1f4c0b3..0000000 Binary files a/Pilzlicht.git/objects/0c/97efd25b5974b974ed9a8a18207bc4f55bb338 and /dev/null differ diff --git a/Pilzlicht.git/objects/0f/731e8a7a4e81a4fbb299843ebbc05617441213 b/Pilzlicht.git/objects/0f/731e8a7a4e81a4fbb299843ebbc05617441213 deleted file mode 100644 index aa499a9..0000000 Binary files a/Pilzlicht.git/objects/0f/731e8a7a4e81a4fbb299843ebbc05617441213 and /dev/null differ diff --git a/Pilzlicht.git/objects/11/4486fd9446c39da1b69101597e25e33877fca6 b/Pilzlicht.git/objects/11/4486fd9446c39da1b69101597e25e33877fca6 deleted file mode 100644 index d9fbdf0..0000000 Binary files a/Pilzlicht.git/objects/11/4486fd9446c39da1b69101597e25e33877fca6 and /dev/null differ diff --git a/Pilzlicht.git/objects/13/6f8371d794ee26206dce6693982ad7e8cb25b6 b/Pilzlicht.git/objects/13/6f8371d794ee26206dce6693982ad7e8cb25b6 deleted file mode 100644 index 9347f96..0000000 --- a/Pilzlicht.git/objects/13/6f8371d794ee26206dce6693982ad7e8cb25b6 +++ /dev/null @@ -1,4 +0,0 @@ -xM - @= a~ݔtCDxB}j)Ynb0ZQ%^(EAqэ8u >^uo[r!\i -ڏab-8#!p.h f޹ -ilG. \ No newline at end of file diff --git a/Pilzlicht.git/objects/14/b655aa19d7db70d175166f84d951b47cc5bfc3 b/Pilzlicht.git/objects/14/b655aa19d7db70d175166f84d951b47cc5bfc3 deleted file mode 100644 index c57e733..0000000 Binary files a/Pilzlicht.git/objects/14/b655aa19d7db70d175166f84d951b47cc5bfc3 and /dev/null differ diff --git a/Pilzlicht.git/objects/16/238367e0ea380e8cb224e6e81ac651d57959fe b/Pilzlicht.git/objects/16/238367e0ea380e8cb224e6e81ac651d57959fe deleted file mode 100644 index 05c7d0e..0000000 Binary files a/Pilzlicht.git/objects/16/238367e0ea380e8cb224e6e81ac651d57959fe and /dev/null differ diff --git a/Pilzlicht.git/objects/18/6f1519e3d587efeb76a012f265a85fe95cdb62 b/Pilzlicht.git/objects/18/6f1519e3d587efeb76a012f265a85fe95cdb62 deleted file mode 100644 index e5fcc29..0000000 Binary files a/Pilzlicht.git/objects/18/6f1519e3d587efeb76a012f265a85fe95cdb62 and /dev/null differ diff --git a/Pilzlicht.git/objects/23/75a1069abeab6d8a233464293388580d23cca2 b/Pilzlicht.git/objects/23/75a1069abeab6d8a233464293388580d23cca2 deleted file mode 100644 index 5fbb3ce..0000000 Binary files a/Pilzlicht.git/objects/23/75a1069abeab6d8a233464293388580d23cca2 and /dev/null differ diff --git a/Pilzlicht.git/objects/29/628d8173a6bde1ab8542f9738c0559ff8f1977 b/Pilzlicht.git/objects/29/628d8173a6bde1ab8542f9738c0559ff8f1977 deleted file mode 100644 index bfe2c64..0000000 Binary files a/Pilzlicht.git/objects/29/628d8173a6bde1ab8542f9738c0559ff8f1977 and /dev/null differ diff --git a/Pilzlicht.git/objects/2d/fb4e016a08744204d9ad26f6a9b23e7d951e89 b/Pilzlicht.git/objects/2d/fb4e016a08744204d9ad26f6a9b23e7d951e89 deleted file mode 100644 index 0a07c70..0000000 Binary files a/Pilzlicht.git/objects/2d/fb4e016a08744204d9ad26f6a9b23e7d951e89 and /dev/null differ diff --git a/Pilzlicht.git/objects/30/bf19be5774780408e25befa93ea7731b9abe35 b/Pilzlicht.git/objects/30/bf19be5774780408e25befa93ea7731b9abe35 deleted file mode 100644 index 59fa541..0000000 Binary files a/Pilzlicht.git/objects/30/bf19be5774780408e25befa93ea7731b9abe35 and /dev/null differ diff --git a/Pilzlicht.git/objects/31/981e5801bb23d6fa5b235dbfe38beb6ac43f59 b/Pilzlicht.git/objects/31/981e5801bb23d6fa5b235dbfe38beb6ac43f59 deleted file mode 100644 index 0031c38..0000000 Binary files a/Pilzlicht.git/objects/31/981e5801bb23d6fa5b235dbfe38beb6ac43f59 and /dev/null differ diff --git a/Pilzlicht.git/objects/35/7da31df30c4f21d977c7a6209dba0a32472d1e b/Pilzlicht.git/objects/35/7da31df30c4f21d977c7a6209dba0a32472d1e deleted file mode 100644 index d2637e5..0000000 Binary files a/Pilzlicht.git/objects/35/7da31df30c4f21d977c7a6209dba0a32472d1e and /dev/null differ diff --git a/Pilzlicht.git/objects/3a/c4cf33a4d20031f59dda4d2b38202d22c7a6bf b/Pilzlicht.git/objects/3a/c4cf33a4d20031f59dda4d2b38202d22c7a6bf deleted file mode 100644 index 3d930a5..0000000 Binary files a/Pilzlicht.git/objects/3a/c4cf33a4d20031f59dda4d2b38202d22c7a6bf and /dev/null differ diff --git a/Pilzlicht.git/objects/42/b25fdedabe08c6b187b78c7b1de602bfe87149 b/Pilzlicht.git/objects/42/b25fdedabe08c6b187b78c7b1de602bfe87149 deleted file mode 100644 index 9cca0c9..0000000 Binary files a/Pilzlicht.git/objects/42/b25fdedabe08c6b187b78c7b1de602bfe87149 and /dev/null differ diff --git a/Pilzlicht.git/objects/46/a9a43d64b13114e88981394a45abef93bf1778 b/Pilzlicht.git/objects/46/a9a43d64b13114e88981394a45abef93bf1778 deleted file mode 100644 index 5070f88..0000000 Binary files a/Pilzlicht.git/objects/46/a9a43d64b13114e88981394a45abef93bf1778 and /dev/null differ diff --git a/Pilzlicht.git/objects/4f/8c14b9d4cfbaae121bc65838988b4eae883efd b/Pilzlicht.git/objects/4f/8c14b9d4cfbaae121bc65838988b4eae883efd deleted file mode 100644 index 67b858e..0000000 Binary files a/Pilzlicht.git/objects/4f/8c14b9d4cfbaae121bc65838988b4eae883efd and /dev/null differ diff --git a/Pilzlicht.git/objects/52/6b75609234c2f5772e44c9c95f1de4aadf9326 b/Pilzlicht.git/objects/52/6b75609234c2f5772e44c9c95f1de4aadf9326 deleted file mode 100644 index 988875c..0000000 Binary files a/Pilzlicht.git/objects/52/6b75609234c2f5772e44c9c95f1de4aadf9326 and /dev/null differ diff --git a/Pilzlicht.git/objects/5a/36ded7a88de96ff22ae933cb2287025a0f5057 b/Pilzlicht.git/objects/5a/36ded7a88de96ff22ae933cb2287025a0f5057 deleted file mode 100644 index 227b435..0000000 Binary files a/Pilzlicht.git/objects/5a/36ded7a88de96ff22ae933cb2287025a0f5057 and /dev/null differ diff --git a/Pilzlicht.git/objects/5b/815bd5f325cb74d3297c05c16231bf2220d8c1 b/Pilzlicht.git/objects/5b/815bd5f325cb74d3297c05c16231bf2220d8c1 deleted file mode 100644 index a17cdda..0000000 Binary files a/Pilzlicht.git/objects/5b/815bd5f325cb74d3297c05c16231bf2220d8c1 and /dev/null differ diff --git a/Pilzlicht.git/objects/5b/ffc6f57ce09e21adab0bf91ca76d9ca1942689 b/Pilzlicht.git/objects/5b/ffc6f57ce09e21adab0bf91ca76d9ca1942689 deleted file mode 100644 index 8cb143f..0000000 Binary files a/Pilzlicht.git/objects/5b/ffc6f57ce09e21adab0bf91ca76d9ca1942689 and /dev/null differ diff --git a/Pilzlicht.git/objects/5e/5b323dacb14cc210585f26e6670f6ce5107a00 b/Pilzlicht.git/objects/5e/5b323dacb14cc210585f26e6670f6ce5107a00 deleted file mode 100644 index 12ca5c6..0000000 Binary files a/Pilzlicht.git/objects/5e/5b323dacb14cc210585f26e6670f6ce5107a00 and /dev/null differ diff --git a/Pilzlicht.git/objects/5f/58c30de703f37c6cfe7539742e9758a20c77e7 b/Pilzlicht.git/objects/5f/58c30de703f37c6cfe7539742e9758a20c77e7 deleted file mode 100644 index fbb9295..0000000 Binary files a/Pilzlicht.git/objects/5f/58c30de703f37c6cfe7539742e9758a20c77e7 and /dev/null differ diff --git a/Pilzlicht.git/objects/69/139420f2715b86bac1ede9183a69ff233145dc b/Pilzlicht.git/objects/69/139420f2715b86bac1ede9183a69ff233145dc deleted file mode 100644 index 2c90378..0000000 Binary files a/Pilzlicht.git/objects/69/139420f2715b86bac1ede9183a69ff233145dc and /dev/null differ diff --git a/Pilzlicht.git/objects/6a/beccca6e96bd44c3d004adc141cf8b1ba9e577 b/Pilzlicht.git/objects/6a/beccca6e96bd44c3d004adc141cf8b1ba9e577 deleted file mode 100644 index b1d4790..0000000 Binary files a/Pilzlicht.git/objects/6a/beccca6e96bd44c3d004adc141cf8b1ba9e577 and /dev/null differ diff --git a/Pilzlicht.git/objects/6f/5475acd1728b5c5f61d2c45056eca7b6d69c67 b/Pilzlicht.git/objects/6f/5475acd1728b5c5f61d2c45056eca7b6d69c67 deleted file mode 100644 index eba7090..0000000 Binary files a/Pilzlicht.git/objects/6f/5475acd1728b5c5f61d2c45056eca7b6d69c67 and /dev/null differ diff --git a/Pilzlicht.git/objects/72/018a5de8a835c4b2a938e5b027f82639e12df2 b/Pilzlicht.git/objects/72/018a5de8a835c4b2a938e5b027f82639e12df2 deleted file mode 100644 index 4a99fd9..0000000 Binary files a/Pilzlicht.git/objects/72/018a5de8a835c4b2a938e5b027f82639e12df2 and /dev/null differ diff --git a/Pilzlicht.git/objects/7a/c3f3b31ffe6e110f05a937054c36389dd43e8e b/Pilzlicht.git/objects/7a/c3f3b31ffe6e110f05a937054c36389dd43e8e deleted file mode 100644 index 8110bb9..0000000 Binary files a/Pilzlicht.git/objects/7a/c3f3b31ffe6e110f05a937054c36389dd43e8e and /dev/null differ diff --git a/Pilzlicht.git/objects/83/5a6836b385fa068fdd625685548845cda60c2f b/Pilzlicht.git/objects/83/5a6836b385fa068fdd625685548845cda60c2f deleted file mode 100644 index 5078bb0..0000000 Binary files a/Pilzlicht.git/objects/83/5a6836b385fa068fdd625685548845cda60c2f and /dev/null differ diff --git a/Pilzlicht.git/objects/84/28578e766797798d46954740c1b137ef3efbed b/Pilzlicht.git/objects/84/28578e766797798d46954740c1b137ef3efbed deleted file mode 100644 index 0a73258..0000000 Binary files a/Pilzlicht.git/objects/84/28578e766797798d46954740c1b137ef3efbed and /dev/null differ diff --git a/Pilzlicht.git/objects/86/9f6bf3d6380583a3ca48a50f488b510e288b55 b/Pilzlicht.git/objects/86/9f6bf3d6380583a3ca48a50f488b510e288b55 deleted file mode 100644 index 919a2f3..0000000 Binary files a/Pilzlicht.git/objects/86/9f6bf3d6380583a3ca48a50f488b510e288b55 and /dev/null differ diff --git a/Pilzlicht.git/objects/8b/e61fc732a872b9aeb6a2d701205f742a7aa4bb b/Pilzlicht.git/objects/8b/e61fc732a872b9aeb6a2d701205f742a7aa4bb deleted file mode 100644 index d9f5f81..0000000 --- a/Pilzlicht.git/objects/8b/e61fc732a872b9aeb6a2d701205f742a7aa4bb +++ /dev/null @@ -1,2 +0,0 @@ -xu10 P'@7҂@$u[ 7A0\ yYRl ;HJ9<*. -ؠDE0NI6EȓUl8$(!GSޓu8VP4l}TlYΐ|(1/V \ No newline at end of file diff --git a/Pilzlicht.git/objects/91/910f07fb9897e75276508766c66cf8c1e8dedc b/Pilzlicht.git/objects/91/910f07fb9897e75276508766c66cf8c1e8dedc deleted file mode 100644 index 65a645b..0000000 Binary files a/Pilzlicht.git/objects/91/910f07fb9897e75276508766c66cf8c1e8dedc and /dev/null differ diff --git a/Pilzlicht.git/objects/96/3e1c0b68b9d2a51648a0abbae27734561fca21 b/Pilzlicht.git/objects/96/3e1c0b68b9d2a51648a0abbae27734561fca21 deleted file mode 100644 index 5cc9657..0000000 Binary files a/Pilzlicht.git/objects/96/3e1c0b68b9d2a51648a0abbae27734561fca21 and /dev/null differ diff --git a/Pilzlicht.git/objects/98/0cab175f67e4549c013dec7a9e45366d11ed82 b/Pilzlicht.git/objects/98/0cab175f67e4549c013dec7a9e45366d11ed82 deleted file mode 100644 index 2bea6ad..0000000 Binary files a/Pilzlicht.git/objects/98/0cab175f67e4549c013dec7a9e45366d11ed82 and /dev/null differ diff --git a/Pilzlicht.git/objects/9b/bd195c5e3219860aba619bcac84ce24a8b303a b/Pilzlicht.git/objects/9b/bd195c5e3219860aba619bcac84ce24a8b303a deleted file mode 100644 index a5dfa04..0000000 Binary files a/Pilzlicht.git/objects/9b/bd195c5e3219860aba619bcac84ce24a8b303a and /dev/null differ diff --git a/Pilzlicht.git/objects/a2/da6f486d48ca53c5c0c3d176f51699bf08518b b/Pilzlicht.git/objects/a2/da6f486d48ca53c5c0c3d176f51699bf08518b deleted file mode 100644 index ffc0f64..0000000 Binary files a/Pilzlicht.git/objects/a2/da6f486d48ca53c5c0c3d176f51699bf08518b and /dev/null differ diff --git a/Pilzlicht.git/objects/ac/82663773411dbe8ee552d3001de9f6480042cf b/Pilzlicht.git/objects/ac/82663773411dbe8ee552d3001de9f6480042cf deleted file mode 100644 index de5d525..0000000 Binary files a/Pilzlicht.git/objects/ac/82663773411dbe8ee552d3001de9f6480042cf and /dev/null differ diff --git a/Pilzlicht.git/objects/af/eaa315a22cf33985ce4fce50b4ad97dba83123 b/Pilzlicht.git/objects/af/eaa315a22cf33985ce4fce50b4ad97dba83123 deleted file mode 100644 index 5d56fa9..0000000 --- a/Pilzlicht.git/objects/af/eaa315a22cf33985ce4fce50b4ad97dba83123 +++ /dev/null @@ -1,2 +0,0 @@ -x+)JMU05`040031Q0,)I*Hgp>c۷T>c81 {~x_PnOKJJRJ2Ŕ٤ԱMS)wT޴./=x[zrJ3d|!jC]"mmJ e -OQTݶۗV ] 2lwBٵJN\&:xY`Uʥ f[ۥli|f,{JRJ*]_2KJLQh*RE~bX~-5G+KLH-+YB]w}դlgܔ5\aY~Lyvtno,ܻ`PuI0mjmc1Xzĺ)!X$ \ No newline at end of file diff --git a/Pilzlicht.git/objects/b0/73cd0ec0a1650050b4fb20dc6568f55b81ef2c b/Pilzlicht.git/objects/b0/73cd0ec0a1650050b4fb20dc6568f55b81ef2c deleted file mode 100644 index 26c6d27..0000000 Binary files a/Pilzlicht.git/objects/b0/73cd0ec0a1650050b4fb20dc6568f55b81ef2c and /dev/null differ diff --git a/Pilzlicht.git/objects/b1/d3abfa449830219e5e0cc69ee1035ed48ad67f b/Pilzlicht.git/objects/b1/d3abfa449830219e5e0cc69ee1035ed48ad67f deleted file mode 100644 index 80317c8..0000000 Binary files a/Pilzlicht.git/objects/b1/d3abfa449830219e5e0cc69ee1035ed48ad67f and /dev/null differ diff --git a/Pilzlicht.git/objects/b6/90bf2b622072f4dd84d9ab6aac4ba948197df2 b/Pilzlicht.git/objects/b6/90bf2b622072f4dd84d9ab6aac4ba948197df2 deleted file mode 100644 index ca3b89e..0000000 Binary files a/Pilzlicht.git/objects/b6/90bf2b622072f4dd84d9ab6aac4ba948197df2 and /dev/null differ diff --git a/Pilzlicht.git/objects/bb/f96e2f852f28c13eb88b35b78171bda0aff8ff b/Pilzlicht.git/objects/bb/f96e2f852f28c13eb88b35b78171bda0aff8ff deleted file mode 100644 index 6c1a091..0000000 Binary files a/Pilzlicht.git/objects/bb/f96e2f852f28c13eb88b35b78171bda0aff8ff and /dev/null differ diff --git a/Pilzlicht.git/objects/ce/b28586043248a860ab9d3e18ae7e776094239f b/Pilzlicht.git/objects/ce/b28586043248a860ab9d3e18ae7e776094239f deleted file mode 100644 index 7b592f4..0000000 Binary files a/Pilzlicht.git/objects/ce/b28586043248a860ab9d3e18ae7e776094239f and /dev/null differ diff --git a/Pilzlicht.git/objects/d3/3eca7dd076d6d8229e426ec95c5cd5d617bdfe b/Pilzlicht.git/objects/d3/3eca7dd076d6d8229e426ec95c5cd5d617bdfe deleted file mode 100644 index 8d81158..0000000 Binary files a/Pilzlicht.git/objects/d3/3eca7dd076d6d8229e426ec95c5cd5d617bdfe and /dev/null differ diff --git a/Pilzlicht.git/objects/da/d96b6ad7ac365dc13f83ce0cd03a85bde49a5a b/Pilzlicht.git/objects/da/d96b6ad7ac365dc13f83ce0cd03a85bde49a5a deleted file mode 100644 index 4b60838..0000000 Binary files a/Pilzlicht.git/objects/da/d96b6ad7ac365dc13f83ce0cd03a85bde49a5a and /dev/null differ diff --git a/Pilzlicht.git/objects/dd/06e7e658a109badd4cee7c64b701b26c6a99fc b/Pilzlicht.git/objects/dd/06e7e658a109badd4cee7c64b701b26c6a99fc deleted file mode 100644 index b9bea1f..0000000 Binary files a/Pilzlicht.git/objects/dd/06e7e658a109badd4cee7c64b701b26c6a99fc and /dev/null differ diff --git a/Pilzlicht.git/objects/e0/c9cd687cafa7aba346ff2f747b4242e10c085d b/Pilzlicht.git/objects/e0/c9cd687cafa7aba346ff2f747b4242e10c085d deleted file mode 100644 index dabab8f..0000000 Binary files a/Pilzlicht.git/objects/e0/c9cd687cafa7aba346ff2f747b4242e10c085d and /dev/null differ diff --git a/Pilzlicht.git/objects/e3/7e67fb48fe5ce0887d635cd17539463ed04e81 b/Pilzlicht.git/objects/e3/7e67fb48fe5ce0887d635cd17539463ed04e81 deleted file mode 100644 index 8922bd3..0000000 Binary files a/Pilzlicht.git/objects/e3/7e67fb48fe5ce0887d635cd17539463ed04e81 and /dev/null differ diff --git a/Pilzlicht.git/objects/ec/bdf58f2fe1a8a9bb79a38a5ce9abed3bfdfbf6 b/Pilzlicht.git/objects/ec/bdf58f2fe1a8a9bb79a38a5ce9abed3bfdfbf6 deleted file mode 100644 index 821ce3a..0000000 Binary files a/Pilzlicht.git/objects/ec/bdf58f2fe1a8a9bb79a38a5ce9abed3bfdfbf6 and /dev/null differ diff --git a/Pilzlicht.git/objects/f3/e02c3b26db84d4bf00f5416f915ea5dd9f9bb7 b/Pilzlicht.git/objects/f3/e02c3b26db84d4bf00f5416f915ea5dd9f9bb7 deleted file mode 100644 index 906d9ba..0000000 Binary files a/Pilzlicht.git/objects/f3/e02c3b26db84d4bf00f5416f915ea5dd9f9bb7 and /dev/null differ diff --git a/Pilzlicht.git/objects/f7/8a21acbbae20f84bd7e52fc11eab4acf7cf2a4 b/Pilzlicht.git/objects/f7/8a21acbbae20f84bd7e52fc11eab4acf7cf2a4 deleted file mode 100644 index 3695b0f..0000000 Binary files a/Pilzlicht.git/objects/f7/8a21acbbae20f84bd7e52fc11eab4acf7cf2a4 and /dev/null differ diff --git a/Pilzlicht.git/objects/f8/56a94fc780c0ff419e941a1687ae2e27a2913d b/Pilzlicht.git/objects/f8/56a94fc780c0ff419e941a1687ae2e27a2913d deleted file mode 100644 index cb3580c..0000000 Binary files a/Pilzlicht.git/objects/f8/56a94fc780c0ff419e941a1687ae2e27a2913d and /dev/null differ diff --git a/Pilzlicht.git/objects/fc/0e510f20a0320f0afd12b1fe30334b5e64262c b/Pilzlicht.git/objects/fc/0e510f20a0320f0afd12b1fe30334b5e64262c deleted file mode 100644 index 0c90760..0000000 Binary files a/Pilzlicht.git/objects/fc/0e510f20a0320f0afd12b1fe30334b5e64262c and /dev/null differ diff --git a/Pilzlicht.git/objects/ff/736e75a8897c89037106c3db576180d106a6a1 b/Pilzlicht.git/objects/ff/736e75a8897c89037106c3db576180d106a6a1 deleted file mode 100644 index 1a22cbd..0000000 Binary files a/Pilzlicht.git/objects/ff/736e75a8897c89037106c3db576180d106a6a1 and /dev/null differ diff --git a/Pilzlicht.git/objects/ff/a9e817034a8532b81b0720786697a466adaf3d b/Pilzlicht.git/objects/ff/a9e817034a8532b81b0720786697a466adaf3d deleted file mode 100644 index b415e73..0000000 Binary files a/Pilzlicht.git/objects/ff/a9e817034a8532b81b0720786697a466adaf3d and /dev/null differ diff --git a/Pilzlicht.git/packed-refs b/Pilzlicht.git/packed-refs deleted file mode 100644 index e3ccab6..0000000 --- a/Pilzlicht.git/packed-refs +++ /dev/null @@ -1,2 +0,0 @@ -# pack-refs with: peeled fully-peeled sorted -136f8371d794ee26206dce6693982ad7e8cb25b6 refs/heads/master