This commit is contained in:
bonzei 2026-06-17 23:26:21 +02:00
parent f63587b793
commit 16035e2754
3336 changed files with 200451 additions and 0 deletions

1
.git.bak/COMMIT_EDITMSG Normal file
View file

@ -0,0 +1 @@
Auto-backup: 2026-06-05 00:33

View file

@ -0,0 +1 @@
fuck alles gelöscht

View file

@ -0,0 +1 @@
Auto-backup: 2026-06-05 00:33

0
.git.bak/FETCH_HEAD Normal file
View file

View file

@ -0,0 +1 @@
875350d7b1a39d148ada93ef2877b274d510cfd5 branch 'main' of https://github.com/superschnups/Emy

1
.git.bak/HEAD Normal file
View file

@ -0,0 +1 @@
ref: refs/heads/main

View file

@ -0,0 +1 @@
ref: refs/heads/main

1
.git.bak/ORIG_HEAD Normal file
View file

@ -0,0 +1 @@
ea3bd71d83d43471f59027d994c3e796264a2cc4

1
.git.bak/ORIG_HEAD (1) Normal file
View file

@ -0,0 +1 @@
e2d5f4feb38f5fc883059cc11eecd24c9bafb530

View file

@ -0,0 +1 @@
875350d7b1a39d148ada93ef2877b274d510cfd5

16
.git.bak/config Normal file
View file

@ -0,0 +1,16 @@
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = https://github.com/superschnups/bin.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "main"]
remote = origin
vscode-merge-base = origin/main
merge = refs/heads/main
[lfs]
repositoryformatversion = 0

16
.git.bak/config (1) Normal file
View file

@ -0,0 +1,16 @@
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = https://github.com/superschnups/bin.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "main"]
remote = origin
merge = refs/heads/main
vscode-merge-base = origin/main
[lfs]
repositoryformatversion = 0

View file

@ -0,0 +1,16 @@
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = https://github.com/superschnups/Emy.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "main"]
remote = origin
merge = refs/heads/main
vscode-merge-base = origin/main
[lfs]
repositoryformatversion = 0

View file

@ -0,0 +1 @@
{"version":4,"git_revision":22}

1
.git.bak/description Normal file
View file

@ -0,0 +1 @@
Unnamed repository; edit this file 'description' to name the repository.

View file

@ -0,0 +1 @@
Unnamed repository; edit this file 'description' to name the repository.

Binary file not shown.

3
.git.bak/gk/config Normal file
View file

@ -0,0 +1,3 @@
[branch "main"]
gk-merge-base = origin/main
gk-last-accessed = 2026-03-13T03:40:22.332Z

View file

@ -0,0 +1,15 @@
#!/bin/sh
#
# An example hook script to check the commit log message taken by
# applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit. The hook is
# allowed to edit the commit message file.
#
# To enable this hook, rename this file to "applypatch-msg".
. git-sh-setup
commitmsg="$(git rev-parse --git-path hooks/commit-msg)"
test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"}
:

View file

@ -0,0 +1,15 @@
#!/bin/sh
#
# An example hook script to check the commit log message taken by
# applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit. The hook is
# allowed to edit the commit message file.
#
# To enable this hook, rename this file to "applypatch-msg".
. git-sh-setup
commitmsg="$(git rev-parse --git-path hooks/commit-msg)"
test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"}
:

View file

@ -0,0 +1,24 @@
#!/bin/sh
#
# An example hook script to check the commit log message.
# Called by "git commit" with one argument, the name of the file
# that has the commit message. The hook should exit with non-zero
# status after issuing an appropriate message if it wants to stop the
# commit. The hook is allowed to edit the commit message file.
#
# To enable this hook, rename this file to "commit-msg".
# Uncomment the below to add a Signed-off-by line to the message.
# Doing this in a hook is a bad idea in general, but the prepare-commit-msg
# hook is more suited to it.
#
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
# This example catches duplicate Signed-off-by lines.
test "" = "$(grep '^Signed-off-by: ' "$1" |
sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
echo >&2 Duplicate Signed-off-by lines.
exit 1
}

View file

@ -0,0 +1,24 @@
#!/bin/sh
#
# An example hook script to check the commit log message.
# Called by "git commit" with one argument, the name of the file
# that has the commit message. The hook should exit with non-zero
# status after issuing an appropriate message if it wants to stop the
# commit. The hook is allowed to edit the commit message file.
#
# To enable this hook, rename this file to "commit-msg".
# Uncomment the below to add a Signed-off-by line to the message.
# Doing this in a hook is a bad idea in general, but the prepare-commit-msg
# hook is more suited to it.
#
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
# This example catches duplicate Signed-off-by lines.
test "" = "$(grep '^Signed-off-by: ' "$1" |
sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
echo >&2 Duplicate Signed-off-by lines.
exit 1
}

View file

@ -0,0 +1,174 @@
#!/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 2) and last update token
# formatted as a string and outputs to stdout a new update token and
# all files that have been modified since the update token. 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, $last_update_token) = @ARGV;
# Uncomment for debugging
# print STDERR "$0 $version $last_update_token\n";
# Check the hook interface version
if ($version ne 2) {
die "Unsupported query-fsmonitor hook version '$version'.\n" .
"Falling back to scanning...\n";
}
my $git_work_tree = get_working_dir();
my $retry = 1;
my $json_pkg;
eval {
require JSON::XS;
$json_pkg = "JSON::XS";
1;
} or do {
require JSON::PP;
$json_pkg = "JSON::PP";
};
launch_watchman();
sub launch_watchman {
my $o = watchman_query();
if (is_work_tree_watched($o)) {
output_result($o->{clock}, @{$o->{files}});
}
}
sub output_result {
my ($clockid, @files) = @_;
# Uncomment for debugging watchman output
# open (my $fh, ">", ".git/watchman-output.out");
# binmode $fh, ":utf8";
# print $fh "$clockid\n@files\n";
# close $fh;
binmode STDOUT, ":utf8";
print $clockid;
print "\0";
local $, = "\0";
print @files;
}
sub watchman_clock {
my $response = qx/watchman clock "$git_work_tree"/;
die "Failed to get clock id on '$git_work_tree'.\n" .
"Falling back to scanning...\n" if $? != 0;
return $json_pkg->new->utf8->decode($response);
}
sub watchman_query {
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 $last_update_token but not from the .git folder.
#
# To accomplish this, we're using the "since" generator to use the
# recency index to select candidate nodes and "fields" to limit the
# output to file names only. Then we're using the "expression" term to
# further constrain the results.
my $last_update_line = "";
if (substr($last_update_token, 0, 1) eq "c") {
$last_update_token = "\"$last_update_token\"";
$last_update_line = qq[\n"since": $last_update_token,];
}
my $query = <<" END";
["query", "$git_work_tree", {$last_update_line
"fields": ["name"],
"expression": ["not", ["dirname", ".git"]]
}]
END
# Uncomment for debugging the watchman query
# open (my $fh, ">", ".git/watchman-query.json");
# print $fh $query;
# close $fh;
print CHLD_IN $query;
close CHLD_IN;
my $response = do {local $/; <CHLD_OUT>};
# Uncomment for debugging the watch response
# open ($fh, ">", ".git/watchman-response.json");
# print $fh $response;
# close $fh;
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 =~ /^\{/;
return $json_pkg->new->utf8->decode($response);
}
sub is_work_tree_watched {
my ($output) = @_;
my $error = $output->{error};
if ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) {
$retry--;
my $response = qx/watchman watch "$git_work_tree"/;
die "Failed to make watchman watch '$git_work_tree'.\n" .
"Falling back to scanning...\n" if $? != 0;
$output = $json_pkg->new->utf8->decode($response);
$error = $output->{error};
die "Watchman: $error.\n" .
"Falling back to scanning...\n" if $error;
# Uncomment for debugging watchman output
# open (my $fh, ">", ".git/watchman-output.out");
# close $fh;
# 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.
my $o = watchman_clock();
$error = $output->{error};
die "Watchman: $error.\n" .
"Falling back to scanning...\n" if $error;
output_result($o->{clock}, ("/"));
$last_update_token = $o->{clock};
eval { launch_watchman() };
return 0;
}
die "Watchman: $error.\n" .
"Falling back to scanning...\n" if $error;
return 1;
}
sub get_working_dir {
my $working_dir;
if ($^O =~ 'msys' || $^O =~ 'cygwin') {
$working_dir = Win32::GetCwd();
$working_dir =~ tr/\\/\//;
} else {
require Cwd;
$working_dir = Cwd::cwd();
}
return $working_dir;
}

View file

@ -0,0 +1,174 @@
#!/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 2) and last update token
# formatted as a string and outputs to stdout a new update token and
# all files that have been modified since the update token. 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, $last_update_token) = @ARGV;
# Uncomment for debugging
# print STDERR "$0 $version $last_update_token\n";
# Check the hook interface version
if ($version ne 2) {
die "Unsupported query-fsmonitor hook version '$version'.\n" .
"Falling back to scanning...\n";
}
my $git_work_tree = get_working_dir();
my $retry = 1;
my $json_pkg;
eval {
require JSON::XS;
$json_pkg = "JSON::XS";
1;
} or do {
require JSON::PP;
$json_pkg = "JSON::PP";
};
launch_watchman();
sub launch_watchman {
my $o = watchman_query();
if (is_work_tree_watched($o)) {
output_result($o->{clock}, @{$o->{files}});
}
}
sub output_result {
my ($clockid, @files) = @_;
# Uncomment for debugging watchman output
# open (my $fh, ">", ".git/watchman-output.out");
# binmode $fh, ":utf8";
# print $fh "$clockid\n@files\n";
# close $fh;
binmode STDOUT, ":utf8";
print $clockid;
print "\0";
local $, = "\0";
print @files;
}
sub watchman_clock {
my $response = qx/watchman clock "$git_work_tree"/;
die "Failed to get clock id on '$git_work_tree'.\n" .
"Falling back to scanning...\n" if $? != 0;
return $json_pkg->new->utf8->decode($response);
}
sub watchman_query {
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 $last_update_token but not from the .git folder.
#
# To accomplish this, we're using the "since" generator to use the
# recency index to select candidate nodes and "fields" to limit the
# output to file names only. Then we're using the "expression" term to
# further constrain the results.
my $last_update_line = "";
if (substr($last_update_token, 0, 1) eq "c") {
$last_update_token = "\"$last_update_token\"";
$last_update_line = qq[\n"since": $last_update_token,];
}
my $query = <<" END";
["query", "$git_work_tree", {$last_update_line
"fields": ["name"],
"expression": ["not", ["dirname", ".git"]]
}]
END
# Uncomment for debugging the watchman query
# open (my $fh, ">", ".git/watchman-query.json");
# print $fh $query;
# close $fh;
print CHLD_IN $query;
close CHLD_IN;
my $response = do {local $/; <CHLD_OUT>};
# Uncomment for debugging the watch response
# open ($fh, ">", ".git/watchman-response.json");
# print $fh $response;
# close $fh;
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 =~ /^\{/;
return $json_pkg->new->utf8->decode($response);
}
sub is_work_tree_watched {
my ($output) = @_;
my $error = $output->{error};
if ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) {
$retry--;
my $response = qx/watchman watch "$git_work_tree"/;
die "Failed to make watchman watch '$git_work_tree'.\n" .
"Falling back to scanning...\n" if $? != 0;
$output = $json_pkg->new->utf8->decode($response);
$error = $output->{error};
die "Watchman: $error.\n" .
"Falling back to scanning...\n" if $error;
# Uncomment for debugging watchman output
# open (my $fh, ">", ".git/watchman-output.out");
# close $fh;
# 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.
my $o = watchman_clock();
$error = $output->{error};
die "Watchman: $error.\n" .
"Falling back to scanning...\n" if $error;
output_result($o->{clock}, ("/"));
$last_update_token = $o->{clock};
eval { launch_watchman() };
return 0;
}
die "Watchman: $error.\n" .
"Falling back to scanning...\n" if $error;
return 1;
}
sub get_working_dir {
my $working_dir;
if ($^O =~ 'msys' || $^O =~ 'cygwin') {
$working_dir = Win32::GetCwd();
$working_dir =~ tr/\\/\//;
} else {
require Cwd;
$working_dir = Cwd::cwd();
}
return $working_dir;
}

View file

@ -0,0 +1,8 @@
#!/bin/sh
#
# An example hook script to prepare a packed repository for use over
# dumb transports.
#
# To enable this hook, rename this file to "post-update".
exec git update-server-info

View file

@ -0,0 +1,8 @@
#!/bin/sh
#
# An example hook script to prepare a packed repository for use over
# dumb transports.
#
# To enable this hook, rename this file to "post-update".
exec git update-server-info

View file

@ -0,0 +1,14 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed
# by applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-applypatch".
. git-sh-setup
precommit="$(git rev-parse --git-path hooks/pre-commit)"
test -x "$precommit" && exec "$precommit" ${1+"$@"}
:

View file

@ -0,0 +1,14 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed
# by applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-applypatch".
. git-sh-setup
precommit="$(git rev-parse --git-path hooks/pre-commit)"
test -x "$precommit" && exec "$precommit" ${1+"$@"}
:

View file

@ -0,0 +1,49 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by "git commit" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-commit".
if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=$(git hash-object -t tree /dev/null)
fi
# If you want to allow non-ASCII filenames set this variable to true.
allownonascii=$(git config --type=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-index --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 --

View file

@ -0,0 +1,49 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by "git commit" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-commit".
if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=$(git hash-object -t tree /dev/null)
fi
# If you want to allow non-ASCII filenames set this variable to true.
allownonascii=$(git config --type=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-index --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 --

View file

@ -0,0 +1,13 @@
#!/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"
:

View file

@ -0,0 +1,13 @@
#!/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"
:

View file

@ -0,0 +1,53 @@
#!/bin/sh
# An example hook script to verify what is about to be pushed. Called by "git
# push" after it has checked the remote status, but before anything has been
# pushed. If this script exits with a non-zero status nothing will be pushed.
#
# This hook is called with the following parameters:
#
# $1 -- Name of the remote to which the push is being done
# $2 -- URL to which the push is being done
#
# If pushing without using a named remote those arguments will be equal.
#
# Information about the commits which are being pushed is supplied as lines to
# the standard input in the form:
#
# <local ref> <local oid> <remote ref> <remote oid>
#
# This sample shows how to prevent push of commits where the log message starts
# with "WIP" (work in progress).
remote="$1"
url="$2"
zero=$(git hash-object --stdin </dev/null | tr '[0-9a-f]' '0')
while read local_ref local_oid remote_ref remote_oid
do
if test "$local_oid" = "$zero"
then
# Handle delete
:
else
if test "$remote_oid" = "$zero"
then
# New branch, examine all commits
range="$local_oid"
else
# Update to existing branch, examine new commits
range="$remote_oid..$local_oid"
fi
# Check for WIP commit
commit=$(git rev-list -n 1 --grep '^WIP' "$range")
if test -n "$commit"
then
echo >&2 "Found WIP commit in $local_ref, not pushing"
exit 1
fi
fi
done
exit 0

View file

@ -0,0 +1,53 @@
#!/bin/sh
# An example hook script to verify what is about to be pushed. Called by "git
# push" after it has checked the remote status, but before anything has been
# pushed. If this script exits with a non-zero status nothing will be pushed.
#
# This hook is called with the following parameters:
#
# $1 -- Name of the remote to which the push is being done
# $2 -- URL to which the push is being done
#
# If pushing without using a named remote those arguments will be equal.
#
# Information about the commits which are being pushed is supplied as lines to
# the standard input in the form:
#
# <local ref> <local oid> <remote ref> <remote oid>
#
# This sample shows how to prevent push of commits where the log message starts
# with "WIP" (work in progress).
remote="$1"
url="$2"
zero=$(git hash-object --stdin </dev/null | tr '[0-9a-f]' '0')
while read local_ref local_oid remote_ref remote_oid
do
if test "$local_oid" = "$zero"
then
# Handle delete
:
else
if test "$remote_oid" = "$zero"
then
# New branch, examine all commits
range="$local_oid"
else
# Update to existing branch, examine new commits
range="$remote_oid..$local_oid"
fi
# Check for WIP commit
commit=$(git rev-list -n 1 --grep '^WIP' "$range")
if test -n "$commit"
then
echo >&2 "Found WIP commit in $local_ref, not pushing"
exit 1
fi
fi
done
exit 0

View file

@ -0,0 +1,169 @@
#!/bin/sh
#
# Copyright (c) 2006, 2008 Junio C Hamano
#
# The "pre-rebase" hook is run just before "git rebase" starts doing
# its job, and can prevent the command from running by exiting with
# non-zero status.
#
# The hook is called with the following parameters:
#
# $1 -- the upstream the series was forked from.
# $2 -- the branch being rebased (or empty when rebasing the current branch).
#
# This sample shows how to prevent topic branches that are already
# merged to 'next' branch from getting rebased, because allowing it
# would result in rebasing already published history.
publish=next
basebranch="$1"
if test "$#" = 2
then
topic="refs/heads/$2"
else
topic=`git symbolic-ref HEAD` ||
exit 0 ;# we do not interrupt rebasing detached HEAD
fi
case "$topic" in
refs/heads/??/*)
;;
*)
exit 0 ;# we do not interrupt others.
;;
esac
# Now we are dealing with a topic branch being rebased
# on top of master. Is it OK to rebase it?
# Does the topic really exist?
git show-ref -q "$topic" || {
echo >&2 "No such branch $topic"
exit 1
}
# Is topic fully merged to master?
not_in_master=`git rev-list --pretty=oneline ^master "$topic"`
if test -z "$not_in_master"
then
echo >&2 "$topic is fully merged to master; better remove it."
exit 1 ;# we could allow it, but there is no point.
fi
# Is topic ever merged to next? If so you should not be rebasing it.
only_next_1=`git rev-list ^master "^$topic" ${publish} | sort`
only_next_2=`git rev-list ^master ${publish} | sort`
if test "$only_next_1" = "$only_next_2"
then
not_in_topic=`git rev-list "^$topic" master`
if test -z "$not_in_topic"
then
echo >&2 "$topic is already up to date with master"
exit 1 ;# we could allow it, but there is no point.
else
exit 0
fi
else
not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"`
/usr/bin/perl -e '
my $topic = $ARGV[0];
my $msg = "* $topic has commits already merged to public branch:\n";
my (%not_in_next) = map {
/^([0-9a-f]+) /;
($1 => 1);
} split(/\n/, $ARGV[1]);
for my $elem (map {
/^([0-9a-f]+) (.*)$/;
[$1 => $2];
} split(/\n/, $ARGV[2])) {
if (!exists $not_in_next{$elem->[0]}) {
if ($msg) {
print STDERR $msg;
undef $msg;
}
print STDERR " $elem->[1]\n";
}
}
' "$topic" "$not_in_next" "$not_in_master"
exit 1
fi
<<\DOC_END
This sample hook safeguards topic branches that have been
published from being rewound.
The workflow assumed here is:
* Once a topic branch forks from "master", "master" is never
merged into it again (either directly or indirectly).
* Once a topic branch is fully cooked and merged into "master",
it is deleted. If you need to build on top of it to correct
earlier mistakes, a new topic branch is created by forking at
the tip of the "master". This is not strictly necessary, but
it makes it easier to keep your history simple.
* Whenever you need to test or publish your changes to topic
branches, merge them into "next" branch.
The script, being an example, hardcodes the publish branch name
to be "next", but it is trivial to make it configurable via
$GIT_DIR/config mechanism.
With this workflow, you would want to know:
(1) ... if a topic branch has ever been merged to "next". Young
topic branches can have stupid mistakes you would rather
clean up before publishing, and things that have not been
merged into other branches can be easily rebased without
affecting other people. But once it is published, you would
not want to rewind it.
(2) ... if a topic branch has been fully merged to "master".
Then you can delete it. More importantly, you should not
build on top of it -- other people may already want to
change things related to the topic as patches against your
"master", so if you need further changes, it is better to
fork the topic (perhaps with the same name) afresh from the
tip of "master".
Let's look at this example:
o---o---o---o---o---o---o---o---o---o "next"
/ / / /
/ a---a---b A / /
/ / / /
/ / c---c---c---c B /
/ / / \ /
/ / / b---b C \ /
/ / / / \ /
---o---o---o---o---o---o---o---o---o---o---o "master"
A, B and C are topic branches.
* A has one fix since it was merged up to "next".
* B has finished. It has been fully merged up to "master" and "next",
and is ready to be deleted.
* C has not merged to "next" at all.
We would want to allow C to be rebased, refuse A, and encourage
B to be deleted.
To compute (1):
git rev-list ^master ^topic next
git rev-list ^master next
if these match, topic has not merged in next at all.
To compute (2):
git rev-list master..topic
if this is empty, it is fully merged to "master".
DOC_END

View file

@ -0,0 +1,169 @@
#!/bin/sh
#
# Copyright (c) 2006, 2008 Junio C Hamano
#
# The "pre-rebase" hook is run just before "git rebase" starts doing
# its job, and can prevent the command from running by exiting with
# non-zero status.
#
# The hook is called with the following parameters:
#
# $1 -- the upstream the series was forked from.
# $2 -- the branch being rebased (or empty when rebasing the current branch).
#
# This sample shows how to prevent topic branches that are already
# merged to 'next' branch from getting rebased, because allowing it
# would result in rebasing already published history.
publish=next
basebranch="$1"
if test "$#" = 2
then
topic="refs/heads/$2"
else
topic=`git symbolic-ref HEAD` ||
exit 0 ;# we do not interrupt rebasing detached HEAD
fi
case "$topic" in
refs/heads/??/*)
;;
*)
exit 0 ;# we do not interrupt others.
;;
esac
# Now we are dealing with a topic branch being rebased
# on top of master. Is it OK to rebase it?
# Does the topic really exist?
git show-ref -q "$topic" || {
echo >&2 "No such branch $topic"
exit 1
}
# Is topic fully merged to master?
not_in_master=`git rev-list --pretty=oneline ^master "$topic"`
if test -z "$not_in_master"
then
echo >&2 "$topic is fully merged to master; better remove it."
exit 1 ;# we could allow it, but there is no point.
fi
# Is topic ever merged to next? If so you should not be rebasing it.
only_next_1=`git rev-list ^master "^$topic" ${publish} | sort`
only_next_2=`git rev-list ^master ${publish} | sort`
if test "$only_next_1" = "$only_next_2"
then
not_in_topic=`git rev-list "^$topic" master`
if test -z "$not_in_topic"
then
echo >&2 "$topic is already up to date with master"
exit 1 ;# we could allow it, but there is no point.
else
exit 0
fi
else
not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"`
/usr/bin/perl -e '
my $topic = $ARGV[0];
my $msg = "* $topic has commits already merged to public branch:\n";
my (%not_in_next) = map {
/^([0-9a-f]+) /;
($1 => 1);
} split(/\n/, $ARGV[1]);
for my $elem (map {
/^([0-9a-f]+) (.*)$/;
[$1 => $2];
} split(/\n/, $ARGV[2])) {
if (!exists $not_in_next{$elem->[0]}) {
if ($msg) {
print STDERR $msg;
undef $msg;
}
print STDERR " $elem->[1]\n";
}
}
' "$topic" "$not_in_next" "$not_in_master"
exit 1
fi
<<\DOC_END
This sample hook safeguards topic branches that have been
published from being rewound.
The workflow assumed here is:
* Once a topic branch forks from "master", "master" is never
merged into it again (either directly or indirectly).
* Once a topic branch is fully cooked and merged into "master",
it is deleted. If you need to build on top of it to correct
earlier mistakes, a new topic branch is created by forking at
the tip of the "master". This is not strictly necessary, but
it makes it easier to keep your history simple.
* Whenever you need to test or publish your changes to topic
branches, merge them into "next" branch.
The script, being an example, hardcodes the publish branch name
to be "next", but it is trivial to make it configurable via
$GIT_DIR/config mechanism.
With this workflow, you would want to know:
(1) ... if a topic branch has ever been merged to "next". Young
topic branches can have stupid mistakes you would rather
clean up before publishing, and things that have not been
merged into other branches can be easily rebased without
affecting other people. But once it is published, you would
not want to rewind it.
(2) ... if a topic branch has been fully merged to "master".
Then you can delete it. More importantly, you should not
build on top of it -- other people may already want to
change things related to the topic as patches against your
"master", so if you need further changes, it is better to
fork the topic (perhaps with the same name) afresh from the
tip of "master".
Let's look at this example:
o---o---o---o---o---o---o---o---o---o "next"
/ / / /
/ a---a---b A / /
/ / / /
/ / c---c---c---c B /
/ / / \ /
/ / / b---b C \ /
/ / / / \ /
---o---o---o---o---o---o---o---o---o---o---o "master"
A, B and C are topic branches.
* A has one fix since it was merged up to "next".
* B has finished. It has been fully merged up to "master" and "next",
and is ready to be deleted.
* C has not merged to "next" at all.
We would want to allow C to be rebased, refuse A, and encourage
B to be deleted.
To compute (1):
git rev-list ^master ^topic next
git rev-list ^master next
if these match, topic has not merged in next at all.
To compute (2):
git rev-list master..topic
if this is empty, it is fully merged to "master".
DOC_END

View file

@ -0,0 +1,24 @@
#!/bin/sh
#
# An example hook script to make use of push options.
# The example simply echoes all push options that start with 'echoback='
# and rejects all pushes when the "reject" push option is used.
#
# To enable this hook, rename this file to "pre-receive".
if test -n "$GIT_PUSH_OPTION_COUNT"
then
i=0
while test "$i" -lt "$GIT_PUSH_OPTION_COUNT"
do
eval "value=\$GIT_PUSH_OPTION_$i"
case "$value" in
echoback=*)
echo "echo from the pre-receive-hook: ${value#*=}" >&2
;;
reject)
exit 1
esac
i=$((i + 1))
done
fi

View file

@ -0,0 +1,24 @@
#!/bin/sh
#
# An example hook script to make use of push options.
# The example simply echoes all push options that start with 'echoback='
# and rejects all pushes when the "reject" push option is used.
#
# To enable this hook, rename this file to "pre-receive".
if test -n "$GIT_PUSH_OPTION_COUNT"
then
i=0
while test "$i" -lt "$GIT_PUSH_OPTION_COUNT"
do
eval "value=\$GIT_PUSH_OPTION_$i"
case "$value" in
echoback=*)
echo "echo from the pre-receive-hook: ${value#*=}" >&2
;;
reject)
exit 1
esac
i=$((i + 1))
done
fi

View file

@ -0,0 +1,42 @@
#!/bin/sh
#
# An example hook script to prepare the commit log message.
# Called by "git commit" with the name of the file that has the
# commit message, followed by the description of the commit
# message's source. The hook's purpose is to edit the commit
# message file. If the hook fails with a non-zero status,
# the commit is aborted.
#
# To enable this hook, rename this file to "prepare-commit-msg".
# This hook includes three examples. The first one removes the
# "# Please enter the commit message..." help message.
#
# The second includes the output of "git diff --name-status -r"
# into the message, just before the "git status" output. It is
# commented because it doesn't cope with --amend or with squashed
# commits.
#
# The third example adds a Signed-off-by line to the message, that can
# still be edited. This is rarely a good idea.
COMMIT_MSG_FILE=$1
COMMIT_SOURCE=$2
SHA1=$3
/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE"
# case "$COMMIT_SOURCE,$SHA1" in
# ,|template,)
# /usr/bin/perl -i.bak -pe '
# print "\n" . `git diff --cached --name-status -r`
# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;;
# *) ;;
# esac
# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE"
# if test -z "$COMMIT_SOURCE"
# then
# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE"
# fi

View file

@ -0,0 +1,42 @@
#!/bin/sh
#
# An example hook script to prepare the commit log message.
# Called by "git commit" with the name of the file that has the
# commit message, followed by the description of the commit
# message's source. The hook's purpose is to edit the commit
# message file. If the hook fails with a non-zero status,
# the commit is aborted.
#
# To enable this hook, rename this file to "prepare-commit-msg".
# This hook includes three examples. The first one removes the
# "# Please enter the commit message..." help message.
#
# The second includes the output of "git diff --name-status -r"
# into the message, just before the "git status" output. It is
# commented because it doesn't cope with --amend or with squashed
# commits.
#
# The third example adds a Signed-off-by line to the message, that can
# still be edited. This is rarely a good idea.
COMMIT_MSG_FILE=$1
COMMIT_SOURCE=$2
SHA1=$3
/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE"
# case "$COMMIT_SOURCE,$SHA1" in
# ,|template,)
# /usr/bin/perl -i.bak -pe '
# print "\n" . `git diff --cached --name-status -r`
# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;;
# *) ;;
# esac
# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE"
# if test -z "$COMMIT_SOURCE"
# then
# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE"
# fi

View file

@ -0,0 +1,78 @@
#!/bin/sh
# An example hook script to update a checked-out tree on a git push.
#
# This hook is invoked by git-receive-pack(1) when it reacts to git
# push and updates reference(s) in its repository, and when the push
# tries to update the branch that is currently checked out and the
# receive.denyCurrentBranch configuration variable is set to
# updateInstead.
#
# By default, such a push is refused if the working tree and the index
# of the remote repository has any difference from the currently
# checked out commit; when both the working tree and the index match
# the current commit, they are updated to match the newly pushed tip
# of the branch. This hook is to be used to override the default
# behaviour; however the code below reimplements the default behaviour
# as a starting point for convenient modification.
#
# The hook receives the commit with which the tip of the current
# branch is going to be updated:
commit=$1
# It can exit with a non-zero status to refuse the push (when it does
# so, it must not modify the index or the working tree).
die () {
echo >&2 "$*"
exit 1
}
# Or it can make any necessary changes to the working tree and to the
# index to bring them to the desired state when the tip of the current
# branch is updated to the new commit, and exit with a zero status.
#
# For example, the hook can simply run git read-tree -u -m HEAD "$1"
# in order to emulate git fetch that is run in the reverse direction
# with git push, as the two-tree form of git read-tree -u -m is
# essentially the same as git switch or git checkout that switches
# branches while keeping the local changes in the working tree that do
# not interfere with the difference between the branches.
# The below is a more-or-less exact translation to shell of the C code
# for the default behaviour for git's push-to-checkout hook defined in
# the push_to_deploy() function in builtin/receive-pack.c.
#
# Note that the hook will be executed from the repository directory,
# not from the working tree, so if you want to perform operations on
# the working tree, you will have to adapt your code accordingly, e.g.
# by adding "cd .." or using relative paths.
if ! git update-index -q --ignore-submodules --refresh
then
die "Up-to-date check failed"
fi
if ! git diff-files --quiet --ignore-submodules --
then
die "Working directory has unstaged changes"
fi
# This is a rough translation of:
#
# head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX
if git cat-file -e HEAD 2>/dev/null
then
head=HEAD
else
head=$(git hash-object -t tree --stdin </dev/null)
fi
if ! git diff-index --quiet --cached --ignore-submodules $head --
then
die "Working directory has staged changes"
fi
if ! git read-tree -u -m "$commit"
then
die "Could not update working tree to new HEAD"
fi

View file

@ -0,0 +1,78 @@
#!/bin/sh
# An example hook script to update a checked-out tree on a git push.
#
# This hook is invoked by git-receive-pack(1) when it reacts to git
# push and updates reference(s) in its repository, and when the push
# tries to update the branch that is currently checked out and the
# receive.denyCurrentBranch configuration variable is set to
# updateInstead.
#
# By default, such a push is refused if the working tree and the index
# of the remote repository has any difference from the currently
# checked out commit; when both the working tree and the index match
# the current commit, they are updated to match the newly pushed tip
# of the branch. This hook is to be used to override the default
# behaviour; however the code below reimplements the default behaviour
# as a starting point for convenient modification.
#
# The hook receives the commit with which the tip of the current
# branch is going to be updated:
commit=$1
# It can exit with a non-zero status to refuse the push (when it does
# so, it must not modify the index or the working tree).
die () {
echo >&2 "$*"
exit 1
}
# Or it can make any necessary changes to the working tree and to the
# index to bring them to the desired state when the tip of the current
# branch is updated to the new commit, and exit with a zero status.
#
# For example, the hook can simply run git read-tree -u -m HEAD "$1"
# in order to emulate git fetch that is run in the reverse direction
# with git push, as the two-tree form of git read-tree -u -m is
# essentially the same as git switch or git checkout that switches
# branches while keeping the local changes in the working tree that do
# not interfere with the difference between the branches.
# The below is a more-or-less exact translation to shell of the C code
# for the default behaviour for git's push-to-checkout hook defined in
# the push_to_deploy() function in builtin/receive-pack.c.
#
# Note that the hook will be executed from the repository directory,
# not from the working tree, so if you want to perform operations on
# the working tree, you will have to adapt your code accordingly, e.g.
# by adding "cd .." or using relative paths.
if ! git update-index -q --ignore-submodules --refresh
then
die "Up-to-date check failed"
fi
if ! git diff-files --quiet --ignore-submodules --
then
die "Working directory has unstaged changes"
fi
# This is a rough translation of:
#
# head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX
if git cat-file -e HEAD 2>/dev/null
then
head=HEAD
else
head=$(git hash-object -t tree --stdin </dev/null)
fi
if ! git diff-index --quiet --cached --ignore-submodules $head --
then
die "Working directory has staged changes"
fi
if ! git read-tree -u -m "$commit"
then
die "Could not update working tree to new HEAD"
fi

View file

@ -0,0 +1,77 @@
#!/bin/sh
# An example hook script to validate a patch (and/or patch series) before
# sending it via email.
#
# The hook should exit with non-zero status after issuing an appropriate
# message if it wants to prevent the email(s) from being sent.
#
# To enable this hook, rename this file to "sendemail-validate".
#
# By default, it will only check that the patch(es) can be applied on top of
# the default upstream branch without conflicts in a secondary worktree. After
# validation (successful or not) of the last patch of a series, the worktree
# will be deleted.
#
# The following config variables can be set to change the default remote and
# remote ref that are used to apply the patches against:
#
# sendemail.validateRemote (default: origin)
# sendemail.validateRemoteRef (default: HEAD)
#
# Replace the TODO placeholders with appropriate checks according to your
# needs.
validate_cover_letter () {
file="$1"
# TODO: Replace with appropriate checks (e.g. spell checking).
true
}
validate_patch () {
file="$1"
# Ensure that the patch applies without conflicts.
git am -3 "$file" || return
# TODO: Replace with appropriate checks for this patch
# (e.g. checkpatch.pl).
true
}
validate_series () {
# TODO: Replace with appropriate checks for the whole series
# (e.g. quick build, coding style checks, etc.).
true
}
# main -------------------------------------------------------------------------
if test "$GIT_SENDEMAIL_FILE_COUNTER" = 1
then
remote=$(git config --default origin --get sendemail.validateRemote) &&
ref=$(git config --default HEAD --get sendemail.validateRemoteRef) &&
worktree=$(mktemp --tmpdir -d sendemail-validate.XXXXXXX) &&
git worktree add -fd --checkout "$worktree" "refs/remotes/$remote/$ref" &&
git config --replace-all sendemail.validateWorktree "$worktree"
else
worktree=$(git config --get sendemail.validateWorktree)
fi || {
echo "sendemail-validate: error: failed to prepare worktree" >&2
exit 1
}
unset GIT_DIR GIT_WORK_TREE
cd "$worktree" &&
if grep -q "^diff --git " "$1"
then
validate_patch "$1"
else
validate_cover_letter "$1"
fi &&
if test "$GIT_SENDEMAIL_FILE_COUNTER" = "$GIT_SENDEMAIL_FILE_TOTAL"
then
git config --unset-all sendemail.validateWorktree &&
trap 'git worktree remove -ff "$worktree"' EXIT &&
validate_series
fi

View file

@ -0,0 +1,77 @@
#!/bin/sh
# An example hook script to validate a patch (and/or patch series) before
# sending it via email.
#
# The hook should exit with non-zero status after issuing an appropriate
# message if it wants to prevent the email(s) from being sent.
#
# To enable this hook, rename this file to "sendemail-validate".
#
# By default, it will only check that the patch(es) can be applied on top of
# the default upstream branch without conflicts in a secondary worktree. After
# validation (successful or not) of the last patch of a series, the worktree
# will be deleted.
#
# The following config variables can be set to change the default remote and
# remote ref that are used to apply the patches against:
#
# sendemail.validateRemote (default: origin)
# sendemail.validateRemoteRef (default: HEAD)
#
# Replace the TODO placeholders with appropriate checks according to your
# needs.
validate_cover_letter () {
file="$1"
# TODO: Replace with appropriate checks (e.g. spell checking).
true
}
validate_patch () {
file="$1"
# Ensure that the patch applies without conflicts.
git am -3 "$file" || return
# TODO: Replace with appropriate checks for this patch
# (e.g. checkpatch.pl).
true
}
validate_series () {
# TODO: Replace with appropriate checks for the whole series
# (e.g. quick build, coding style checks, etc.).
true
}
# main -------------------------------------------------------------------------
if test "$GIT_SENDEMAIL_FILE_COUNTER" = 1
then
remote=$(git config --default origin --get sendemail.validateRemote) &&
ref=$(git config --default HEAD --get sendemail.validateRemoteRef) &&
worktree=$(mktemp --tmpdir -d sendemail-validate.XXXXXXX) &&
git worktree add -fd --checkout "$worktree" "refs/remotes/$remote/$ref" &&
git config --replace-all sendemail.validateWorktree "$worktree"
else
worktree=$(git config --get sendemail.validateWorktree)
fi || {
echo "sendemail-validate: error: failed to prepare worktree" >&2
exit 1
}
unset GIT_DIR GIT_WORK_TREE
cd "$worktree" &&
if grep -q "^diff --git " "$1"
then
validate_patch "$1"
else
validate_cover_letter "$1"
fi &&
if test "$GIT_SENDEMAIL_FILE_COUNTER" = "$GIT_SENDEMAIL_FILE_TOTAL"
then
git config --unset-all sendemail.validateWorktree &&
trap 'git worktree remove -ff "$worktree"' EXIT &&
validate_series
fi

View file

@ -0,0 +1,128 @@
#!/bin/sh
#
# An example hook script to block unannotated tags from entering.
# Called by "git receive-pack" with arguments: refname sha1-old sha1-new
#
# To enable this hook, rename this file to "update".
#
# Config
# ------
# hooks.allowunannotated
# This boolean sets whether unannotated tags will be allowed into the
# repository. By default they won't be.
# hooks.allowdeletetag
# This boolean sets whether deleting tags will be allowed in the
# repository. By default they won't be.
# hooks.allowmodifytag
# This boolean sets whether a tag may be modified after creation. By default
# it won't be.
# hooks.allowdeletebranch
# This boolean sets whether deleting branches will be allowed in the
# repository. By default they won't be.
# hooks.denycreatebranch
# This boolean sets whether remotely creating branches will be denied
# in the repository. By default this is allowed.
#
# --- Command line
refname="$1"
oldrev="$2"
newrev="$3"
# --- Safety check
if [ -z "$GIT_DIR" ]; then
echo "Don't run this script from the command line." >&2
echo " (if you want, you could supply GIT_DIR then run" >&2
echo " $0 <ref> <oldrev> <newrev>)" >&2
exit 1
fi
if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
echo "usage: $0 <ref> <oldrev> <newrev>" >&2
exit 1
fi
# --- Config
allowunannotated=$(git config --type=bool hooks.allowunannotated)
allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch)
denycreatebranch=$(git config --type=bool hooks.denycreatebranch)
allowdeletetag=$(git config --type=bool hooks.allowdeletetag)
allowmodifytag=$(git config --type=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=$(git hash-object --stdin </dev/null | tr '[0-9a-f]' '0')
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

View file

@ -0,0 +1,128 @@
#!/bin/sh
#
# An example hook script to block unannotated tags from entering.
# Called by "git receive-pack" with arguments: refname sha1-old sha1-new
#
# To enable this hook, rename this file to "update".
#
# Config
# ------
# hooks.allowunannotated
# This boolean sets whether unannotated tags will be allowed into the
# repository. By default they won't be.
# hooks.allowdeletetag
# This boolean sets whether deleting tags will be allowed in the
# repository. By default they won't be.
# hooks.allowmodifytag
# This boolean sets whether a tag may be modified after creation. By default
# it won't be.
# hooks.allowdeletebranch
# This boolean sets whether deleting branches will be allowed in the
# repository. By default they won't be.
# hooks.denycreatebranch
# This boolean sets whether remotely creating branches will be denied
# in the repository. By default this is allowed.
#
# --- Command line
refname="$1"
oldrev="$2"
newrev="$3"
# --- Safety check
if [ -z "$GIT_DIR" ]; then
echo "Don't run this script from the command line." >&2
echo " (if you want, you could supply GIT_DIR then run" >&2
echo " $0 <ref> <oldrev> <newrev>)" >&2
exit 1
fi
if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
echo "usage: $0 <ref> <oldrev> <newrev>" >&2
exit 1
fi
# --- Config
allowunannotated=$(git config --type=bool hooks.allowunannotated)
allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch)
denycreatebranch=$(git config --type=bool hooks.denycreatebranch)
allowdeletetag=$(git config --type=bool hooks.allowdeletetag)
allowmodifytag=$(git config --type=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=$(git hash-object --stdin </dev/null | tr '[0-9a-f]' '0')
if [ "$newrev" = "$zero" ]; then
newrev_type=delete
else
newrev_type=$(git cat-file -t $newrev)
fi
case "$refname","$newrev_type" in
refs/tags/*,commit)
# un-annotated tag
short_refname=${refname##refs/tags/}
if [ "$allowunannotated" != "true" ]; then
echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2
echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2
exit 1
fi
;;
refs/tags/*,delete)
# delete tag
if [ "$allowdeletetag" != "true" ]; then
echo "*** Deleting a tag is not allowed in this repository" >&2
exit 1
fi
;;
refs/tags/*,tag)
# annotated tag
if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1
then
echo "*** Tag '$refname' already exists." >&2
echo "*** Modifying a tag is not allowed in this repository." >&2
exit 1
fi
;;
refs/heads/*,commit)
# branch
if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then
echo "*** Creating a branch is not allowed in this repository" >&2
exit 1
fi
;;
refs/heads/*,delete)
# delete branch
if [ "$allowdeletebranch" != "true" ]; then
echo "*** Deleting a branch is not allowed in this repository" >&2
exit 1
fi
;;
refs/remotes/*,commit)
# tracking branch
;;
refs/remotes/*,delete)
# delete tracking branch
if [ "$allowdeletebranch" != "true" ]; then
echo "*** Deleting a tracking branch is not allowed in this repository" >&2
exit 1
fi
;;
*)
# Anything else (is there anything else?)
echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2
exit 1
;;
esac
# --- Finished
exit 0

BIN
.git.bak/index Normal file

Binary file not shown.

BIN
.git.bak/index (1) Normal file

Binary file not shown.

Binary file not shown.

6
.git.bak/info/exclude Normal file
View file

@ -0,0 +1,6 @@
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~

View file

@ -0,0 +1,6 @@
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~

3
.git.bak/info/refs Normal file
View file

@ -0,0 +1,3 @@
ef1bbf7a35ff26c7067c6711781c14127f0a906b refs/heads/main
49af7ddd8e4a932c7817e62f92b747f026d9e388 refs/remotes/origin/HEAD
49af7ddd8e4a932c7817e62f92b747f026d9e388 refs/remotes/origin/main

72
.git.bak/logs/HEAD Normal file
View file

@ -0,0 +1,72 @@
41b62617210fe1b623c918d4971e425ce23e906a 9a69e0731cac232ad21873c332e9f31287cde8dc superschnups <114619791+superschnups@users.noreply.github.com> 1768770004 +0100 commit: Auto-backup: 2026-01-18 22:00
9a69e0731cac232ad21873c332e9f31287cde8dc 88b2742518ddf99477cf819f0442a02b5431fc79 superschnups <114619791+superschnups@users.noreply.github.com> 1768866202 +0100 commit: Auto-backup: 2026-01-20 00:43
88b2742518ddf99477cf819f0442a02b5431fc79 ac242806aae813c36639925c962934cf0d5d9dfe superschnups <114619791+superschnups@users.noreply.github.com> 1769118622 +0100 commit: Auto-backup: 2026-01-22 22:50
ac242806aae813c36639925c962934cf0d5d9dfe a30119662e57564fbceb957cbb336b024d688703 superschnups <114619791+superschnups@users.noreply.github.com> 1769296965 +0100 commit: Auto-backup: 2026-01-25 00:22
a30119662e57564fbceb957cbb336b024d688703 035b19f1c4cb34b40b6b78232c8d6b9c663d0a0e Sascha <rodegang@googlemail.com> 1769374969 +0100 commit: Auto-backup: 2026-01-25 22:02
035b19f1c4cb34b40b6b78232c8d6b9c663d0a0e 17dba2830bc1c1e41e786cc7ec21ca54c38c39da Sascha <rodegang@googlemail.com> 1769375487 +0100 commit: Auto-backup: 2026-01-25 22:11
17dba2830bc1c1e41e786cc7ec21ca54c38c39da 0f407fd971a4f12591558d9fafa6e645aabbbf2e Sascha <rodegang@googlemail.com> 1769375558 +0100 commit: Auto-backup: 2026-01-25 22:12
0f407fd971a4f12591558d9fafa6e645aabbbf2e 3e1ebdc24434b42d67de929610f2a6383d67c431 Sascha <rodegang@googlemail.com> 1770063623 +0100 commit: Auto-backup: 2026-02-02 21:20
3e1ebdc24434b42d67de929610f2a6383d67c431 49af7ddd8e4a932c7817e62f92b747f026d9e388 Sascha <rodegang@googlemail.com> 1770242401 +0100 commit: Auto-backup: 2026-02-04 23:00
49af7ddd8e4a932c7817e62f92b747f026d9e388 ef1bbf7a35ff26c7067c6711781c14127f0a906b Sascha <rodegang@googlemail.com> 1771020039 +0100 commit: Auto-backup: 2026-02-13 23:00
ef1bbf7a35ff26c7067c6711781c14127f0a906b 44de3f965f362a9b8645a7de9556df470362c4dd Sascha <rodegang@googlemail.com> 1771024397 +0100 commit: update halt
44de3f965f362a9b8645a7de9556df470362c4dd 23fb10eefc71657a508fc5cb2eaaa25347bb48e9 Sascha <rodegang@googlemail.com> 1771279202 +0100 commit: Auto-backup: 2026-02-16 23:00
23fb10eefc71657a508fc5cb2eaaa25347bb48e9 142e2eb75799ec413ff72c6003c1e1be53ac6d39 Sascha <rodegang@googlemail.com> 1771715224 +0100 commit (amend): Auto-backup: 2026-02-16 23:00
142e2eb75799ec413ff72c6003c1e1be53ac6d39 af30d3374adceedcb4da52691504fd62ce19e334 Sascha <rodegang@googlemail.com> 1771797600 +0100 commit: Auto-backup: 2026-02-22 23:00
af30d3374adceedcb4da52691504fd62ce19e334 69de6fed7b89cd7974bb31047b646a7ec6280701 Sascha <rodegang@googlemail.com> 1772056802 +0100 commit: Auto-backup: 2026-02-25 23:00
69de6fed7b89cd7974bb31047b646a7ec6280701 9105721c8b3fdb8316d33c4212800073dc049306 Sascha <rodegang@googlemail.com> 1772059256 +0100 commit: Auto-backup: 2026-02-25 23:40
9105721c8b3fdb8316d33c4212800073dc049306 c0f2c57f901e64092e395c393ae2e22bbe6c2c19 Sascha <rodegang@googlemail.com> 1772060274 +0100 commit: Auto-backup: 2026-02-25 23:57
c0f2c57f901e64092e395c393ae2e22bbe6c2c19 f747cb711330511887b8fc42d228bcc663c24efd Sascha <rodegang@googlemail.com> 1772060302 +0100 commit: Auto-backup: 2026-02-25 23:58
f747cb711330511887b8fc42d228bcc663c24efd 2d86e55dc513c43af8aa7c6962adc8b3ef85507a Sascha <rodegang@googlemail.com> 1772061195 +0100 commit: Auto-backup: 2026-02-26 00:13
2d86e55dc513c43af8aa7c6962adc8b3ef85507a 26a80d21d31cd0ce2a7c1ae83d95d5a9e5c7a9ff Sascha <rodegang@googlemail.com> 1772061225 +0100 commit: Auto-backup: 2026-02-26 00:13
26a80d21d31cd0ce2a7c1ae83d95d5a9e5c7a9ff c424b3e52f4298fe65344295e62ea986aafcc959 Sascha <rodegang@googlemail.com> 1772061272 +0100 commit: Auto-backup: 2026-02-26 00:14
c424b3e52f4298fe65344295e62ea986aafcc959 76579c3bf027b59d074168f47accf54aa965cf8d Sascha <rodegang@googlemail.com> 1772061286 +0100 commit: Auto-backup: 2026-02-26 00:14
76579c3bf027b59d074168f47accf54aa965cf8d 153387c7fb5571f50c78ae502c1733b6ec49bc51 Sascha <rodegang@googlemail.com> 1772061383 +0100 commit: Auto-backup: 2026-02-26 00:16
153387c7fb5571f50c78ae502c1733b6ec49bc51 1ae2e3eca333103d36dea70cbdff0e78b65eb6e8 Sascha <rodegang@googlemail.com> 1772061573 +0100 commit: Auto-backup: 2026-02-26 00:19
1ae2e3eca333103d36dea70cbdff0e78b65eb6e8 a9d60660bdb3b56e01e2837bd69f240b955ed18b Sascha <rodegang@googlemail.com> 1772061644 +0100 commit: Auto-backup: 2026-02-26 00:20
a9d60660bdb3b56e01e2837bd69f240b955ed18b 3a269b68cc896251b79fc1db4f50f3aa24403076 Sascha <rodegang@googlemail.com> 1772061707 +0100 commit: Auto-backup: 2026-02-26 00:21
3a269b68cc896251b79fc1db4f50f3aa24403076 c25bff95b332ce7a46221578067cd8f78d2579cc Sascha <rodegang@googlemail.com> 1772148674 +0100 commit: Auto-backup: 2026-02-27 00:31
c25bff95b332ce7a46221578067cd8f78d2579cc 3e2b7944c35cd08eb4b655d02aa6d3c1e625b681 Sascha <rodegang@googlemail.com> 1772229602 +0100 commit: Auto-backup: 2026-02-27 23:00
3e2b7944c35cd08eb4b655d02aa6d3c1e625b681 14e0a5e755dcd635bf022abbcd477c77a65c2a58 Sascha <rodegang@googlemail.com> 1772397944 +0100 commit: update halt
14e0a5e755dcd635bf022abbcd477c77a65c2a58 d302344e774f6434aa55c3a21a6a7323caf45871 Sascha <rodegang@googlemail.com> 1772748003 +0100 commit: Auto-backup: 2026-03-05 23:00
d302344e774f6434aa55c3a21a6a7323caf45871 983a6c83447d671c03e6aa410da6afa9993cdaeb Sascha <rodegang@googlemail.com> 1772750873 +0100 commit: Auto-backup: 2026-03-05 23:47
983a6c83447d671c03e6aa410da6afa9993cdaeb 2f0b79395fcccd0edfd49e790f89fe6403863ec4 Sascha <rodegang@googlemail.com> 1772751087 +0100 commit: Auto-backup: 2026-03-05 23:51
2f0b79395fcccd0edfd49e790f89fe6403863ec4 03dd86fa788f2aa81df0caf3f05d9527bf124708 Sascha <rodegang@googlemail.com> 1772751677 +0100 commit: Auto-backup: 2026-03-06 00:01
03dd86fa788f2aa81df0caf3f05d9527bf124708 97e2bd0e679d353a9bc035d09283ea233214e99c Sascha <rodegang@googlemail.com> 1772834408 +0100 commit: Auto-backup: 2026-03-06 23:00
97e2bd0e679d353a9bc035d09283ea233214e99c f6f3cee0812d7400a9eae0d33ab8bc2037b57d47 Sascha <rodegang@googlemail.com> 1772920801 +0100 commit: Auto-backup: 2026-03-07 23:00
f6f3cee0812d7400a9eae0d33ab8bc2037b57d47 249d970a90948ff7ef7c0b54260b8983527f231c Sascha <rodegang@googlemail.com> 1773180000 +0100 commit: Auto-backup: 2026-03-10 23:00
249d970a90948ff7ef7c0b54260b8983527f231c ba73f6d2a884ba9a6971e8b358ed1a928c7943f7 Sascha <rodegang@googlemail.com> 1773333437 +0100 commit: Lektion 1: Existenz-Prüfung abgeschlossen (Flux-Coding Workflow)
ba73f6d2a884ba9a6971e8b358ed1a928c7943f7 e2d5f4feb38f5fc883059cc11eecd24c9bafb530 Sascha <rodegang@googlemail.com> 1773439201 +0100 commit: Auto-backup: 2026-03-13 23:00
e2d5f4feb38f5fc883059cc11eecd24c9bafb530 9cdec965cc7b49bfa63e00e6195b9ca309ff4e53 Sascha <rodegang@googlemail.com> 1773698401 +0100 commit: Auto-backup: 2026-03-16 23:00
9cdec965cc7b49bfa63e00e6195b9ca309ff4e53 c215075f34a7b3e82577dab8aa1192680f604b44 Sascha <rodegang@googlemail.com> 1773784800 +0100 commit: Auto-backup: 2026-03-17 23:00
c215075f34a7b3e82577dab8aa1192680f604b44 a88524451d19e25156cf0b79ae2f1b63b3ca9b99 Sascha <rodegang@googlemail.com> 1773867789 +0100 commit: Auto-backup: 2026-03-18 22:03
a88524451d19e25156cf0b79ae2f1b63b3ca9b99 96ebe4f634d95dcab882d8c16f8c760f782ae54e Sascha <rodegang@googlemail.com> 1774389600 +0100 commit: Auto-backup: 2026-03-24 23:00
96ebe4f634d95dcab882d8c16f8c760f782ae54e 3cd4a7cf1b715912338c31b86a941064ae8f3ada Sascha <rodegang@googlemail.com> 1774476001 +0100 commit: Auto-backup: 2026-03-25 23:00
3cd4a7cf1b715912338c31b86a941064ae8f3ada eb05d76857b1d0f806def15cfbd5a1c3aee05861 Sascha <rodegang@googlemail.com> 1774562401 +0100 commit: Auto-backup: 2026-03-26 23:00
eb05d76857b1d0f806def15cfbd5a1c3aee05861 0b44043bbab426fda0d9153b38232f2575480c52 Sascha <rodegang@googlemail.com> 1774648801 +0100 commit: Auto-backup: 2026-03-27 23:00
0b44043bbab426fda0d9153b38232f2575480c52 4a958bfd0c851abe432a9dc52ea1d029516d5dbc Sascha <rodegang@googlemail.com> 1774735200 +0100 commit: Auto-backup: 2026-03-28 23:00
4a958bfd0c851abe432a9dc52ea1d029516d5dbc c9f87a431e8f4048cbf51024f86a238596e532c0 Sascha <rodegang@googlemail.com> 1774736087 +0100 commit: Auto-backup: 2026-03-28 23:14
c9f87a431e8f4048cbf51024f86a238596e532c0 2d99b51d0522c08fb1267aad3c8269602e4a362a Sascha <rodegang@googlemail.com> 1774818001 +0200 commit: Auto-backup: 2026-03-29 23:00
2d99b51d0522c08fb1267aad3c8269602e4a362a 63b478c10a38d0cf00977ed4cea7637fc7f46fb2 Sascha <rodegang@googlemail.com> 1775077201 +0200 commit: Auto-backup: 2026-04-01 23:00
63b478c10a38d0cf00977ed4cea7637fc7f46fb2 216c0185a447bef25cd961d8cf8ec5a4b25d4212 bonzei <phpoops@googlemail.com> 1775946959 +0200 commit: Auto-backup: 2026-04-12 00:35
216c0185a447bef25cd961d8cf8ec5a4b25d4212 b097213e89da03d62d9d16191c49d20330c4f274 bonzei <phpoops@googlemail.com> 1775947452 +0200 commit: Auto-backup: 2026-04-12 00:44
b097213e89da03d62d9d16191c49d20330c4f274 ea527ee73ae181f9aeadd9d3ebb6e420285d0927 bonzei <phpoops@googlemail.com> 1776282875 +0200 commit: Auto-backup: 2026-04-15 21:54
ea527ee73ae181f9aeadd9d3ebb6e420285d0927 ba0c4c98b884f5cb062110ff820897d932ac9fdf bonzei <phpoops@googlemail.com> 1776296421 +0200 commit: Auto-backup: 2026-04-16 01:40
ba0c4c98b884f5cb062110ff820897d932ac9fdf 4610267d921b1cc3258710d4d752ce45a11355a6 bonzei <phpoops@googlemail.com> 1776894449 +0200 commit: test
4610267d921b1cc3258710d4d752ce45a11355a6 f566d6af8ecc90ab61c62ff0551b2030fdcc0d83 bonzei <phpoops@googlemail.com> 1776894551 +0200 commit: origin
f566d6af8ecc90ab61c62ff0551b2030fdcc0d83 49ed2e550ef671a3cb97f13ce7e442c00d922365 bonzei <phpoops@googlemail.com> 1777661420 +0200 commit: 2026-05-01
49ed2e550ef671a3cb97f13ce7e442c00d922365 4dff5dc7088a4ee9234760d9260217a64b200522 bonzei <phpoops@googlemail.com> 1777708049 +0200 commit: last
4dff5dc7088a4ee9234760d9260217a64b200522 425c3e59d3623e886bfbf9b64a4a3863c83eabe8 bonzei <phpoops@googlemail.com> 1777770275 +0200 commit: neue .zshrc
425c3e59d3623e886bfbf9b64a4a3863c83eabe8 ea3bd71d83d43471f59027d994c3e796264a2cc4 bonzei <114619791+superschnups@users.noreply.github.com> 1778546052 +0200 commit: fuck alles gelöscht
ea3bd71d83d43471f59027d994c3e796264a2cc4 ea3bd71d83d43471f59027d994c3e796264a2cc4 bonzei <114619791+superschnups@users.noreply.github.com> 1778877726 +0200 pull --no-rebase: updating HEAD
ea3bd71d83d43471f59027d994c3e796264a2cc4 647c8ed59c74815525ffaa2b7478521a5d872ab5 bonzei <114619791+superschnups@users.noreply.github.com> 1778877930 +0200 commit: ggg
647c8ed59c74815525ffaa2b7478521a5d872ab5 380bd85f0009b17e02091bd0c2747741c58cacbe bonzei <114619791+superschnups@users.noreply.github.com> 1779080348 +0200 commit: configFilesSammelbecken hinzugefügt
380bd85f0009b17e02091bd0c2747741c58cacbe e49a463cbcfbf085a08832f804c985fb55c2c9bb bonzei <114619791+superschnups@users.noreply.github.com> 1779315637 +0200 commit: script für shortcut manager hinzugefügt
e49a463cbcfbf085a08832f804c985fb55c2c9bb aad7143ac4a6a57a32b3975b1eb4e89df5a86241 bonzei <114619791+superschnups@users.noreply.github.com> 1779357013 +0200 commit: Auto-backup: 2026-05-21 11:50
aad7143ac4a6a57a32b3975b1eb4e89df5a86241 fb66991bddc643cb3c5da7f74332c5e8450d92a7 bonzei <114619791+superschnups@users.noreply.github.com> 1779402780 +0200 commit: Auto-backup: 2026-05-22 00:33
fb66991bddc643cb3c5da7f74332c5e8450d92a7 15f8a115b7c7f54daf96acc6de6185df7f833e54 bonzei <114619791+superschnups@users.noreply.github.com> 1779575581 +0200 commit: Auto-backup: 2026-05-24 00:33
15f8a115b7c7f54daf96acc6de6185df7f833e54 88a9080d0cacb505e06f5663368333ffe871c68e bonzei <114619791+superschnups@users.noreply.github.com> 1779661981 +0200 commit: Auto-backup: 2026-05-25 00:33
88a9080d0cacb505e06f5663368333ffe871c68e a27d33d68a2ac6d850a679bdd90adb18f8cff189 bonzei <114619791+superschnups@users.noreply.github.com> 1779921180 +0200 commit: Auto-backup: 2026-05-28 00:33
a27d33d68a2ac6d850a679bdd90adb18f8cff189 ec7097b96282437312853ba39254d0e2f17b36ba bonzei <114619791+superschnups@users.noreply.github.com> 1780007581 +0200 commit: Auto-backup: 2026-05-29 00:33
ec7097b96282437312853ba39254d0e2f17b36ba 0ff4e078bd0102f94c354fafd480832b8d8e77ad bonzei <114619791+superschnups@users.noreply.github.com> 1780093980 +0200 commit: Auto-backup: 2026-05-30 00:33
0ff4e078bd0102f94c354fafd480832b8d8e77ad e075bccaa3c39f70eb84708c0b1ee2bc8450e46c bonzei <114619791+superschnups@users.noreply.github.com> 1780180380 +0200 commit: Auto-backup: 2026-05-31 00:33
e075bccaa3c39f70eb84708c0b1ee2bc8450e46c 54c4d80c60fe5e759c754973d7f3c4d4c347819d bonzei <114619791+superschnups@users.noreply.github.com> 1780612381 +0200 commit: Auto-backup: 2026-06-05 00:33

59
.git.bak/logs/HEAD (1) Normal file
View file

@ -0,0 +1,59 @@
41b62617210fe1b623c918d4971e425ce23e906a 9a69e0731cac232ad21873c332e9f31287cde8dc superschnups <114619791+superschnups@users.noreply.github.com> 1768770004 +0100 commit: Auto-backup: 2026-01-18 22:00
9a69e0731cac232ad21873c332e9f31287cde8dc 88b2742518ddf99477cf819f0442a02b5431fc79 superschnups <114619791+superschnups@users.noreply.github.com> 1768866202 +0100 commit: Auto-backup: 2026-01-20 00:43
88b2742518ddf99477cf819f0442a02b5431fc79 ac242806aae813c36639925c962934cf0d5d9dfe superschnups <114619791+superschnups@users.noreply.github.com> 1769118622 +0100 commit: Auto-backup: 2026-01-22 22:50
ac242806aae813c36639925c962934cf0d5d9dfe a30119662e57564fbceb957cbb336b024d688703 superschnups <114619791+superschnups@users.noreply.github.com> 1769296965 +0100 commit: Auto-backup: 2026-01-25 00:22
a30119662e57564fbceb957cbb336b024d688703 035b19f1c4cb34b40b6b78232c8d6b9c663d0a0e Sascha <rodegang@googlemail.com> 1769374969 +0100 commit: Auto-backup: 2026-01-25 22:02
035b19f1c4cb34b40b6b78232c8d6b9c663d0a0e 17dba2830bc1c1e41e786cc7ec21ca54c38c39da Sascha <rodegang@googlemail.com> 1769375487 +0100 commit: Auto-backup: 2026-01-25 22:11
17dba2830bc1c1e41e786cc7ec21ca54c38c39da 0f407fd971a4f12591558d9fafa6e645aabbbf2e Sascha <rodegang@googlemail.com> 1769375558 +0100 commit: Auto-backup: 2026-01-25 22:12
0f407fd971a4f12591558d9fafa6e645aabbbf2e 3e1ebdc24434b42d67de929610f2a6383d67c431 Sascha <rodegang@googlemail.com> 1770063623 +0100 commit: Auto-backup: 2026-02-02 21:20
3e1ebdc24434b42d67de929610f2a6383d67c431 49af7ddd8e4a932c7817e62f92b747f026d9e388 Sascha <rodegang@googlemail.com> 1770242401 +0100 commit: Auto-backup: 2026-02-04 23:00
49af7ddd8e4a932c7817e62f92b747f026d9e388 ef1bbf7a35ff26c7067c6711781c14127f0a906b Sascha <rodegang@googlemail.com> 1771020039 +0100 commit: Auto-backup: 2026-02-13 23:00
ef1bbf7a35ff26c7067c6711781c14127f0a906b 44de3f965f362a9b8645a7de9556df470362c4dd Sascha <rodegang@googlemail.com> 1771024397 +0100 commit: update halt
44de3f965f362a9b8645a7de9556df470362c4dd 23fb10eefc71657a508fc5cb2eaaa25347bb48e9 Sascha <rodegang@googlemail.com> 1771279202 +0100 commit: Auto-backup: 2026-02-16 23:00
23fb10eefc71657a508fc5cb2eaaa25347bb48e9 142e2eb75799ec413ff72c6003c1e1be53ac6d39 Sascha <rodegang@googlemail.com> 1771715224 +0100 commit (amend): Auto-backup: 2026-02-16 23:00
142e2eb75799ec413ff72c6003c1e1be53ac6d39 af30d3374adceedcb4da52691504fd62ce19e334 Sascha <rodegang@googlemail.com> 1771797600 +0100 commit: Auto-backup: 2026-02-22 23:00
af30d3374adceedcb4da52691504fd62ce19e334 69de6fed7b89cd7974bb31047b646a7ec6280701 Sascha <rodegang@googlemail.com> 1772056802 +0100 commit: Auto-backup: 2026-02-25 23:00
69de6fed7b89cd7974bb31047b646a7ec6280701 9105721c8b3fdb8316d33c4212800073dc049306 Sascha <rodegang@googlemail.com> 1772059256 +0100 commit: Auto-backup: 2026-02-25 23:40
9105721c8b3fdb8316d33c4212800073dc049306 c0f2c57f901e64092e395c393ae2e22bbe6c2c19 Sascha <rodegang@googlemail.com> 1772060274 +0100 commit: Auto-backup: 2026-02-25 23:57
c0f2c57f901e64092e395c393ae2e22bbe6c2c19 f747cb711330511887b8fc42d228bcc663c24efd Sascha <rodegang@googlemail.com> 1772060302 +0100 commit: Auto-backup: 2026-02-25 23:58
f747cb711330511887b8fc42d228bcc663c24efd 2d86e55dc513c43af8aa7c6962adc8b3ef85507a Sascha <rodegang@googlemail.com> 1772061195 +0100 commit: Auto-backup: 2026-02-26 00:13
2d86e55dc513c43af8aa7c6962adc8b3ef85507a 26a80d21d31cd0ce2a7c1ae83d95d5a9e5c7a9ff Sascha <rodegang@googlemail.com> 1772061225 +0100 commit: Auto-backup: 2026-02-26 00:13
26a80d21d31cd0ce2a7c1ae83d95d5a9e5c7a9ff c424b3e52f4298fe65344295e62ea986aafcc959 Sascha <rodegang@googlemail.com> 1772061272 +0100 commit: Auto-backup: 2026-02-26 00:14
c424b3e52f4298fe65344295e62ea986aafcc959 76579c3bf027b59d074168f47accf54aa965cf8d Sascha <rodegang@googlemail.com> 1772061286 +0100 commit: Auto-backup: 2026-02-26 00:14
76579c3bf027b59d074168f47accf54aa965cf8d 153387c7fb5571f50c78ae502c1733b6ec49bc51 Sascha <rodegang@googlemail.com> 1772061383 +0100 commit: Auto-backup: 2026-02-26 00:16
153387c7fb5571f50c78ae502c1733b6ec49bc51 1ae2e3eca333103d36dea70cbdff0e78b65eb6e8 Sascha <rodegang@googlemail.com> 1772061573 +0100 commit: Auto-backup: 2026-02-26 00:19
1ae2e3eca333103d36dea70cbdff0e78b65eb6e8 a9d60660bdb3b56e01e2837bd69f240b955ed18b Sascha <rodegang@googlemail.com> 1772061644 +0100 commit: Auto-backup: 2026-02-26 00:20
a9d60660bdb3b56e01e2837bd69f240b955ed18b 3a269b68cc896251b79fc1db4f50f3aa24403076 Sascha <rodegang@googlemail.com> 1772061707 +0100 commit: Auto-backup: 2026-02-26 00:21
3a269b68cc896251b79fc1db4f50f3aa24403076 c25bff95b332ce7a46221578067cd8f78d2579cc Sascha <rodegang@googlemail.com> 1772148674 +0100 commit: Auto-backup: 2026-02-27 00:31
c25bff95b332ce7a46221578067cd8f78d2579cc 3e2b7944c35cd08eb4b655d02aa6d3c1e625b681 Sascha <rodegang@googlemail.com> 1772229602 +0100 commit: Auto-backup: 2026-02-27 23:00
3e2b7944c35cd08eb4b655d02aa6d3c1e625b681 14e0a5e755dcd635bf022abbcd477c77a65c2a58 Sascha <rodegang@googlemail.com> 1772397944 +0100 commit: update halt
14e0a5e755dcd635bf022abbcd477c77a65c2a58 d302344e774f6434aa55c3a21a6a7323caf45871 Sascha <rodegang@googlemail.com> 1772748003 +0100 commit: Auto-backup: 2026-03-05 23:00
d302344e774f6434aa55c3a21a6a7323caf45871 983a6c83447d671c03e6aa410da6afa9993cdaeb Sascha <rodegang@googlemail.com> 1772750873 +0100 commit: Auto-backup: 2026-03-05 23:47
983a6c83447d671c03e6aa410da6afa9993cdaeb 2f0b79395fcccd0edfd49e790f89fe6403863ec4 Sascha <rodegang@googlemail.com> 1772751087 +0100 commit: Auto-backup: 2026-03-05 23:51
2f0b79395fcccd0edfd49e790f89fe6403863ec4 03dd86fa788f2aa81df0caf3f05d9527bf124708 Sascha <rodegang@googlemail.com> 1772751677 +0100 commit: Auto-backup: 2026-03-06 00:01
03dd86fa788f2aa81df0caf3f05d9527bf124708 97e2bd0e679d353a9bc035d09283ea233214e99c Sascha <rodegang@googlemail.com> 1772834408 +0100 commit: Auto-backup: 2026-03-06 23:00
97e2bd0e679d353a9bc035d09283ea233214e99c f6f3cee0812d7400a9eae0d33ab8bc2037b57d47 Sascha <rodegang@googlemail.com> 1772920801 +0100 commit: Auto-backup: 2026-03-07 23:00
f6f3cee0812d7400a9eae0d33ab8bc2037b57d47 249d970a90948ff7ef7c0b54260b8983527f231c Sascha <rodegang@googlemail.com> 1773180000 +0100 commit: Auto-backup: 2026-03-10 23:00
249d970a90948ff7ef7c0b54260b8983527f231c ba73f6d2a884ba9a6971e8b358ed1a928c7943f7 Sascha <rodegang@googlemail.com> 1773333437 +0100 commit: Lektion 1: Existenz-Prüfung abgeschlossen (Flux-Coding Workflow)
ba73f6d2a884ba9a6971e8b358ed1a928c7943f7 e2d5f4feb38f5fc883059cc11eecd24c9bafb530 Sascha <rodegang@googlemail.com> 1773439201 +0100 commit: Auto-backup: 2026-03-13 23:00
e2d5f4feb38f5fc883059cc11eecd24c9bafb530 9cdec965cc7b49bfa63e00e6195b9ca309ff4e53 Sascha <rodegang@googlemail.com> 1773698401 +0100 commit: Auto-backup: 2026-03-16 23:00
9cdec965cc7b49bfa63e00e6195b9ca309ff4e53 c215075f34a7b3e82577dab8aa1192680f604b44 Sascha <rodegang@googlemail.com> 1773784800 +0100 commit: Auto-backup: 2026-03-17 23:00
c215075f34a7b3e82577dab8aa1192680f604b44 a88524451d19e25156cf0b79ae2f1b63b3ca9b99 Sascha <rodegang@googlemail.com> 1773867789 +0100 commit: Auto-backup: 2026-03-18 22:03
a88524451d19e25156cf0b79ae2f1b63b3ca9b99 96ebe4f634d95dcab882d8c16f8c760f782ae54e Sascha <rodegang@googlemail.com> 1774389600 +0100 commit: Auto-backup: 2026-03-24 23:00
96ebe4f634d95dcab882d8c16f8c760f782ae54e 3cd4a7cf1b715912338c31b86a941064ae8f3ada Sascha <rodegang@googlemail.com> 1774476001 +0100 commit: Auto-backup: 2026-03-25 23:00
3cd4a7cf1b715912338c31b86a941064ae8f3ada eb05d76857b1d0f806def15cfbd5a1c3aee05861 Sascha <rodegang@googlemail.com> 1774562401 +0100 commit: Auto-backup: 2026-03-26 23:00
eb05d76857b1d0f806def15cfbd5a1c3aee05861 0b44043bbab426fda0d9153b38232f2575480c52 Sascha <rodegang@googlemail.com> 1774648801 +0100 commit: Auto-backup: 2026-03-27 23:00
0b44043bbab426fda0d9153b38232f2575480c52 4a958bfd0c851abe432a9dc52ea1d029516d5dbc Sascha <rodegang@googlemail.com> 1774735200 +0100 commit: Auto-backup: 2026-03-28 23:00
4a958bfd0c851abe432a9dc52ea1d029516d5dbc c9f87a431e8f4048cbf51024f86a238596e532c0 Sascha <rodegang@googlemail.com> 1774736087 +0100 commit: Auto-backup: 2026-03-28 23:14
c9f87a431e8f4048cbf51024f86a238596e532c0 2d99b51d0522c08fb1267aad3c8269602e4a362a Sascha <rodegang@googlemail.com> 1774818001 +0200 commit: Auto-backup: 2026-03-29 23:00
2d99b51d0522c08fb1267aad3c8269602e4a362a 63b478c10a38d0cf00977ed4cea7637fc7f46fb2 Sascha <rodegang@googlemail.com> 1775077201 +0200 commit: Auto-backup: 2026-04-01 23:00
63b478c10a38d0cf00977ed4cea7637fc7f46fb2 216c0185a447bef25cd961d8cf8ec5a4b25d4212 bonzei <phpoops@googlemail.com> 1775946959 +0200 commit: Auto-backup: 2026-04-12 00:35
216c0185a447bef25cd961d8cf8ec5a4b25d4212 b097213e89da03d62d9d16191c49d20330c4f274 bonzei <phpoops@googlemail.com> 1775947452 +0200 commit: Auto-backup: 2026-04-12 00:44
b097213e89da03d62d9d16191c49d20330c4f274 ea527ee73ae181f9aeadd9d3ebb6e420285d0927 bonzei <phpoops@googlemail.com> 1776282875 +0200 commit: Auto-backup: 2026-04-15 21:54
ea527ee73ae181f9aeadd9d3ebb6e420285d0927 ba0c4c98b884f5cb062110ff820897d932ac9fdf bonzei <phpoops@googlemail.com> 1776296421 +0200 commit: Auto-backup: 2026-04-16 01:40
ba0c4c98b884f5cb062110ff820897d932ac9fdf 4610267d921b1cc3258710d4d752ce45a11355a6 bonzei <phpoops@googlemail.com> 1776894449 +0200 commit: test
4610267d921b1cc3258710d4d752ce45a11355a6 f566d6af8ecc90ab61c62ff0551b2030fdcc0d83 bonzei <phpoops@googlemail.com> 1776894551 +0200 commit: origin
f566d6af8ecc90ab61c62ff0551b2030fdcc0d83 49ed2e550ef671a3cb97f13ce7e442c00d922365 bonzei <phpoops@googlemail.com> 1777661420 +0200 commit: 2026-05-01
49ed2e550ef671a3cb97f13ce7e442c00d922365 4dff5dc7088a4ee9234760d9260217a64b200522 bonzei <phpoops@googlemail.com> 1777708049 +0200 commit: last
4dff5dc7088a4ee9234760d9260217a64b200522 425c3e59d3623e886bfbf9b64a4a3863c83eabe8 bonzei <phpoops@googlemail.com> 1777770275 +0200 commit: neue .zshrc
425c3e59d3623e886bfbf9b64a4a3863c83eabe8 ea3bd71d83d43471f59027d994c3e796264a2cc4 bonzei <114619791+superschnups@users.noreply.github.com> 1778546052 +0200 commit: fuck alles gelöscht

View file

@ -0,0 +1,30 @@
0000000000000000000000000000000000000000 3f6417175e84de36f91fdbea99ef5bd0e58f51e5 bonzei <phpoops@googlemail.com> 1775944009 +0200 commit (initial): first commit
3f6417175e84de36f91fdbea99ef5bd0e58f51e5 0000000000000000000000000000000000000000 bonzei <phpoops@googlemail.com> 1775944009 +0200 Branch: renamed refs/heads/main to refs/heads/main
3f6417175e84de36f91fdbea99ef5bd0e58f51e5 3f6417175e84de36f91fdbea99ef5bd0e58f51e5 bonzei <phpoops@googlemail.com> 1775944009 +0200 Branch: renamed refs/heads/main to refs/heads/main
3f6417175e84de36f91fdbea99ef5bd0e58f51e5 ddbe56763d606e4c39f9897f8d866a50b4548d5f bonzei <phpoops@googlemail.com> 1775944114 +0200 commit: first commit
ddbe56763d606e4c39f9897f8d866a50b4548d5f 9899b947a8ef3078a526dc76330fed7998aff87a bonzei <phpoops@googlemail.com> 1775946960 +0200 commit: Auto-backup: 2026-04-12 00:36
9899b947a8ef3078a526dc76330fed7998aff87a ad8e5a5b8e02ba4bd9832d2f1471c9e51a4bc51b bonzei <phpoops@googlemail.com> 1775950397 +0200 commit: Add Hugo restart script and static files
ad8e5a5b8e02ba4bd9832d2f1471c9e51a4bc51b eaddeb16be67205315dd8db7145e9b7a84f8bde9 bonzei <phpoops@googlemail.com> 1776036267 +0200 commit: meine erfolge
eaddeb16be67205315dd8db7145e9b7a84f8bde9 fbbf85bfd731601e0c8bb86fd36a030d7ac0d6ce bonzei <phpoops@googlemail.com> 1776282877 +0200 commit: Auto-backup: 2026-04-15 21:54
fbbf85bfd731601e0c8bb86fd36a030d7ac0d6ce 4558a1638b23fe782becee1e496f1c3b3502c849 bonzei <phpoops@googlemail.com> 1776288079 +0200 commit: tets
4558a1638b23fe782becee1e496f1c3b3502c849 b8e4f6c20b80bdab05cb47d0ffcf268ac01ae258 bonzei <phpoops@googlemail.com> 1776894621 +0200 commit: origin
b8e4f6c20b80bdab05cb47d0ffcf268ac01ae258 0a6e506b02fade37e6eb512bd4aa1da72896f548 bonzei <phpoops@googlemail.com> 1776894714 +0200 commit: 2026-04-22
0a6e506b02fade37e6eb512bd4aa1da72896f548 52f7e61f472216b16d003e544fcbce8eeffaba7e bonzei <phpoops@googlemail.com> 1776894832 +0200 commit: 2026-04-22
52f7e61f472216b16d003e544fcbce8eeffaba7e dd5065a98c96e5b663ae2042bbeb89b04b4e616d bonzei <phpoops@googlemail.com> 1777398908 +0200 commit: Auto-backup: 2026-04-28 19:55
dd5065a98c96e5b663ae2042bbeb89b04b4e616d dd5065a98c96e5b663ae2042bbeb89b04b4e616d bonzei <phpoops@googlemail.com> 1777412567 +0200 checkout: moving from main to main
dd5065a98c96e5b663ae2042bbeb89b04b4e616d 875350d7b1a39d148ada93ef2877b274d510cfd5 bonzei <phpoops@googlemail.com> 1777662004 +0200 commit: Auto-backup: 2026-05-01 21:00
875350d7b1a39d148ada93ef2877b274d510cfd5 d5ccc01499d2357a97d4a649f909abe9c3da0e65 bonzei <114619791+superschnups@users.noreply.github.com> 1778278140 +0200 commit: ha
d5ccc01499d2357a97d4a649f909abe9c3da0e65 c9783ea5585bf33ce28cf408409e970ab332e8a0 bonzei <114619791+superschnups@users.noreply.github.com> 1778278322 +0200 commit: neu
c9783ea5585bf33ce28cf408409e970ab332e8a0 e58692de19858c5c031415ba80c510ddb3eafd2b bonzei <114619791+superschnups@users.noreply.github.com> 1778278356 +0200 commit: oksoisses
e58692de19858c5c031415ba80c510ddb3eafd2b b9c65ff32b5fb1ff9b3939f9f03ff5bdb9b17ef6 bonzei <114619791+superschnups@users.noreply.github.com> 1778545051 +0200 commit: Auto-backup: 2026-05-12 02:17
b9c65ff32b5fb1ff9b3939f9f03ff5bdb9b17ef6 d0db7805a962fb6ad09c4d419e3efbf77b49c744 bonzei <114619791+superschnups@users.noreply.github.com> 1779357116 +0200 commit: Auto-backup: 2026-05-21 11:51
d0db7805a962fb6ad09c4d419e3efbf77b49c744 4ce5539bcfb60024c0e01cac818fda169b20924e bonzei <114619791+superschnups@users.noreply.github.com> 1779402781 +0200 commit: Auto-backup: 2026-05-22 00:33
4ce5539bcfb60024c0e01cac818fda169b20924e 8b48cb742bc6ebbfa54fe9c40cf555f26d4e3f1f bonzei <114619791+superschnups@users.noreply.github.com> 1779489182 +0200 commit: Auto-backup: 2026-05-23 00:33
8b48cb742bc6ebbfa54fe9c40cf555f26d4e3f1f ee9b8bf94722cb2594698f7217e537c60b4fa1b4 bonzei <114619791+superschnups@users.noreply.github.com> 1779661982 +0200 commit: Auto-backup: 2026-05-25 00:33
ee9b8bf94722cb2594698f7217e537c60b4fa1b4 35345e6fcda387dc8f52c3990d592806041ab6e6 bonzei <114619791+superschnups@users.noreply.github.com> 1779748381 +0200 commit: Auto-backup: 2026-05-26 00:33
35345e6fcda387dc8f52c3990d592806041ab6e6 f2a3507eea31b0f8168b47877e1d08abc092767c bonzei <114619791+superschnups@users.noreply.github.com> 1779921182 +0200 commit: Auto-backup: 2026-05-28 00:33
f2a3507eea31b0f8168b47877e1d08abc092767c ad2ecd4bf7da56b32f6ccb58508c5ddf94493b6d bonzei <114619791+superschnups@users.noreply.github.com> 1780007583 +0200 commit: Auto-backup: 2026-05-29 00:33
ad2ecd4bf7da56b32f6ccb58508c5ddf94493b6d 57876b6a74dee6a139999beb5feda4a4353214ec bonzei <114619791+superschnups@users.noreply.github.com> 1780093982 +0200 commit: Auto-backup: 2026-05-30 00:33
57876b6a74dee6a139999beb5feda4a4353214ec ba2c3fdf86862d7e34570dcfebf972a63685cc09 bonzei <114619791+superschnups@users.noreply.github.com> 1780180398 +0200 commit: Auto-backup: 2026-05-31 00:33
ba2c3fdf86862d7e34570dcfebf972a63685cc09 63fa92d15e838d5c88f0f55ae4f09d9da7e3aa1b bonzei <114619791+superschnups@users.noreply.github.com> 1780266782 +0200 commit: Auto-backup: 2026-06-01 00:33
63fa92d15e838d5c88f0f55ae4f09d9da7e3aa1b 4428df4df4ee97153a72f4e1b8f62f5a95a45dc7 bonzei <114619791+superschnups@users.noreply.github.com> 1780612382 +0200 commit: Auto-backup: 2026-06-05 00:33

View file

@ -0,0 +1,71 @@
41b62617210fe1b623c918d4971e425ce23e906a 9a69e0731cac232ad21873c332e9f31287cde8dc superschnups <114619791+superschnups@users.noreply.github.com> 1768770004 +0100 commit: Auto-backup: 2026-01-18 22:00
9a69e0731cac232ad21873c332e9f31287cde8dc 88b2742518ddf99477cf819f0442a02b5431fc79 superschnups <114619791+superschnups@users.noreply.github.com> 1768866202 +0100 commit: Auto-backup: 2026-01-20 00:43
88b2742518ddf99477cf819f0442a02b5431fc79 ac242806aae813c36639925c962934cf0d5d9dfe superschnups <114619791+superschnups@users.noreply.github.com> 1769118622 +0100 commit: Auto-backup: 2026-01-22 22:50
ac242806aae813c36639925c962934cf0d5d9dfe a30119662e57564fbceb957cbb336b024d688703 superschnups <114619791+superschnups@users.noreply.github.com> 1769296965 +0100 commit: Auto-backup: 2026-01-25 00:22
a30119662e57564fbceb957cbb336b024d688703 035b19f1c4cb34b40b6b78232c8d6b9c663d0a0e Sascha <rodegang@googlemail.com> 1769374969 +0100 commit: Auto-backup: 2026-01-25 22:02
035b19f1c4cb34b40b6b78232c8d6b9c663d0a0e 17dba2830bc1c1e41e786cc7ec21ca54c38c39da Sascha <rodegang@googlemail.com> 1769375487 +0100 commit: Auto-backup: 2026-01-25 22:11
17dba2830bc1c1e41e786cc7ec21ca54c38c39da 0f407fd971a4f12591558d9fafa6e645aabbbf2e Sascha <rodegang@googlemail.com> 1769375558 +0100 commit: Auto-backup: 2026-01-25 22:12
0f407fd971a4f12591558d9fafa6e645aabbbf2e 3e1ebdc24434b42d67de929610f2a6383d67c431 Sascha <rodegang@googlemail.com> 1770063623 +0100 commit: Auto-backup: 2026-02-02 21:20
3e1ebdc24434b42d67de929610f2a6383d67c431 49af7ddd8e4a932c7817e62f92b747f026d9e388 Sascha <rodegang@googlemail.com> 1770242401 +0100 commit: Auto-backup: 2026-02-04 23:00
49af7ddd8e4a932c7817e62f92b747f026d9e388 ef1bbf7a35ff26c7067c6711781c14127f0a906b Sascha <rodegang@googlemail.com> 1771020039 +0100 commit: Auto-backup: 2026-02-13 23:00
ef1bbf7a35ff26c7067c6711781c14127f0a906b 44de3f965f362a9b8645a7de9556df470362c4dd Sascha <rodegang@googlemail.com> 1771024397 +0100 commit: update halt
44de3f965f362a9b8645a7de9556df470362c4dd 23fb10eefc71657a508fc5cb2eaaa25347bb48e9 Sascha <rodegang@googlemail.com> 1771279202 +0100 commit: Auto-backup: 2026-02-16 23:00
23fb10eefc71657a508fc5cb2eaaa25347bb48e9 142e2eb75799ec413ff72c6003c1e1be53ac6d39 Sascha <rodegang@googlemail.com> 1771715224 +0100 commit (amend): Auto-backup: 2026-02-16 23:00
142e2eb75799ec413ff72c6003c1e1be53ac6d39 af30d3374adceedcb4da52691504fd62ce19e334 Sascha <rodegang@googlemail.com> 1771797600 +0100 commit: Auto-backup: 2026-02-22 23:00
af30d3374adceedcb4da52691504fd62ce19e334 69de6fed7b89cd7974bb31047b646a7ec6280701 Sascha <rodegang@googlemail.com> 1772056802 +0100 commit: Auto-backup: 2026-02-25 23:00
69de6fed7b89cd7974bb31047b646a7ec6280701 9105721c8b3fdb8316d33c4212800073dc049306 Sascha <rodegang@googlemail.com> 1772059256 +0100 commit: Auto-backup: 2026-02-25 23:40
9105721c8b3fdb8316d33c4212800073dc049306 c0f2c57f901e64092e395c393ae2e22bbe6c2c19 Sascha <rodegang@googlemail.com> 1772060274 +0100 commit: Auto-backup: 2026-02-25 23:57
c0f2c57f901e64092e395c393ae2e22bbe6c2c19 f747cb711330511887b8fc42d228bcc663c24efd Sascha <rodegang@googlemail.com> 1772060302 +0100 commit: Auto-backup: 2026-02-25 23:58
f747cb711330511887b8fc42d228bcc663c24efd 2d86e55dc513c43af8aa7c6962adc8b3ef85507a Sascha <rodegang@googlemail.com> 1772061195 +0100 commit: Auto-backup: 2026-02-26 00:13
2d86e55dc513c43af8aa7c6962adc8b3ef85507a 26a80d21d31cd0ce2a7c1ae83d95d5a9e5c7a9ff Sascha <rodegang@googlemail.com> 1772061225 +0100 commit: Auto-backup: 2026-02-26 00:13
26a80d21d31cd0ce2a7c1ae83d95d5a9e5c7a9ff c424b3e52f4298fe65344295e62ea986aafcc959 Sascha <rodegang@googlemail.com> 1772061272 +0100 commit: Auto-backup: 2026-02-26 00:14
c424b3e52f4298fe65344295e62ea986aafcc959 76579c3bf027b59d074168f47accf54aa965cf8d Sascha <rodegang@googlemail.com> 1772061286 +0100 commit: Auto-backup: 2026-02-26 00:14
76579c3bf027b59d074168f47accf54aa965cf8d 153387c7fb5571f50c78ae502c1733b6ec49bc51 Sascha <rodegang@googlemail.com> 1772061383 +0100 commit: Auto-backup: 2026-02-26 00:16
153387c7fb5571f50c78ae502c1733b6ec49bc51 1ae2e3eca333103d36dea70cbdff0e78b65eb6e8 Sascha <rodegang@googlemail.com> 1772061573 +0100 commit: Auto-backup: 2026-02-26 00:19
1ae2e3eca333103d36dea70cbdff0e78b65eb6e8 a9d60660bdb3b56e01e2837bd69f240b955ed18b Sascha <rodegang@googlemail.com> 1772061644 +0100 commit: Auto-backup: 2026-02-26 00:20
a9d60660bdb3b56e01e2837bd69f240b955ed18b 3a269b68cc896251b79fc1db4f50f3aa24403076 Sascha <rodegang@googlemail.com> 1772061707 +0100 commit: Auto-backup: 2026-02-26 00:21
3a269b68cc896251b79fc1db4f50f3aa24403076 c25bff95b332ce7a46221578067cd8f78d2579cc Sascha <rodegang@googlemail.com> 1772148674 +0100 commit: Auto-backup: 2026-02-27 00:31
c25bff95b332ce7a46221578067cd8f78d2579cc 3e2b7944c35cd08eb4b655d02aa6d3c1e625b681 Sascha <rodegang@googlemail.com> 1772229602 +0100 commit: Auto-backup: 2026-02-27 23:00
3e2b7944c35cd08eb4b655d02aa6d3c1e625b681 14e0a5e755dcd635bf022abbcd477c77a65c2a58 Sascha <rodegang@googlemail.com> 1772397944 +0100 commit: update halt
14e0a5e755dcd635bf022abbcd477c77a65c2a58 d302344e774f6434aa55c3a21a6a7323caf45871 Sascha <rodegang@googlemail.com> 1772748003 +0100 commit: Auto-backup: 2026-03-05 23:00
d302344e774f6434aa55c3a21a6a7323caf45871 983a6c83447d671c03e6aa410da6afa9993cdaeb Sascha <rodegang@googlemail.com> 1772750873 +0100 commit: Auto-backup: 2026-03-05 23:47
983a6c83447d671c03e6aa410da6afa9993cdaeb 2f0b79395fcccd0edfd49e790f89fe6403863ec4 Sascha <rodegang@googlemail.com> 1772751087 +0100 commit: Auto-backup: 2026-03-05 23:51
2f0b79395fcccd0edfd49e790f89fe6403863ec4 03dd86fa788f2aa81df0caf3f05d9527bf124708 Sascha <rodegang@googlemail.com> 1772751677 +0100 commit: Auto-backup: 2026-03-06 00:01
03dd86fa788f2aa81df0caf3f05d9527bf124708 97e2bd0e679d353a9bc035d09283ea233214e99c Sascha <rodegang@googlemail.com> 1772834408 +0100 commit: Auto-backup: 2026-03-06 23:00
97e2bd0e679d353a9bc035d09283ea233214e99c f6f3cee0812d7400a9eae0d33ab8bc2037b57d47 Sascha <rodegang@googlemail.com> 1772920801 +0100 commit: Auto-backup: 2026-03-07 23:00
f6f3cee0812d7400a9eae0d33ab8bc2037b57d47 249d970a90948ff7ef7c0b54260b8983527f231c Sascha <rodegang@googlemail.com> 1773180000 +0100 commit: Auto-backup: 2026-03-10 23:00
249d970a90948ff7ef7c0b54260b8983527f231c ba73f6d2a884ba9a6971e8b358ed1a928c7943f7 Sascha <rodegang@googlemail.com> 1773333437 +0100 commit: Lektion 1: Existenz-Prüfung abgeschlossen (Flux-Coding Workflow)
ba73f6d2a884ba9a6971e8b358ed1a928c7943f7 e2d5f4feb38f5fc883059cc11eecd24c9bafb530 Sascha <rodegang@googlemail.com> 1773439201 +0100 commit: Auto-backup: 2026-03-13 23:00
e2d5f4feb38f5fc883059cc11eecd24c9bafb530 9cdec965cc7b49bfa63e00e6195b9ca309ff4e53 Sascha <rodegang@googlemail.com> 1773698401 +0100 commit: Auto-backup: 2026-03-16 23:00
9cdec965cc7b49bfa63e00e6195b9ca309ff4e53 c215075f34a7b3e82577dab8aa1192680f604b44 Sascha <rodegang@googlemail.com> 1773784800 +0100 commit: Auto-backup: 2026-03-17 23:00
c215075f34a7b3e82577dab8aa1192680f604b44 a88524451d19e25156cf0b79ae2f1b63b3ca9b99 Sascha <rodegang@googlemail.com> 1773867789 +0100 commit: Auto-backup: 2026-03-18 22:03
a88524451d19e25156cf0b79ae2f1b63b3ca9b99 96ebe4f634d95dcab882d8c16f8c760f782ae54e Sascha <rodegang@googlemail.com> 1774389600 +0100 commit: Auto-backup: 2026-03-24 23:00
96ebe4f634d95dcab882d8c16f8c760f782ae54e 3cd4a7cf1b715912338c31b86a941064ae8f3ada Sascha <rodegang@googlemail.com> 1774476001 +0100 commit: Auto-backup: 2026-03-25 23:00
3cd4a7cf1b715912338c31b86a941064ae8f3ada eb05d76857b1d0f806def15cfbd5a1c3aee05861 Sascha <rodegang@googlemail.com> 1774562401 +0100 commit: Auto-backup: 2026-03-26 23:00
eb05d76857b1d0f806def15cfbd5a1c3aee05861 0b44043bbab426fda0d9153b38232f2575480c52 Sascha <rodegang@googlemail.com> 1774648801 +0100 commit: Auto-backup: 2026-03-27 23:00
0b44043bbab426fda0d9153b38232f2575480c52 4a958bfd0c851abe432a9dc52ea1d029516d5dbc Sascha <rodegang@googlemail.com> 1774735200 +0100 commit: Auto-backup: 2026-03-28 23:00
4a958bfd0c851abe432a9dc52ea1d029516d5dbc c9f87a431e8f4048cbf51024f86a238596e532c0 Sascha <rodegang@googlemail.com> 1774736087 +0100 commit: Auto-backup: 2026-03-28 23:14
c9f87a431e8f4048cbf51024f86a238596e532c0 2d99b51d0522c08fb1267aad3c8269602e4a362a Sascha <rodegang@googlemail.com> 1774818001 +0200 commit: Auto-backup: 2026-03-29 23:00
2d99b51d0522c08fb1267aad3c8269602e4a362a 63b478c10a38d0cf00977ed4cea7637fc7f46fb2 Sascha <rodegang@googlemail.com> 1775077201 +0200 commit: Auto-backup: 2026-04-01 23:00
63b478c10a38d0cf00977ed4cea7637fc7f46fb2 216c0185a447bef25cd961d8cf8ec5a4b25d4212 bonzei <phpoops@googlemail.com> 1775946959 +0200 commit: Auto-backup: 2026-04-12 00:35
216c0185a447bef25cd961d8cf8ec5a4b25d4212 b097213e89da03d62d9d16191c49d20330c4f274 bonzei <phpoops@googlemail.com> 1775947452 +0200 commit: Auto-backup: 2026-04-12 00:44
b097213e89da03d62d9d16191c49d20330c4f274 ea527ee73ae181f9aeadd9d3ebb6e420285d0927 bonzei <phpoops@googlemail.com> 1776282875 +0200 commit: Auto-backup: 2026-04-15 21:54
ea527ee73ae181f9aeadd9d3ebb6e420285d0927 ba0c4c98b884f5cb062110ff820897d932ac9fdf bonzei <phpoops@googlemail.com> 1776296421 +0200 commit: Auto-backup: 2026-04-16 01:40
ba0c4c98b884f5cb062110ff820897d932ac9fdf 4610267d921b1cc3258710d4d752ce45a11355a6 bonzei <phpoops@googlemail.com> 1776894449 +0200 commit: test
4610267d921b1cc3258710d4d752ce45a11355a6 f566d6af8ecc90ab61c62ff0551b2030fdcc0d83 bonzei <phpoops@googlemail.com> 1776894551 +0200 commit: origin
f566d6af8ecc90ab61c62ff0551b2030fdcc0d83 49ed2e550ef671a3cb97f13ce7e442c00d922365 bonzei <phpoops@googlemail.com> 1777661420 +0200 commit: 2026-05-01
49ed2e550ef671a3cb97f13ce7e442c00d922365 4dff5dc7088a4ee9234760d9260217a64b200522 bonzei <phpoops@googlemail.com> 1777708049 +0200 commit: last
4dff5dc7088a4ee9234760d9260217a64b200522 425c3e59d3623e886bfbf9b64a4a3863c83eabe8 bonzei <phpoops@googlemail.com> 1777770275 +0200 commit: neue .zshrc
425c3e59d3623e886bfbf9b64a4a3863c83eabe8 ea3bd71d83d43471f59027d994c3e796264a2cc4 bonzei <114619791+superschnups@users.noreply.github.com> 1778546052 +0200 commit: fuck alles gelöscht
ea3bd71d83d43471f59027d994c3e796264a2cc4 647c8ed59c74815525ffaa2b7478521a5d872ab5 bonzei <114619791+superschnups@users.noreply.github.com> 1778877930 +0200 commit: ggg
647c8ed59c74815525ffaa2b7478521a5d872ab5 380bd85f0009b17e02091bd0c2747741c58cacbe bonzei <114619791+superschnups@users.noreply.github.com> 1779080348 +0200 commit: configFilesSammelbecken hinzugefügt
380bd85f0009b17e02091bd0c2747741c58cacbe e49a463cbcfbf085a08832f804c985fb55c2c9bb bonzei <114619791+superschnups@users.noreply.github.com> 1779315637 +0200 commit: script für shortcut manager hinzugefügt
e49a463cbcfbf085a08832f804c985fb55c2c9bb aad7143ac4a6a57a32b3975b1eb4e89df5a86241 bonzei <114619791+superschnups@users.noreply.github.com> 1779357013 +0200 commit: Auto-backup: 2026-05-21 11:50
aad7143ac4a6a57a32b3975b1eb4e89df5a86241 fb66991bddc643cb3c5da7f74332c5e8450d92a7 bonzei <114619791+superschnups@users.noreply.github.com> 1779402780 +0200 commit: Auto-backup: 2026-05-22 00:33
fb66991bddc643cb3c5da7f74332c5e8450d92a7 15f8a115b7c7f54daf96acc6de6185df7f833e54 bonzei <114619791+superschnups@users.noreply.github.com> 1779575581 +0200 commit: Auto-backup: 2026-05-24 00:33
15f8a115b7c7f54daf96acc6de6185df7f833e54 88a9080d0cacb505e06f5663368333ffe871c68e bonzei <114619791+superschnups@users.noreply.github.com> 1779661981 +0200 commit: Auto-backup: 2026-05-25 00:33
88a9080d0cacb505e06f5663368333ffe871c68e a27d33d68a2ac6d850a679bdd90adb18f8cff189 bonzei <114619791+superschnups@users.noreply.github.com> 1779921180 +0200 commit: Auto-backup: 2026-05-28 00:33
a27d33d68a2ac6d850a679bdd90adb18f8cff189 ec7097b96282437312853ba39254d0e2f17b36ba bonzei <114619791+superschnups@users.noreply.github.com> 1780007581 +0200 commit: Auto-backup: 2026-05-29 00:33
ec7097b96282437312853ba39254d0e2f17b36ba 0ff4e078bd0102f94c354fafd480832b8d8e77ad bonzei <114619791+superschnups@users.noreply.github.com> 1780093980 +0200 commit: Auto-backup: 2026-05-30 00:33
0ff4e078bd0102f94c354fafd480832b8d8e77ad e075bccaa3c39f70eb84708c0b1ee2bc8450e46c bonzei <114619791+superschnups@users.noreply.github.com> 1780180380 +0200 commit: Auto-backup: 2026-05-31 00:33
e075bccaa3c39f70eb84708c0b1ee2bc8450e46c 54c4d80c60fe5e759c754973d7f3c4d4c347819d bonzei <114619791+superschnups@users.noreply.github.com> 1780612381 +0200 commit: Auto-backup: 2026-06-05 00:33

View file

@ -0,0 +1,59 @@
41b62617210fe1b623c918d4971e425ce23e906a 9a69e0731cac232ad21873c332e9f31287cde8dc superschnups <114619791+superschnups@users.noreply.github.com> 1768770004 +0100 commit: Auto-backup: 2026-01-18 22:00
9a69e0731cac232ad21873c332e9f31287cde8dc 88b2742518ddf99477cf819f0442a02b5431fc79 superschnups <114619791+superschnups@users.noreply.github.com> 1768866202 +0100 commit: Auto-backup: 2026-01-20 00:43
88b2742518ddf99477cf819f0442a02b5431fc79 ac242806aae813c36639925c962934cf0d5d9dfe superschnups <114619791+superschnups@users.noreply.github.com> 1769118622 +0100 commit: Auto-backup: 2026-01-22 22:50
ac242806aae813c36639925c962934cf0d5d9dfe a30119662e57564fbceb957cbb336b024d688703 superschnups <114619791+superschnups@users.noreply.github.com> 1769296965 +0100 commit: Auto-backup: 2026-01-25 00:22
a30119662e57564fbceb957cbb336b024d688703 035b19f1c4cb34b40b6b78232c8d6b9c663d0a0e Sascha <rodegang@googlemail.com> 1769374969 +0100 commit: Auto-backup: 2026-01-25 22:02
035b19f1c4cb34b40b6b78232c8d6b9c663d0a0e 17dba2830bc1c1e41e786cc7ec21ca54c38c39da Sascha <rodegang@googlemail.com> 1769375487 +0100 commit: Auto-backup: 2026-01-25 22:11
17dba2830bc1c1e41e786cc7ec21ca54c38c39da 0f407fd971a4f12591558d9fafa6e645aabbbf2e Sascha <rodegang@googlemail.com> 1769375558 +0100 commit: Auto-backup: 2026-01-25 22:12
0f407fd971a4f12591558d9fafa6e645aabbbf2e 3e1ebdc24434b42d67de929610f2a6383d67c431 Sascha <rodegang@googlemail.com> 1770063623 +0100 commit: Auto-backup: 2026-02-02 21:20
3e1ebdc24434b42d67de929610f2a6383d67c431 49af7ddd8e4a932c7817e62f92b747f026d9e388 Sascha <rodegang@googlemail.com> 1770242401 +0100 commit: Auto-backup: 2026-02-04 23:00
49af7ddd8e4a932c7817e62f92b747f026d9e388 ef1bbf7a35ff26c7067c6711781c14127f0a906b Sascha <rodegang@googlemail.com> 1771020039 +0100 commit: Auto-backup: 2026-02-13 23:00
ef1bbf7a35ff26c7067c6711781c14127f0a906b 44de3f965f362a9b8645a7de9556df470362c4dd Sascha <rodegang@googlemail.com> 1771024397 +0100 commit: update halt
44de3f965f362a9b8645a7de9556df470362c4dd 23fb10eefc71657a508fc5cb2eaaa25347bb48e9 Sascha <rodegang@googlemail.com> 1771279202 +0100 commit: Auto-backup: 2026-02-16 23:00
23fb10eefc71657a508fc5cb2eaaa25347bb48e9 142e2eb75799ec413ff72c6003c1e1be53ac6d39 Sascha <rodegang@googlemail.com> 1771715224 +0100 commit (amend): Auto-backup: 2026-02-16 23:00
142e2eb75799ec413ff72c6003c1e1be53ac6d39 af30d3374adceedcb4da52691504fd62ce19e334 Sascha <rodegang@googlemail.com> 1771797600 +0100 commit: Auto-backup: 2026-02-22 23:00
af30d3374adceedcb4da52691504fd62ce19e334 69de6fed7b89cd7974bb31047b646a7ec6280701 Sascha <rodegang@googlemail.com> 1772056802 +0100 commit: Auto-backup: 2026-02-25 23:00
69de6fed7b89cd7974bb31047b646a7ec6280701 9105721c8b3fdb8316d33c4212800073dc049306 Sascha <rodegang@googlemail.com> 1772059256 +0100 commit: Auto-backup: 2026-02-25 23:40
9105721c8b3fdb8316d33c4212800073dc049306 c0f2c57f901e64092e395c393ae2e22bbe6c2c19 Sascha <rodegang@googlemail.com> 1772060274 +0100 commit: Auto-backup: 2026-02-25 23:57
c0f2c57f901e64092e395c393ae2e22bbe6c2c19 f747cb711330511887b8fc42d228bcc663c24efd Sascha <rodegang@googlemail.com> 1772060302 +0100 commit: Auto-backup: 2026-02-25 23:58
f747cb711330511887b8fc42d228bcc663c24efd 2d86e55dc513c43af8aa7c6962adc8b3ef85507a Sascha <rodegang@googlemail.com> 1772061195 +0100 commit: Auto-backup: 2026-02-26 00:13
2d86e55dc513c43af8aa7c6962adc8b3ef85507a 26a80d21d31cd0ce2a7c1ae83d95d5a9e5c7a9ff Sascha <rodegang@googlemail.com> 1772061225 +0100 commit: Auto-backup: 2026-02-26 00:13
26a80d21d31cd0ce2a7c1ae83d95d5a9e5c7a9ff c424b3e52f4298fe65344295e62ea986aafcc959 Sascha <rodegang@googlemail.com> 1772061272 +0100 commit: Auto-backup: 2026-02-26 00:14
c424b3e52f4298fe65344295e62ea986aafcc959 76579c3bf027b59d074168f47accf54aa965cf8d Sascha <rodegang@googlemail.com> 1772061286 +0100 commit: Auto-backup: 2026-02-26 00:14
76579c3bf027b59d074168f47accf54aa965cf8d 153387c7fb5571f50c78ae502c1733b6ec49bc51 Sascha <rodegang@googlemail.com> 1772061383 +0100 commit: Auto-backup: 2026-02-26 00:16
153387c7fb5571f50c78ae502c1733b6ec49bc51 1ae2e3eca333103d36dea70cbdff0e78b65eb6e8 Sascha <rodegang@googlemail.com> 1772061573 +0100 commit: Auto-backup: 2026-02-26 00:19
1ae2e3eca333103d36dea70cbdff0e78b65eb6e8 a9d60660bdb3b56e01e2837bd69f240b955ed18b Sascha <rodegang@googlemail.com> 1772061644 +0100 commit: Auto-backup: 2026-02-26 00:20
a9d60660bdb3b56e01e2837bd69f240b955ed18b 3a269b68cc896251b79fc1db4f50f3aa24403076 Sascha <rodegang@googlemail.com> 1772061707 +0100 commit: Auto-backup: 2026-02-26 00:21
3a269b68cc896251b79fc1db4f50f3aa24403076 c25bff95b332ce7a46221578067cd8f78d2579cc Sascha <rodegang@googlemail.com> 1772148674 +0100 commit: Auto-backup: 2026-02-27 00:31
c25bff95b332ce7a46221578067cd8f78d2579cc 3e2b7944c35cd08eb4b655d02aa6d3c1e625b681 Sascha <rodegang@googlemail.com> 1772229602 +0100 commit: Auto-backup: 2026-02-27 23:00
3e2b7944c35cd08eb4b655d02aa6d3c1e625b681 14e0a5e755dcd635bf022abbcd477c77a65c2a58 Sascha <rodegang@googlemail.com> 1772397944 +0100 commit: update halt
14e0a5e755dcd635bf022abbcd477c77a65c2a58 d302344e774f6434aa55c3a21a6a7323caf45871 Sascha <rodegang@googlemail.com> 1772748003 +0100 commit: Auto-backup: 2026-03-05 23:00
d302344e774f6434aa55c3a21a6a7323caf45871 983a6c83447d671c03e6aa410da6afa9993cdaeb Sascha <rodegang@googlemail.com> 1772750873 +0100 commit: Auto-backup: 2026-03-05 23:47
983a6c83447d671c03e6aa410da6afa9993cdaeb 2f0b79395fcccd0edfd49e790f89fe6403863ec4 Sascha <rodegang@googlemail.com> 1772751087 +0100 commit: Auto-backup: 2026-03-05 23:51
2f0b79395fcccd0edfd49e790f89fe6403863ec4 03dd86fa788f2aa81df0caf3f05d9527bf124708 Sascha <rodegang@googlemail.com> 1772751677 +0100 commit: Auto-backup: 2026-03-06 00:01
03dd86fa788f2aa81df0caf3f05d9527bf124708 97e2bd0e679d353a9bc035d09283ea233214e99c Sascha <rodegang@googlemail.com> 1772834408 +0100 commit: Auto-backup: 2026-03-06 23:00
97e2bd0e679d353a9bc035d09283ea233214e99c f6f3cee0812d7400a9eae0d33ab8bc2037b57d47 Sascha <rodegang@googlemail.com> 1772920801 +0100 commit: Auto-backup: 2026-03-07 23:00
f6f3cee0812d7400a9eae0d33ab8bc2037b57d47 249d970a90948ff7ef7c0b54260b8983527f231c Sascha <rodegang@googlemail.com> 1773180000 +0100 commit: Auto-backup: 2026-03-10 23:00
249d970a90948ff7ef7c0b54260b8983527f231c ba73f6d2a884ba9a6971e8b358ed1a928c7943f7 Sascha <rodegang@googlemail.com> 1773333437 +0100 commit: Lektion 1: Existenz-Prüfung abgeschlossen (Flux-Coding Workflow)
ba73f6d2a884ba9a6971e8b358ed1a928c7943f7 e2d5f4feb38f5fc883059cc11eecd24c9bafb530 Sascha <rodegang@googlemail.com> 1773439201 +0100 commit: Auto-backup: 2026-03-13 23:00
e2d5f4feb38f5fc883059cc11eecd24c9bafb530 9cdec965cc7b49bfa63e00e6195b9ca309ff4e53 Sascha <rodegang@googlemail.com> 1773698401 +0100 commit: Auto-backup: 2026-03-16 23:00
9cdec965cc7b49bfa63e00e6195b9ca309ff4e53 c215075f34a7b3e82577dab8aa1192680f604b44 Sascha <rodegang@googlemail.com> 1773784800 +0100 commit: Auto-backup: 2026-03-17 23:00
c215075f34a7b3e82577dab8aa1192680f604b44 a88524451d19e25156cf0b79ae2f1b63b3ca9b99 Sascha <rodegang@googlemail.com> 1773867789 +0100 commit: Auto-backup: 2026-03-18 22:03
a88524451d19e25156cf0b79ae2f1b63b3ca9b99 96ebe4f634d95dcab882d8c16f8c760f782ae54e Sascha <rodegang@googlemail.com> 1774389600 +0100 commit: Auto-backup: 2026-03-24 23:00
96ebe4f634d95dcab882d8c16f8c760f782ae54e 3cd4a7cf1b715912338c31b86a941064ae8f3ada Sascha <rodegang@googlemail.com> 1774476001 +0100 commit: Auto-backup: 2026-03-25 23:00
3cd4a7cf1b715912338c31b86a941064ae8f3ada eb05d76857b1d0f806def15cfbd5a1c3aee05861 Sascha <rodegang@googlemail.com> 1774562401 +0100 commit: Auto-backup: 2026-03-26 23:00
eb05d76857b1d0f806def15cfbd5a1c3aee05861 0b44043bbab426fda0d9153b38232f2575480c52 Sascha <rodegang@googlemail.com> 1774648801 +0100 commit: Auto-backup: 2026-03-27 23:00
0b44043bbab426fda0d9153b38232f2575480c52 4a958bfd0c851abe432a9dc52ea1d029516d5dbc Sascha <rodegang@googlemail.com> 1774735200 +0100 commit: Auto-backup: 2026-03-28 23:00
4a958bfd0c851abe432a9dc52ea1d029516d5dbc c9f87a431e8f4048cbf51024f86a238596e532c0 Sascha <rodegang@googlemail.com> 1774736087 +0100 commit: Auto-backup: 2026-03-28 23:14
c9f87a431e8f4048cbf51024f86a238596e532c0 2d99b51d0522c08fb1267aad3c8269602e4a362a Sascha <rodegang@googlemail.com> 1774818001 +0200 commit: Auto-backup: 2026-03-29 23:00
2d99b51d0522c08fb1267aad3c8269602e4a362a 63b478c10a38d0cf00977ed4cea7637fc7f46fb2 Sascha <rodegang@googlemail.com> 1775077201 +0200 commit: Auto-backup: 2026-04-01 23:00
63b478c10a38d0cf00977ed4cea7637fc7f46fb2 216c0185a447bef25cd961d8cf8ec5a4b25d4212 bonzei <phpoops@googlemail.com> 1775946959 +0200 commit: Auto-backup: 2026-04-12 00:35
216c0185a447bef25cd961d8cf8ec5a4b25d4212 b097213e89da03d62d9d16191c49d20330c4f274 bonzei <phpoops@googlemail.com> 1775947452 +0200 commit: Auto-backup: 2026-04-12 00:44
b097213e89da03d62d9d16191c49d20330c4f274 ea527ee73ae181f9aeadd9d3ebb6e420285d0927 bonzei <phpoops@googlemail.com> 1776282875 +0200 commit: Auto-backup: 2026-04-15 21:54
ea527ee73ae181f9aeadd9d3ebb6e420285d0927 ba0c4c98b884f5cb062110ff820897d932ac9fdf bonzei <phpoops@googlemail.com> 1776296421 +0200 commit: Auto-backup: 2026-04-16 01:40
ba0c4c98b884f5cb062110ff820897d932ac9fdf 4610267d921b1cc3258710d4d752ce45a11355a6 bonzei <phpoops@googlemail.com> 1776894449 +0200 commit: test
4610267d921b1cc3258710d4d752ce45a11355a6 f566d6af8ecc90ab61c62ff0551b2030fdcc0d83 bonzei <phpoops@googlemail.com> 1776894551 +0200 commit: origin
f566d6af8ecc90ab61c62ff0551b2030fdcc0d83 49ed2e550ef671a3cb97f13ce7e442c00d922365 bonzei <phpoops@googlemail.com> 1777661420 +0200 commit: 2026-05-01
49ed2e550ef671a3cb97f13ce7e442c00d922365 4dff5dc7088a4ee9234760d9260217a64b200522 bonzei <phpoops@googlemail.com> 1777708049 +0200 commit: last
4dff5dc7088a4ee9234760d9260217a64b200522 425c3e59d3623e886bfbf9b64a4a3863c83eabe8 bonzei <phpoops@googlemail.com> 1777770275 +0200 commit: neue .zshrc
425c3e59d3623e886bfbf9b64a4a3863c83eabe8 ea3bd71d83d43471f59027d994c3e796264a2cc4 bonzei <114619791+superschnups@users.noreply.github.com> 1778546052 +0200 commit: fuck alles gelöscht

View file

@ -0,0 +1,28 @@
0000000000000000000000000000000000000000 3f6417175e84de36f91fdbea99ef5bd0e58f51e5 bonzei <phpoops@googlemail.com> 1775944009 +0200 commit (initial): first commit
3f6417175e84de36f91fdbea99ef5bd0e58f51e5 3f6417175e84de36f91fdbea99ef5bd0e58f51e5 bonzei <phpoops@googlemail.com> 1775944009 +0200 Branch: renamed refs/heads/main to refs/heads/main
3f6417175e84de36f91fdbea99ef5bd0e58f51e5 ddbe56763d606e4c39f9897f8d866a50b4548d5f bonzei <phpoops@googlemail.com> 1775944114 +0200 commit: first commit
ddbe56763d606e4c39f9897f8d866a50b4548d5f 9899b947a8ef3078a526dc76330fed7998aff87a bonzei <phpoops@googlemail.com> 1775946960 +0200 commit: Auto-backup: 2026-04-12 00:36
9899b947a8ef3078a526dc76330fed7998aff87a ad8e5a5b8e02ba4bd9832d2f1471c9e51a4bc51b bonzei <phpoops@googlemail.com> 1775950397 +0200 commit: Add Hugo restart script and static files
ad8e5a5b8e02ba4bd9832d2f1471c9e51a4bc51b eaddeb16be67205315dd8db7145e9b7a84f8bde9 bonzei <phpoops@googlemail.com> 1776036267 +0200 commit: meine erfolge
eaddeb16be67205315dd8db7145e9b7a84f8bde9 fbbf85bfd731601e0c8bb86fd36a030d7ac0d6ce bonzei <phpoops@googlemail.com> 1776282877 +0200 commit: Auto-backup: 2026-04-15 21:54
fbbf85bfd731601e0c8bb86fd36a030d7ac0d6ce 4558a1638b23fe782becee1e496f1c3b3502c849 bonzei <phpoops@googlemail.com> 1776288079 +0200 commit: tets
4558a1638b23fe782becee1e496f1c3b3502c849 b8e4f6c20b80bdab05cb47d0ffcf268ac01ae258 bonzei <phpoops@googlemail.com> 1776894621 +0200 commit: origin
b8e4f6c20b80bdab05cb47d0ffcf268ac01ae258 0a6e506b02fade37e6eb512bd4aa1da72896f548 bonzei <phpoops@googlemail.com> 1776894714 +0200 commit: 2026-04-22
0a6e506b02fade37e6eb512bd4aa1da72896f548 52f7e61f472216b16d003e544fcbce8eeffaba7e bonzei <phpoops@googlemail.com> 1776894832 +0200 commit: 2026-04-22
52f7e61f472216b16d003e544fcbce8eeffaba7e dd5065a98c96e5b663ae2042bbeb89b04b4e616d bonzei <phpoops@googlemail.com> 1777398908 +0200 commit: Auto-backup: 2026-04-28 19:55
dd5065a98c96e5b663ae2042bbeb89b04b4e616d 875350d7b1a39d148ada93ef2877b274d510cfd5 bonzei <phpoops@googlemail.com> 1777662004 +0200 commit: Auto-backup: 2026-05-01 21:00
875350d7b1a39d148ada93ef2877b274d510cfd5 d5ccc01499d2357a97d4a649f909abe9c3da0e65 bonzei <114619791+superschnups@users.noreply.github.com> 1778278140 +0200 commit: ha
d5ccc01499d2357a97d4a649f909abe9c3da0e65 c9783ea5585bf33ce28cf408409e970ab332e8a0 bonzei <114619791+superschnups@users.noreply.github.com> 1778278322 +0200 commit: neu
c9783ea5585bf33ce28cf408409e970ab332e8a0 e58692de19858c5c031415ba80c510ddb3eafd2b bonzei <114619791+superschnups@users.noreply.github.com> 1778278356 +0200 commit: oksoisses
e58692de19858c5c031415ba80c510ddb3eafd2b b9c65ff32b5fb1ff9b3939f9f03ff5bdb9b17ef6 bonzei <114619791+superschnups@users.noreply.github.com> 1778545051 +0200 commit: Auto-backup: 2026-05-12 02:17
b9c65ff32b5fb1ff9b3939f9f03ff5bdb9b17ef6 d0db7805a962fb6ad09c4d419e3efbf77b49c744 bonzei <114619791+superschnups@users.noreply.github.com> 1779357116 +0200 commit: Auto-backup: 2026-05-21 11:51
d0db7805a962fb6ad09c4d419e3efbf77b49c744 4ce5539bcfb60024c0e01cac818fda169b20924e bonzei <114619791+superschnups@users.noreply.github.com> 1779402781 +0200 commit: Auto-backup: 2026-05-22 00:33
4ce5539bcfb60024c0e01cac818fda169b20924e 8b48cb742bc6ebbfa54fe9c40cf555f26d4e3f1f bonzei <114619791+superschnups@users.noreply.github.com> 1779489182 +0200 commit: Auto-backup: 2026-05-23 00:33
8b48cb742bc6ebbfa54fe9c40cf555f26d4e3f1f ee9b8bf94722cb2594698f7217e537c60b4fa1b4 bonzei <114619791+superschnups@users.noreply.github.com> 1779661982 +0200 commit: Auto-backup: 2026-05-25 00:33
ee9b8bf94722cb2594698f7217e537c60b4fa1b4 35345e6fcda387dc8f52c3990d592806041ab6e6 bonzei <114619791+superschnups@users.noreply.github.com> 1779748381 +0200 commit: Auto-backup: 2026-05-26 00:33
35345e6fcda387dc8f52c3990d592806041ab6e6 f2a3507eea31b0f8168b47877e1d08abc092767c bonzei <114619791+superschnups@users.noreply.github.com> 1779921182 +0200 commit: Auto-backup: 2026-05-28 00:33
f2a3507eea31b0f8168b47877e1d08abc092767c ad2ecd4bf7da56b32f6ccb58508c5ddf94493b6d bonzei <114619791+superschnups@users.noreply.github.com> 1780007583 +0200 commit: Auto-backup: 2026-05-29 00:33
ad2ecd4bf7da56b32f6ccb58508c5ddf94493b6d 57876b6a74dee6a139999beb5feda4a4353214ec bonzei <114619791+superschnups@users.noreply.github.com> 1780093982 +0200 commit: Auto-backup: 2026-05-30 00:33
57876b6a74dee6a139999beb5feda4a4353214ec ba2c3fdf86862d7e34570dcfebf972a63685cc09 bonzei <114619791+superschnups@users.noreply.github.com> 1780180398 +0200 commit: Auto-backup: 2026-05-31 00:33
ba2c3fdf86862d7e34570dcfebf972a63685cc09 63fa92d15e838d5c88f0f55ae4f09d9da7e3aa1b bonzei <114619791+superschnups@users.noreply.github.com> 1780266782 +0200 commit: Auto-backup: 2026-06-01 00:33
63fa92d15e838d5c88f0f55ae4f09d9da7e3aa1b 4428df4df4ee97153a72f4e1b8f62f5a95a45dc7 bonzei <114619791+superschnups@users.noreply.github.com> 1780612382 +0200 commit: Auto-backup: 2026-06-05 00:33

View file

@ -0,0 +1,24 @@
49af7ddd8e4a932c7817e62f92b747f026d9e388 49af7ddd8e4a932c7817e62f92b747f026d9e388 Sascha <sascha@MacMini.local> 1770504827 +0100 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1775950745 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1775952672 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1775954600 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1775956528 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@Mac-mini.fritz.box> 1775992654 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@Mac-mini.fritz.box> 1775994708 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@Mac-mini.fritz.box> 1775996807 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@Mac-mini.fritz.box> 1775998722 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776002001 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776003917 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776008979 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776013643 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776015600 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776017515 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776019430 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776021345 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776023671 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776025586 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776027501 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776029416 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776031332 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776033398 +0200 remote set-head
b097213e89da03d62d9d16191c49d20330c4f274 b097213e89da03d62d9d16191c49d20330c4f274 jessi <jessi@MacMini-2.local> 1776035313 +0200 remote set-head

View file

@ -0,0 +1,8 @@
0000000000000000000000000000000000000000 ddbe56763d606e4c39f9897f8d866a50b4548d5f bonzei <phpoops@googlemail.com> 1775946615 +0200 fetch
ddbe56763d606e4c39f9897f8d866a50b4548d5f ddbe56763d606e4c39f9897f8d866a50b4548d5f jessi <jessi@MacMini-2.local> 1775946615 +0200 remote set-head
9899b947a8ef3078a526dc76330fed7998aff87a 9899b947a8ef3078a526dc76330fed7998aff87a jessi <jessi@MacMini-2.local> 1775948543 +0200 remote set-head
ad8e5a5b8e02ba4bd9832d2f1471c9e51a4bc51b ad8e5a5b8e02ba4bd9832d2f1471c9e51a4bc51b jessi <jessi@MacMini-2.local> 1775950400 +0200 remote set-head
ad8e5a5b8e02ba4bd9832d2f1471c9e51a4bc51b ad8e5a5b8e02ba4bd9832d2f1471c9e51a4bc51b jessi <jessi@MacMini-2.local> 1776036225 +0200 remote set-head
eaddeb16be67205315dd8db7145e9b7a84f8bde9 eaddeb16be67205315dd8db7145e9b7a84f8bde9 jessi <jessi@MacMini-2.local> 1776036307 +0200 remote set-head
eaddeb16be67205315dd8db7145e9b7a84f8bde9 eaddeb16be67205315dd8db7145e9b7a84f8bde9 jessi <jessi@MacMini-2.local> 1776038357 +0200 remote set-head
eaddeb16be67205315dd8db7145e9b7a84f8bde9 eaddeb16be67205315dd8db7145e9b7a84f8bde9 jessi <jessi@MacMini-2.local> 1776040273 +0200 remote set-head

View file

@ -0,0 +1,42 @@
807c61ddb33d7473eff57dbb20d05ef2cf211edc 88b2742518ddf99477cf819f0442a02b5431fc79 superschnups <114619791+superschnups@users.noreply.github.com> 1768866202 +0100 update by push
88b2742518ddf99477cf819f0442a02b5431fc79 ac242806aae813c36639925c962934cf0d5d9dfe superschnups <114619791+superschnups@users.noreply.github.com> 1769118623 +0100 update by push
ac242806aae813c36639925c962934cf0d5d9dfe a30119662e57564fbceb957cbb336b024d688703 superschnups <114619791+superschnups@users.noreply.github.com> 1769296966 +0100 update by push
a30119662e57564fbceb957cbb336b024d688703 17dba2830bc1c1e41e786cc7ec21ca54c38c39da Sascha <rodegang@googlemail.com> 1769375488 +0100 update by push
17dba2830bc1c1e41e786cc7ec21ca54c38c39da 0f407fd971a4f12591558d9fafa6e645aabbbf2e Sascha <rodegang@googlemail.com> 1769375558 +0100 update by push
0f407fd971a4f12591558d9fafa6e645aabbbf2e 3e1ebdc24434b42d67de929610f2a6383d67c431 Sascha <rodegang@googlemail.com> 1770063624 +0100 update by push
3e1ebdc24434b42d67de929610f2a6383d67c431 49af7ddd8e4a932c7817e62f92b747f026d9e388 Sascha <rodegang@googlemail.com> 1770419696 +0100 update by push
49af7ddd8e4a932c7817e62f92b747f026d9e388 44de3f965f362a9b8645a7de9556df470362c4dd Sascha <rodegang@googlemail.com> 1771024419 +0100 update by push
44de3f965f362a9b8645a7de9556df470362c4dd 142e2eb75799ec413ff72c6003c1e1be53ac6d39 Sascha <rodegang@googlemail.com> 1771715267 +0100 update by push
142e2eb75799ec413ff72c6003c1e1be53ac6d39 9105721c8b3fdb8316d33c4212800073dc049306 Sascha <rodegang@googlemail.com> 1772059258 +0100 update by push
9105721c8b3fdb8316d33c4212800073dc049306 c0f2c57f901e64092e395c393ae2e22bbe6c2c19 Sascha <rodegang@googlemail.com> 1772060276 +0100 update by push
c0f2c57f901e64092e395c393ae2e22bbe6c2c19 f747cb711330511887b8fc42d228bcc663c24efd Sascha <rodegang@googlemail.com> 1772060303 +0100 update by push
f747cb711330511887b8fc42d228bcc663c24efd 2d86e55dc513c43af8aa7c6962adc8b3ef85507a Sascha <rodegang@googlemail.com> 1772061197 +0100 update by push
2d86e55dc513c43af8aa7c6962adc8b3ef85507a 26a80d21d31cd0ce2a7c1ae83d95d5a9e5c7a9ff Sascha <rodegang@googlemail.com> 1772061226 +0100 update by push
26a80d21d31cd0ce2a7c1ae83d95d5a9e5c7a9ff c424b3e52f4298fe65344295e62ea986aafcc959 Sascha <rodegang@googlemail.com> 1772061273 +0100 update by push
c424b3e52f4298fe65344295e62ea986aafcc959 76579c3bf027b59d074168f47accf54aa965cf8d Sascha <rodegang@googlemail.com> 1772061287 +0100 update by push
76579c3bf027b59d074168f47accf54aa965cf8d 153387c7fb5571f50c78ae502c1733b6ec49bc51 Sascha <rodegang@googlemail.com> 1772061384 +0100 update by push
153387c7fb5571f50c78ae502c1733b6ec49bc51 1ae2e3eca333103d36dea70cbdff0e78b65eb6e8 Sascha <rodegang@googlemail.com> 1772061575 +0100 update by push
1ae2e3eca333103d36dea70cbdff0e78b65eb6e8 a9d60660bdb3b56e01e2837bd69f240b955ed18b Sascha <rodegang@googlemail.com> 1772061645 +0100 update by push
a9d60660bdb3b56e01e2837bd69f240b955ed18b 3a269b68cc896251b79fc1db4f50f3aa24403076 Sascha <rodegang@googlemail.com> 1772061708 +0100 update by push
3a269b68cc896251b79fc1db4f50f3aa24403076 c25bff95b332ce7a46221578067cd8f78d2579cc Sascha <rodegang@googlemail.com> 1772148675 +0100 update by push
c25bff95b332ce7a46221578067cd8f78d2579cc 14e0a5e755dcd635bf022abbcd477c77a65c2a58 Sascha <rodegang@googlemail.com> 1772397959 +0100 update by push
14e0a5e755dcd635bf022abbcd477c77a65c2a58 983a6c83447d671c03e6aa410da6afa9993cdaeb Sascha <rodegang@googlemail.com> 1772750873 +0100 update by push
983a6c83447d671c03e6aa410da6afa9993cdaeb 2f0b79395fcccd0edfd49e790f89fe6403863ec4 Sascha <rodegang@googlemail.com> 1772751088 +0100 update by push
2f0b79395fcccd0edfd49e790f89fe6403863ec4 03dd86fa788f2aa81df0caf3f05d9527bf124708 Sascha <rodegang@googlemail.com> 1772751678 +0100 update by push
03dd86fa788f2aa81df0caf3f05d9527bf124708 ba73f6d2a884ba9a6971e8b358ed1a928c7943f7 Sascha <rodegang@googlemail.com> 1773333461 +0100 update by push
ba73f6d2a884ba9a6971e8b358ed1a928c7943f7 e2d5f4feb38f5fc883059cc11eecd24c9bafb530 Sascha <rodegang@googlemail.com> 1773451140 +0100 update by push
e2d5f4feb38f5fc883059cc11eecd24c9bafb530 a88524451d19e25156cf0b79ae2f1b63b3ca9b99 Sascha <rodegang@googlemail.com> 1773867790 +0100 update by push
a88524451d19e25156cf0b79ae2f1b63b3ca9b99 c9f87a431e8f4048cbf51024f86a238596e532c0 Sascha <rodegang@googlemail.com> 1774736088 +0100 update by push
c9f87a431e8f4048cbf51024f86a238596e532c0 216c0185a447bef25cd961d8cf8ec5a4b25d4212 bonzei <phpoops@googlemail.com> 1775946960 +0200 update by push
216c0185a447bef25cd961d8cf8ec5a4b25d4212 b097213e89da03d62d9d16191c49d20330c4f274 bonzei <phpoops@googlemail.com> 1775947453 +0200 update by push
b097213e89da03d62d9d16191c49d20330c4f274 ea527ee73ae181f9aeadd9d3ebb6e420285d0927 bonzei <phpoops@googlemail.com> 1776282875 +0200 update by push
ea527ee73ae181f9aeadd9d3ebb6e420285d0927 ba0c4c98b884f5cb062110ff820897d932ac9fdf bonzei <phpoops@googlemail.com> 1776296422 +0200 update by push
ba0c4c98b884f5cb062110ff820897d932ac9fdf f566d6af8ecc90ab61c62ff0551b2030fdcc0d83 bonzei <phpoops@googlemail.com> 1776894552 +0200 update by push
f566d6af8ecc90ab61c62ff0551b2030fdcc0d83 49ed2e550ef671a3cb97f13ce7e442c00d922365 bonzei <phpoops@googlemail.com> 1777661838 +0200 update by push
49ed2e550ef671a3cb97f13ce7e442c00d922365 4dff5dc7088a4ee9234760d9260217a64b200522 bonzei <phpoops@googlemail.com> 1777708066 +0200 update by push
4dff5dc7088a4ee9234760d9260217a64b200522 425c3e59d3623e886bfbf9b64a4a3863c83eabe8 bonzei <phpoops@googlemail.com> 1777770289 +0200 update by push
425c3e59d3623e886bfbf9b64a4a3863c83eabe8 f47c97870063e13c10e35b37ec98c6456830caf3 bonzei <114619791+superschnups@users.noreply.github.com> 1778546217 +0200 pull: fast-forward
f47c97870063e13c10e35b37ec98c6456830caf3 647c8ed59c74815525ffaa2b7478521a5d872ab5 bonzei <114619791+superschnups@users.noreply.github.com> 1778877984 +0200 update by push
647c8ed59c74815525ffaa2b7478521a5d872ab5 380bd85f0009b17e02091bd0c2747741c58cacbe bonzei <114619791+superschnups@users.noreply.github.com> 1779080357 +0200 update by push
380bd85f0009b17e02091bd0c2747741c58cacbe e49a463cbcfbf085a08832f804c985fb55c2c9bb bonzei <114619791+superschnups@users.noreply.github.com> 1779315646 +0200 update by push
e49a463cbcfbf085a08832f804c985fb55c2c9bb aad7143ac4a6a57a32b3975b1eb4e89df5a86241 bonzei <114619791+superschnups@users.noreply.github.com> 1779357014 +0200 update by push

View file

@ -0,0 +1,15 @@
0000000000000000000000000000000000000000 3f6417175e84de36f91fdbea99ef5bd0e58f51e5 bonzei <phpoops@googlemail.com> 1775944010 +0200 update by push
3f6417175e84de36f91fdbea99ef5bd0e58f51e5 ddbe56763d606e4c39f9897f8d866a50b4548d5f bonzei <phpoops@googlemail.com> 1775944128 +0200 update by push
ddbe56763d606e4c39f9897f8d866a50b4548d5f 9899b947a8ef3078a526dc76330fed7998aff87a bonzei <phpoops@googlemail.com> 1775946961 +0200 update by push
9899b947a8ef3078a526dc76330fed7998aff87a ad8e5a5b8e02ba4bd9832d2f1471c9e51a4bc51b bonzei <phpoops@googlemail.com> 1775950400 +0200 update by push
ad8e5a5b8e02ba4bd9832d2f1471c9e51a4bc51b eaddeb16be67205315dd8db7145e9b7a84f8bde9 bonzei <phpoops@googlemail.com> 1776036306 +0200 update by push
eaddeb16be67205315dd8db7145e9b7a84f8bde9 fbbf85bfd731601e0c8bb86fd36a030d7ac0d6ce bonzei <phpoops@googlemail.com> 1776282878 +0200 update by push
fbbf85bfd731601e0c8bb86fd36a030d7ac0d6ce 4558a1638b23fe782becee1e496f1c3b3502c849 bonzei <phpoops@googlemail.com> 1776288080 +0200 update by push
4558a1638b23fe782becee1e496f1c3b3502c849 b8e4f6c20b80bdab05cb47d0ffcf268ac01ae258 bonzei <phpoops@googlemail.com> 1776894623 +0200 update by push
b8e4f6c20b80bdab05cb47d0ffcf268ac01ae258 52f7e61f472216b16d003e544fcbce8eeffaba7e bonzei <phpoops@googlemail.com> 1776894833 +0200 update by push
52f7e61f472216b16d003e544fcbce8eeffaba7e dd5065a98c96e5b663ae2042bbeb89b04b4e616d bonzei <phpoops@googlemail.com> 1777398909 +0200 update by push
dd5065a98c96e5b663ae2042bbeb89b04b4e616d 875350d7b1a39d148ada93ef2877b274d510cfd5 bonzei <phpoops@googlemail.com> 1777662005 +0200 update by push
875350d7b1a39d148ada93ef2877b274d510cfd5 d5ccc01499d2357a97d4a649f909abe9c3da0e65 bonzei <114619791+superschnups@users.noreply.github.com> 1778278166 +0200 update by push
d5ccc01499d2357a97d4a649f909abe9c3da0e65 e58692de19858c5c031415ba80c510ddb3eafd2b bonzei <114619791+superschnups@users.noreply.github.com> 1778278417 +0200 update by push
e58692de19858c5c031415ba80c510ddb3eafd2b b9c65ff32b5fb1ff9b3939f9f03ff5bdb9b17ef6 bonzei <114619791+superschnups@users.noreply.github.com> 1778545057 +0200 update by push
b9c65ff32b5fb1ff9b3939f9f03ff5bdb9b17ef6 d0db7805a962fb6ad09c4d419e3efbf77b49c744 bonzei <114619791+superschnups@users.noreply.github.com> 1779357117 +0200 update by push

View file

@ -0,0 +1 @@
x}<7D>=oТ0<10>;ћW<D19B>ФРBЈZбЁ<D0B1>АД*j'<27><>э\<5C>ЧgљЃUў} <0A>fЈТ<66>їќМЇ +xz<78>н<EFBFBD>рЃС<D083> =BHЮБ<D0AE>XB<58>lIЖ<49><D096>K4р<34><D180>ћ6QSl<53><6C>УжщеN8=В<>У6<>A<EFBFBD><EFBFBD><19>ђ<02>№~ єVЖ(иЁнk6uЄ/NЎ3Ы?Апpф}EУЙ7.*ъщHЙUqжЕїZS(Вe!<21>3]б <71>амЖЩRьіЪSYпаZ^IX<49>Ip<49>ЙKqj8­Їа<>SYT<59>Яш;aHЁ<48>NvУЮЋ+в{S <09>јаm_OШKFњGд на__<5F>>ЁS<D081>мўћ$9<> <33>!8Ж<38>}hШСчf~<7E><6E>ьёa<<3C>ѓуqМ? +дє

View file

@ -0,0 +1,2 @@
x}QÉnÂ0í9_ñ”ìHI]. úôŽ88É Ü¦vjO@ñï³Tp©eƳ¼ešÞ7x<37>¾<¨1"Û²šgÙÖXjoô3Ú@ZÕõDóS)Þ¥Ø tÍ}ûöë#ø<>ïoÛÓ5\©8KS´ÚmÈaÑ|
ÚãÆÄÅÎýuÛˆŽzbêT‰õèZ¶ÞAs<EFBFBD>C9\½qz*ÃR˜xt9-Qây5Çdнu\u6š¦§JóULˆTIƒÙÇì2<C3AC>É„ÎU¡ßSM-ÜÙó~ 2þ pýH3<áX' Þa¹Ž¨£ìaÚÖ<C39A>ޱö¹u9¶ù½Èü_ä³/·Ðê¾]Œ9@<40>]R3péÄç*Hgz}Ù¦±E µLĬҎò~=¨©¬

View file

@ -0,0 +1,3 @@
xEŒÁ
Â0=ç+ÞQ<C39E>
^Û_ˆ¿Ð$[QÂnH¶¡ïÁVOÃ0!KÀùr=$Šyª„yá¨Oa<HïUTnÔ•85HxQÔñø¥…?ÙÍa/9;cöOnŠn¡ïB2ÿvÿzªÐÝJP.Q

Some files were not shown because too many files have changed in this diff Show more