diff --git a/README.md b/README.md deleted file mode 100644 index 9c29217..0000000 --- a/README.md +++ /dev/null @@ -1,6 +0,0 @@ -# git-test-resources - -The sole purpose of this repository is to provide actual -integration test data for any project under the git-commit-id realm. -Those are actually commited .git directories. -Those are used during **integration tests** - now it doesn't sound silly but rather awesome, right? ;-) diff --git a/_git_lightweight_tag_before_annotated_tag/COMMIT_EDITMSG b/_git_lightweight_tag_before_annotated_tag/COMMIT_EDITMSG deleted file mode 100644 index 0d91be5..0000000 --- a/_git_lightweight_tag_before_annotated_tag/COMMIT_EDITMSG +++ /dev/null @@ -1,9 +0,0 @@ -third addition -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# On branch master -# Changes to be committed: -# (use "git reset HEAD ..." to unstage) -# -# modified: it -# diff --git a/_git_lightweight_tag_before_annotated_tag/HEAD b/_git_lightweight_tag_before_annotated_tag/HEAD deleted file mode 100644 index cb089cd..0000000 --- a/_git_lightweight_tag_before_annotated_tag/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/_git_lightweight_tag_before_annotated_tag/config b/_git_lightweight_tag_before_annotated_tag/config deleted file mode 100644 index af10792..0000000 --- a/_git_lightweight_tag_before_annotated_tag/config +++ /dev/null @@ -1,6 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - ignorecase = true diff --git a/_git_lightweight_tag_before_annotated_tag/description b/_git_lightweight_tag_before_annotated_tag/description deleted file mode 100644 index 498b267..0000000 --- a/_git_lightweight_tag_before_annotated_tag/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_lightweight_tag_before_annotated_tag/hooks/applypatch-msg.sample b/_git_lightweight_tag_before_annotated_tag/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/_git_lightweight_tag_before_annotated_tag/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_lightweight_tag_before_annotated_tag/hooks/commit-msg.sample b/_git_lightweight_tag_before_annotated_tag/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/_git_lightweight_tag_before_annotated_tag/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_lightweight_tag_before_annotated_tag/hooks/post-update.sample b/_git_lightweight_tag_before_annotated_tag/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/_git_lightweight_tag_before_annotated_tag/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_lightweight_tag_before_annotated_tag/hooks/pre-applypatch.sample b/_git_lightweight_tag_before_annotated_tag/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/_git_lightweight_tag_before_annotated_tag/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_lightweight_tag_before_annotated_tag/hooks/pre-commit.sample b/_git_lightweight_tag_before_annotated_tag/hooks/pre-commit.sample deleted file mode 100755 index 18c4829..0000000 --- a/_git_lightweight_tag_before_annotated_tag/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_lightweight_tag_before_annotated_tag/hooks/pre-rebase.sample b/_git_lightweight_tag_before_annotated_tag/hooks/pre-rebase.sample deleted file mode 100755 index 16b4794..0000000 --- a/_git_lightweight_tag_before_annotated_tag/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /opt/local/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 - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_lightweight_tag_before_annotated_tag/hooks/prepare-commit-msg.sample b/_git_lightweight_tag_before_annotated_tag/hooks/prepare-commit-msg.sample deleted file mode 100755 index d0a7248..0000000 --- a/_git_lightweight_tag_before_annotated_tag/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /opt/local/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /opt/local/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_lightweight_tag_before_annotated_tag/hooks/update.sample b/_git_lightweight_tag_before_annotated_tag/hooks/update.sample deleted file mode 100755 index 71ab04e..0000000 --- a/_git_lightweight_tag_before_annotated_tag/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_lightweight_tag_before_annotated_tag/index b/_git_lightweight_tag_before_annotated_tag/index deleted file mode 100644 index 52bd681..0000000 Binary files a/_git_lightweight_tag_before_annotated_tag/index and /dev/null differ diff --git a/_git_lightweight_tag_before_annotated_tag/info/exclude b/_git_lightweight_tag_before_annotated_tag/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_lightweight_tag_before_annotated_tag/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_lightweight_tag_before_annotated_tag/logs/HEAD b/_git_lightweight_tag_before_annotated_tag/logs/HEAD deleted file mode 100644 index 29a70f1..0000000 --- a/_git_lightweight_tag_before_annotated_tag/logs/HEAD +++ /dev/null @@ -1,3 +0,0 @@ -0000000000000000000000000000000000000000 95975455ef2b1af048f2926b9ba7fb804e22171b Konrad Malawski 1345901379 +0200 commit (initial): initial commit -95975455ef2b1af048f2926b9ba7fb804e22171b d37a598a7a98531ad1375966642c6b1263129436 Konrad Malawski 1345901396 +0200 commit: second line -d37a598a7a98531ad1375966642c6b1263129436 b6a73ed747dd8dc98642d731ddbf09824efb9d48 Konrad Malawski 1345901523 +0200 commit: third addition diff --git a/_git_lightweight_tag_before_annotated_tag/logs/refs/heads/master b/_git_lightweight_tag_before_annotated_tag/logs/refs/heads/master deleted file mode 100644 index 29a70f1..0000000 --- a/_git_lightweight_tag_before_annotated_tag/logs/refs/heads/master +++ /dev/null @@ -1,3 +0,0 @@ -0000000000000000000000000000000000000000 95975455ef2b1af048f2926b9ba7fb804e22171b Konrad Malawski 1345901379 +0200 commit (initial): initial commit -95975455ef2b1af048f2926b9ba7fb804e22171b d37a598a7a98531ad1375966642c6b1263129436 Konrad Malawski 1345901396 +0200 commit: second line -d37a598a7a98531ad1375966642c6b1263129436 b6a73ed747dd8dc98642d731ddbf09824efb9d48 Konrad Malawski 1345901523 +0200 commit: third addition diff --git a/_git_lightweight_tag_before_annotated_tag/objects/61/ccc0904609773ec1342dd7640f3b7e8ddb9f2b b/_git_lightweight_tag_before_annotated_tag/objects/61/ccc0904609773ec1342dd7640f3b7e8ddb9f2b deleted file mode 100644 index dbff3cb..0000000 Binary files a/_git_lightweight_tag_before_annotated_tag/objects/61/ccc0904609773ec1342dd7640f3b7e8ddb9f2b and /dev/null differ diff --git a/_git_lightweight_tag_before_annotated_tag/objects/6d/af66eea8f78d4f8ab1337f214949a4fc097869 b/_git_lightweight_tag_before_annotated_tag/objects/6d/af66eea8f78d4f8ab1337f214949a4fc097869 deleted file mode 100644 index ab2521f..0000000 Binary files a/_git_lightweight_tag_before_annotated_tag/objects/6d/af66eea8f78d4f8ab1337f214949a4fc097869 and /dev/null differ diff --git a/_git_lightweight_tag_before_annotated_tag/objects/88/2476235ef06c5f2cc59325a04ba761988cde36 b/_git_lightweight_tag_before_annotated_tag/objects/88/2476235ef06c5f2cc59325a04ba761988cde36 deleted file mode 100644 index 90f1945..0000000 Binary files a/_git_lightweight_tag_before_annotated_tag/objects/88/2476235ef06c5f2cc59325a04ba761988cde36 and /dev/null differ diff --git a/_git_lightweight_tag_before_annotated_tag/objects/95/975455ef2b1af048f2926b9ba7fb804e22171b b/_git_lightweight_tag_before_annotated_tag/objects/95/975455ef2b1af048f2926b9ba7fb804e22171b deleted file mode 100644 index 0177489..0000000 Binary files a/_git_lightweight_tag_before_annotated_tag/objects/95/975455ef2b1af048f2926b9ba7fb804e22171b and /dev/null differ diff --git a/_git_lightweight_tag_before_annotated_tag/objects/b6/a73ed747dd8dc98642d731ddbf09824efb9d48 b/_git_lightweight_tag_before_annotated_tag/objects/b6/a73ed747dd8dc98642d731ddbf09824efb9d48 deleted file mode 100644 index 9dbb4bc..0000000 Binary files a/_git_lightweight_tag_before_annotated_tag/objects/b6/a73ed747dd8dc98642d731ddbf09824efb9d48 and /dev/null differ diff --git a/_git_lightweight_tag_before_annotated_tag/objects/b9/c7d2fd2d966bc133dca9309bdf07b106e3c24b b/_git_lightweight_tag_before_annotated_tag/objects/b9/c7d2fd2d966bc133dca9309bdf07b106e3c24b deleted file mode 100644 index b187667..0000000 Binary files a/_git_lightweight_tag_before_annotated_tag/objects/b9/c7d2fd2d966bc133dca9309bdf07b106e3c24b and /dev/null differ diff --git a/_git_lightweight_tag_before_annotated_tag/objects/d3/7a598a7a98531ad1375966642c6b1263129436 b/_git_lightweight_tag_before_annotated_tag/objects/d3/7a598a7a98531ad1375966642c6b1263129436 deleted file mode 100644 index da741b6..0000000 --- a/_git_lightweight_tag_before_annotated_tag/objects/d3/7a598a7a98531ad1375966642c6b1263129436 +++ /dev/null @@ -1,2 +0,0 @@ -xMj0 @} -[CȎDIq Cox}_$EsYR.C )(VjCQ$L*gAtUc ѿM·HyJphi)/~,_OP \ No newline at end of file diff --git a/_git_lightweight_tag_before_annotated_tag/objects/d3/abc1fbcd51cb94417d372800f4d3011e766b5c b/_git_lightweight_tag_before_annotated_tag/objects/d3/abc1fbcd51cb94417d372800f4d3011e766b5c deleted file mode 100644 index cfd94c1..0000000 Binary files a/_git_lightweight_tag_before_annotated_tag/objects/d3/abc1fbcd51cb94417d372800f4d3011e766b5c and /dev/null differ diff --git a/_git_lightweight_tag_before_annotated_tag/objects/d8/e7c365bb6cf6305194444ce4fb3f380a62930d b/_git_lightweight_tag_before_annotated_tag/objects/d8/e7c365bb6cf6305194444ce4fb3f380a62930d deleted file mode 100644 index 0a53d19..0000000 Binary files a/_git_lightweight_tag_before_annotated_tag/objects/d8/e7c365bb6cf6305194444ce4fb3f380a62930d and /dev/null differ diff --git a/_git_lightweight_tag_before_annotated_tag/objects/e4/f1ea5178a7d2ebf53277503fa1ae2ae7ffa546 b/_git_lightweight_tag_before_annotated_tag/objects/e4/f1ea5178a7d2ebf53277503fa1ae2ae7ffa546 deleted file mode 100644 index 80d629b..0000000 Binary files a/_git_lightweight_tag_before_annotated_tag/objects/e4/f1ea5178a7d2ebf53277503fa1ae2ae7ffa546 and /dev/null differ diff --git a/_git_lightweight_tag_before_annotated_tag/refs/heads/master b/_git_lightweight_tag_before_annotated_tag/refs/heads/master deleted file mode 100644 index bad2097..0000000 --- a/_git_lightweight_tag_before_annotated_tag/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -b6a73ed747dd8dc98642d731ddbf09824efb9d48 diff --git a/_git_lightweight_tag_before_annotated_tag/refs/tags/annotated-tag b/_git_lightweight_tag_before_annotated_tag/refs/tags/annotated-tag deleted file mode 100644 index ef51d68..0000000 --- a/_git_lightweight_tag_before_annotated_tag/refs/tags/annotated-tag +++ /dev/null @@ -1 +0,0 @@ -882476235ef06c5f2cc59325a04ba761988cde36 diff --git a/_git_lightweight_tag_before_annotated_tag/refs/tags/lightweight-tag b/_git_lightweight_tag_before_annotated_tag/refs/tags/lightweight-tag deleted file mode 100644 index b011450..0000000 --- a/_git_lightweight_tag_before_annotated_tag/refs/tags/lightweight-tag +++ /dev/null @@ -1 +0,0 @@ -d37a598a7a98531ad1375966642c6b1263129436 diff --git a/_git_of_git_commit_id/COMMIT_EDITMSG b/_git_of_git_commit_id/COMMIT_EDITMSG deleted file mode 100644 index f085d68..0000000 --- a/_git_of_git_commit_id/COMMIT_EDITMSG +++ /dev/null @@ -1,21 +0,0 @@ -our own Pair + using `--always` -refs - -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# On branch master -# Your branch is ahead of 'origin/master' by 1 commit. -# -# Changes to be committed: -# (use "git reset HEAD^1 ..." to unstage) -# -# modified: src/main/java/pl/project13/jgit/DescribeCommand.java -# modified: src/main/java/pl/project13/jgit/DescribeResult.java -# new file: src/main/java/pl/project13/maven/git/util/Pair.java -# -# Changes not staged for commit: -# (use "git add ..." to update what will be committed) -# (use "git checkout -- ..." to discard changes in working directory) -# -# modified: src/test/java/pl/project13/maven/git/TemporaryMavenProject.java -# diff --git a/_git_of_git_commit_id/FETCH_HEAD b/_git_of_git_commit_id/FETCH_HEAD deleted file mode 100644 index fe0706d..0000000 --- a/_git_of_git_commit_id/FETCH_HEAD +++ /dev/null @@ -1 +0,0 @@ -86d27d701eceaa868cc9c0bf77087aefc0d8cf65 branch 'master' of github.com:ktoso/maven-git-commit-id-plugin diff --git a/_git_of_git_commit_id/HEAD b/_git_of_git_commit_id/HEAD deleted file mode 100644 index cb089cd..0000000 --- a/_git_of_git_commit_id/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/_git_of_git_commit_id/ORIG_HEAD b/_git_of_git_commit_id/ORIG_HEAD deleted file mode 100644 index c93357d..0000000 --- a/_git_of_git_commit_id/ORIG_HEAD +++ /dev/null @@ -1 +0,0 @@ -a3575137db7559e64e252c9d87e64b31bdd6ec3e diff --git a/_git_of_git_commit_id/config b/_git_of_git_commit_id/config deleted file mode 100644 index b9e75db..0000000 --- a/_git_of_git_commit_id/config +++ /dev/null @@ -1,17 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true -[remote "origin"] - fetch = +refs/heads/*:refs/remotes/origin/* - url = git@github.com:ktoso/maven-git-commit-id-plugin.git -[branch "master"] - remote = origin - merge = refs/heads/master -[remote "mostr"] - url = https://github.com/mostr/maven-git-commit-id-plugin.git - fetch = +refs/heads/*:refs/remotes/mostr/* -[branch "mostr_refactor_gitdir_lookup"] - remote = mostr - merge = refs/heads/refactor_gitdir_lookup diff --git a/_git_of_git_commit_id/description b/_git_of_git_commit_id/description deleted file mode 100644 index 498b267..0000000 --- a/_git_of_git_commit_id/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_of_git_commit_id/hooks/applypatch-msg.sample b/_git_of_git_commit_id/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/_git_of_git_commit_id/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_of_git_commit_id/hooks/commit-msg.sample b/_git_of_git_commit_id/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/_git_of_git_commit_id/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_of_git_commit_id/hooks/post-update.sample b/_git_of_git_commit_id/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/_git_of_git_commit_id/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_of_git_commit_id/hooks/pre-applypatch.sample b/_git_of_git_commit_id/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/_git_of_git_commit_id/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_of_git_commit_id/hooks/pre-commit.sample b/_git_of_git_commit_id/hooks/pre-commit.sample deleted file mode 100755 index 18c4829..0000000 --- a/_git_of_git_commit_id/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_of_git_commit_id/hooks/pre-rebase.sample b/_git_of_git_commit_id/hooks/pre-rebase.sample deleted file mode 100755 index 9773ed4..0000000 --- a/_git_of_git_commit_id/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_of_git_commit_id/hooks/prepare-commit-msg.sample b/_git_of_git_commit_id/hooks/prepare-commit-msg.sample deleted file mode 100755 index f093a02..0000000 --- a/_git_of_git_commit_id/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_of_git_commit_id/hooks/update.sample b/_git_of_git_commit_id/hooks/update.sample deleted file mode 100755 index 71ab04e..0000000 --- a/_git_of_git_commit_id/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_of_git_commit_id/index b/_git_of_git_commit_id/index deleted file mode 100644 index 6c03d36..0000000 Binary files a/_git_of_git_commit_id/index and /dev/null differ diff --git a/_git_of_git_commit_id/info/exclude b/_git_of_git_commit_id/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_of_git_commit_id/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_of_git_commit_id/logs/HEAD b/_git_of_git_commit_id/logs/HEAD deleted file mode 100644 index 507e82f..0000000 --- a/_git_of_git_commit_id/logs/HEAD +++ /dev/null @@ -1,61 +0,0 @@ -0000000000000000000000000000000000000000 4266d244c6308f0347a13fd8761dbc532b271ca5 Konrad Malawski 1324731667 +0100 clone: from git@github.com:ktoso/maven-git-commit-id-plugin.git -4266d244c6308f0347a13fd8761dbc532b271ca5 c444c5bf965d02c70356137ae1acd7b981915114 Konrad Malawski 1324736437 +0100 commit: updated jgit version -c444c5bf965d02c70356137ae1acd7b981915114 e2d4fb2d63fb0f25ae168281d7dadfeb131bc110 Konrad Malawski 1324736530 +0100 commit: [maven-release-plugin] prepare release v2.0 -e2d4fb2d63fb0f25ae168281d7dadfeb131bc110 f238a51a0c4dbfba0ca1087496670b2a3e1c1a4c Konrad Malawski 1324736538 +0100 commit: [maven-release-plugin] prepare for next development iteration -f238a51a0c4dbfba0ca1087496670b2a3e1c1a4c 2e1832a5a66f932f3a12ca8755f6ec2a6c425428 Konrad Malawski 1324736718 +0100 commit: [maven-release-plugin] prepare release v2.0.1 -2e1832a5a66f932f3a12ca8755f6ec2a6c425428 f9597b2f0b581bcf5c1dd435b81cd6e09e5c621f Konrad Malawski 1324736738 +0100 commit: [maven-release-plugin] prepare for next development iteration -f9597b2f0b581bcf5c1dd435b81cd6e09e5c621f 67460d1eccbe5f7ffe3ad8cf6081c9c02acd2863 Konrad Malawski 1325875696 +0100 commit: added support for forcing the plugin to run on pom packaged projects -67460d1eccbe5f7ffe3ad8cf6081c9c02acd2863 1006068bfa171395ba875c02506eafcdc905aec0 Konrad Malawski 1329983761 +0100 commit: fix for multimodule projects, as SvS suggested -1006068bfa171395ba875c02506eafcdc905aec0 6a738324177546f10e1381284da685a51bef856f Konrad Malawski 1329983778 +0100 checkout: moving from master to 6a738324177546f10e1381284da685a51bef856f^0 -6a738324177546f10e1381284da685a51bef856f c61bfc2dc1b3d3515220f123d6258e4a1f6de95a Konrad Malawski 1329983778 +0100 rebase: fix for multimodule projects, as SvS suggested -c61bfc2dc1b3d3515220f123d6258e4a1f6de95a 91051645416518379179bfb5f2e06f4a066a03c2 Konrad Malawski 1330183414 +0100 commit: adding travis -91051645416518379179bfb5f2e06f4a066a03c2 7decb421bc38a486eb7be3edbc10d8aed085e114 Konrad Malawski 1330183427 +0100 checkout: moving from master to 7decb421bc38a486eb7be3edbc10d8aed085e114^0 -7decb421bc38a486eb7be3edbc10d8aed085e114 2e39ea3027a3547abd71c3b6c60c4ca5388b4b68 Konrad Malawski 1330183427 +0100 pull --rebase: adding travis -2e39ea3027a3547abd71c3b6c60c4ca5388b4b68 2e39ea3027a3547abd71c3b6c60c4ca5388b4b68 Konrad Malawski 1330183427 +0100 rebase finished: returning to refs/heads/master -2e39ea3027a3547abd71c3b6c60c4ca5388b4b68 ca77c2de57e1ae72add31a7216200288359fccf4 Konrad Malawski 1341217068 +0200 checkout: moving from master to ca77c2de57e1ae72add31a7216200288359fccf4^0 -ca77c2de57e1ae72add31a7216200288359fccf4 a3b884764845d40ab1a1abdc293825ae0da55bb8 Konrad Malawski 1341217891 +0200 commit: [maven-release-plugin] prepare release v2.0.4 -a3b884764845d40ab1a1abdc293825ae0da55bb8 cca0fe43ebfd188504592cc5dab9db8319e7609d Konrad Malawski 1341217897 +0200 commit: [maven-release-plugin] prepare for next development iteration -cca0fe43ebfd188504592cc5dab9db8319e7609d 7ae0a659349400afa26e0fcf00d59cdc5446c7f0 Konrad Malawski 1345056474 +0200 checkout: moving from master to 7ae0a659349400afa26e0fcf00d59cdc5446c7f0^0 -7ae0a659349400afa26e0fcf00d59cdc5446c7f0 7ae0a659349400afa26e0fcf00d59cdc5446c7f0 Konrad Malawski 1345056474 +0200 rebase finished: returning to refs/heads/master -7ae0a659349400afa26e0fcf00d59cdc5446c7f0 d1f83562596af27cfcaaa0f6d87b24c8a56c1703 Konrad Malawski 1345059172 +0200 commit: nicer test failure -d1f83562596af27cfcaaa0f6d87b24c8a56c1703 b646389e690cf71fd75c83c2aa8949d6e550db49 Konrad Malawski 1345062387 +0200 commit: nicer test failure -b646389e690cf71fd75c83c2aa8949d6e550db49 c8ff632df6d6ab362ec02cc1b20a527f69ca741d Konrad Malawski 1345062435 +0200 commit: minor cleanup -c8ff632df6d6ab362ec02cc1b20a527f69ca741d affad5022ca2549d53cfc344d9aac497aa8e1e12 Konrad Malawski 1345064510 +0200 checkout: moving from master to affad5022ca2549d53cfc344d9aac497aa8e1e12^0 -affad5022ca2549d53cfc344d9aac497aa8e1e12 c8ff632df6d6ab362ec02cc1b20a527f69ca741d Konrad Malawski 1345064712 +0200 rebase: aborting -c8ff632df6d6ab362ec02cc1b20a527f69ca741d 33ad86f74c66323455de935ea5ab63082b248204 Konrad Malawski 1345064742 +0200 checkout: moving from master to mostr_refactor_gitdir_lookup -33ad86f74c66323455de935ea5ab63082b248204 3c7dbd226418ad742b89ce73d86900b18d41dbb2 Konrad Malawski 1345064877 +0200 commit: global reformat, to fit projects formatting -3c7dbd226418ad742b89ce73d86900b18d41dbb2 c8ff632df6d6ab362ec02cc1b20a527f69ca741d Konrad Malawski 1345064889 +0200 checkout: moving from mostr_refactor_gitdir_lookup to master -c8ff632df6d6ab362ec02cc1b20a527f69ca741d 3c7dbd226418ad742b89ce73d86900b18d41dbb2 Konrad Malawski 1345064903 +0200 checkout: moving from master to mostr_refactor_gitdir_lookup -3c7dbd226418ad742b89ce73d86900b18d41dbb2 c8ff632df6d6ab362ec02cc1b20a527f69ca741d Konrad Malawski 1345064906 +0200 checkout: moving from mostr_refactor_gitdir_lookup to c8ff632df6d6ab362ec02cc1b20a527f69ca741d^0 -c8ff632df6d6ab362ec02cc1b20a527f69ca741d 6b724f7a9f28cf24db72f6d31c1f407f965804c0 Konrad Malawski 1345064906 +0200 rebase: gitignore eclipse specific files -6b724f7a9f28cf24db72f6d31c1f407f965804c0 07d3c8682c6932c7e1ebaa12ef4aa2370bb47dbe Konrad Malawski 1345064906 +0200 rebase: update to new jgit and junit dependency versions -07d3c8682c6932c7e1ebaa12ef4aa2370bb47dbe 79e5157dcfff69af5c7cb59f1eeaae12255e3fba Konrad Malawski 1345064932 +0200 rebase: integration test with default settings -79e5157dcfff69af5c7cb59f1eeaae12255e3fba 07751578e7ed568acb2418f4a2748de6d24c73c8 Konrad Malawski 1345064932 +0200 rebase: few more integration tests -07751578e7ed568acb2418f4a2748de6d24c73c8 2380a899905ee320c55c41789c75b6a36f6ea8f8 Konrad Malawski 1345065479 +0200 rebase: refactored to parametrized method -2380a899905ee320c55c41789c75b6a36f6ea8f8 3a3b2b6dbad13bdccebeb1aeb24bf3c4d0c00a8f Konrad Malawski 1345065550 +0200 rebase: refactored to GitDirLocator -3a3b2b6dbad13bdccebeb1aeb24bf3c4d0c00a8f 82648ff591d5e40c7c39473f92e566c093ff5fc5 Konrad Malawski 1345065596 +0200 rebase: global reformat, to fit projects formatting -82648ff591d5e40c7c39473f92e566c093ff5fc5 82648ff591d5e40c7c39473f92e566c093ff5fc5 Konrad Malawski 1345065596 +0200 rebase finished: returning to refs/heads/mostr_refactor_gitdir_lookup -82648ff591d5e40c7c39473f92e566c093ff5fc5 c8ff632df6d6ab362ec02cc1b20a527f69ca741d Konrad Malawski 1345065713 +0200 checkout: moving from mostr_refactor_gitdir_lookup to master -c8ff632df6d6ab362ec02cc1b20a527f69ca741d 86d27d701eceaa868cc9c0bf77087aefc0d8cf65 Konrad Malawski 1345065749 +0200 checkout: moving from master to 86d27d701eceaa868cc9c0bf77087aefc0d8cf65^0 -86d27d701eceaa868cc9c0bf77087aefc0d8cf65 d59921ca7da2a1441e814667ff58bb2dbb502c53 Konrad Malawski 1345065750 +0200 pull --rebase: nicer test failure -d59921ca7da2a1441e814667ff58bb2dbb502c53 acab0669c27146e5f98441ba39e527890e49a5d6 Konrad Malawski 1345065750 +0200 pull --rebase: nicer test failure -acab0669c27146e5f98441ba39e527890e49a5d6 01468eddbf23a8331fe91380b888d8a62457cec7 Konrad Malawski 1345065780 +0200 rebase: minor cleanup -01468eddbf23a8331fe91380b888d8a62457cec7 01468eddbf23a8331fe91380b888d8a62457cec7 Konrad Malawski 1345065780 +0200 rebase finished: returning to refs/heads/master -01468eddbf23a8331fe91380b888d8a62457cec7 85818dd10bda666cd2fb4eabdc0b71040f3301cf Konrad Malawski 1345065808 +0200 commit: reformat to projects style -85818dd10bda666cd2fb4eabdc0b71040f3301cf 5a0239b212258b4cb672e5e954757304a08cf2a1 Konrad Malawski 1345065817 +0200 commit (amend): reformat to projects style -5a0239b212258b4cb672e5e954757304a08cf2a1 7a51c168c0d247e5d6bc2227ee654cc9cc89c782 Konrad Malawski 1345068940 +0200 commit: manual merge of "GitDirLocator" branch by @mostr -7a51c168c0d247e5d6bc2227ee654cc9cc89c782 a3575137db7559e64e252c9d87e64b31bdd6ec3e Konrad Malawski 1345068991 +0200 commit: minor cleanups and refactors -a3575137db7559e64e252c9d87e64b31bdd6ec3e 5a0239b212258b4cb672e5e954757304a08cf2a1 Konrad Malawski 1345069053 +0200 checkout: moving from master to 5a0239b -5a0239b212258b4cb672e5e954757304a08cf2a1 7a51c168c0d247e5d6bc2227ee654cc9cc89c782 Konrad Malawski 1345069053 +0200 cherry-pick -7a51c168c0d247e5d6bc2227ee654cc9cc89c782 3cdc93dc60366bead9a278f6a7555b651f26993a Konrad Malawski 1345069053 +0200 rebase -i (reword): manual merge of "GitDirLocator" branch by @mostr -3cdc93dc60366bead9a278f6a7555b651f26993a b806407dc2442bcbe63b0b1b4d414f553648ade6 Konrad Malawski 1345069067 +0200 rebase -i (pick): minor cleanups and refactors -b806407dc2442bcbe63b0b1b4d414f553648ade6 b806407dc2442bcbe63b0b1b4d414f553648ade6 Konrad Malawski 1345069067 +0200 rebase -i (finish): returning to refs/heads/master -b806407dc2442bcbe63b0b1b4d414f553648ade6 060ad61aedb23bb0c7c7551f4bcccc9ccd49afe0 Konrad Malawski 1345308176 +0200 commit: i just can't live without Optionals ;-) -060ad61aedb23bb0c7c7551f4bcccc9ccd49afe0 d2f3939f870f570ab7aa39f8b53be98467114969 Konrad Malawski 1345323994 +0200 commit: should be public -d2f3939f870f570ab7aa39f8b53be98467114969 11fd252e20b7e420eca67a672d06abf24bdae5ae Konrad Malawski 1345331175 +0200 commit: example git repositories, for multiple cases -11fd252e20b7e420eca67a672d06abf24bdae5ae ea2668c79e9410f97da99cdd94f8309aef024b32 Konrad Malawski 1345332538 +0200 commit: reworked integration tests to run on multiple git repositories when needed -ea2668c79e9410f97da99cdd94f8309aef024b32 e8785cceaac786e13bd0dbaf3118f12ed032a369 Konrad Malawski 1345334943 +0200 commit: Initial work on #31, with integration tests -e8785cceaac786e13bd0dbaf3118f12ed032a369 db9cb5757f4af835425c4c6a91b8fa2717533255 Konrad Malawski 1345334958 +0200 commit: include intellij annotations, MUST HAVE @Nullable -db9cb5757f4af835425c4c6a91b8fa2717533255 ace7067505011e6a4ac069732c9ecd9e8c54b23a Konrad Malawski 1345335058 +0200 commit: license headers -ace7067505011e6a4ac069732c9ecd9e8c54b23a e7a1e817341a1d8c959ffe205a0fa064188ac368 Konrad Malawski 1345335636 +0200 commit: our own Pair + using `--always` -e7a1e817341a1d8c959ffe205a0fa064188ac368 7181832b7d9afdeb86c32cf51214abfca63625be Konrad Malawski 1345335647 +0200 commit (amend): our own Pair + using `--always` diff --git a/_git_of_git_commit_id/logs/refs/heads/master b/_git_of_git_commit_id/logs/refs/heads/master deleted file mode 100644 index 4f70b6d..0000000 --- a/_git_of_git_commit_id/logs/refs/heads/master +++ /dev/null @@ -1,33 +0,0 @@ -0000000000000000000000000000000000000000 4266d244c6308f0347a13fd8761dbc532b271ca5 Konrad Malawski 1324731667 +0100 clone: from git@github.com:ktoso/maven-git-commit-id-plugin.git -4266d244c6308f0347a13fd8761dbc532b271ca5 c444c5bf965d02c70356137ae1acd7b981915114 Konrad Malawski 1324736437 +0100 commit: updated jgit version -c444c5bf965d02c70356137ae1acd7b981915114 e2d4fb2d63fb0f25ae168281d7dadfeb131bc110 Konrad Malawski 1324736530 +0100 commit: [maven-release-plugin] prepare release v2.0 -e2d4fb2d63fb0f25ae168281d7dadfeb131bc110 f238a51a0c4dbfba0ca1087496670b2a3e1c1a4c Konrad Malawski 1324736538 +0100 commit: [maven-release-plugin] prepare for next development iteration -f238a51a0c4dbfba0ca1087496670b2a3e1c1a4c 2e1832a5a66f932f3a12ca8755f6ec2a6c425428 Konrad Malawski 1324736718 +0100 commit: [maven-release-plugin] prepare release v2.0.1 -2e1832a5a66f932f3a12ca8755f6ec2a6c425428 f9597b2f0b581bcf5c1dd435b81cd6e09e5c621f Konrad Malawski 1324736738 +0100 commit: [maven-release-plugin] prepare for next development iteration -f9597b2f0b581bcf5c1dd435b81cd6e09e5c621f 67460d1eccbe5f7ffe3ad8cf6081c9c02acd2863 Konrad Malawski 1325875696 +0100 commit: added support for forcing the plugin to run on pom packaged projects -67460d1eccbe5f7ffe3ad8cf6081c9c02acd2863 1006068bfa171395ba875c02506eafcdc905aec0 Konrad Malawski 1329983761 +0100 commit: fix for multimodule projects, as SvS suggested -1006068bfa171395ba875c02506eafcdc905aec0 c61bfc2dc1b3d3515220f123d6258e4a1f6de95a Konrad Malawski 1329983778 +0100 rebase finished: refs/heads/master onto 6a738324177546f10e1381284da685a51bef856f -c61bfc2dc1b3d3515220f123d6258e4a1f6de95a 91051645416518379179bfb5f2e06f4a066a03c2 Konrad Malawski 1330183414 +0100 commit: adding travis -91051645416518379179bfb5f2e06f4a066a03c2 2e39ea3027a3547abd71c3b6c60c4ca5388b4b68 Konrad Malawski 1330183427 +0100 rebase finished: refs/heads/master onto 7decb421bc38a486eb7be3edbc10d8aed085e114 -2e39ea3027a3547abd71c3b6c60c4ca5388b4b68 ca77c2de57e1ae72add31a7216200288359fccf4 Konrad Malawski 1341217068 +0200 rebase finished: refs/heads/master onto ca77c2de57e1ae72add31a7216200288359fccf4 -ca77c2de57e1ae72add31a7216200288359fccf4 a3b884764845d40ab1a1abdc293825ae0da55bb8 Konrad Malawski 1341217891 +0200 commit: [maven-release-plugin] prepare release v2.0.4 -a3b884764845d40ab1a1abdc293825ae0da55bb8 cca0fe43ebfd188504592cc5dab9db8319e7609d Konrad Malawski 1341217897 +0200 commit: [maven-release-plugin] prepare for next development iteration -cca0fe43ebfd188504592cc5dab9db8319e7609d 7ae0a659349400afa26e0fcf00d59cdc5446c7f0 Konrad Malawski 1345056474 +0200 rebase finished: refs/heads/master onto 7ae0a659349400afa26e0fcf00d59cdc5446c7f0 -7ae0a659349400afa26e0fcf00d59cdc5446c7f0 d1f83562596af27cfcaaa0f6d87b24c8a56c1703 Konrad Malawski 1345059172 +0200 commit: nicer test failure -d1f83562596af27cfcaaa0f6d87b24c8a56c1703 b646389e690cf71fd75c83c2aa8949d6e550db49 Konrad Malawski 1345062387 +0200 commit: nicer test failure -b646389e690cf71fd75c83c2aa8949d6e550db49 c8ff632df6d6ab362ec02cc1b20a527f69ca741d Konrad Malawski 1345062435 +0200 commit: minor cleanup -c8ff632df6d6ab362ec02cc1b20a527f69ca741d 01468eddbf23a8331fe91380b888d8a62457cec7 Konrad Malawski 1345065780 +0200 rebase finished: refs/heads/master onto 86d27d701eceaa868cc9c0bf77087aefc0d8cf65 -01468eddbf23a8331fe91380b888d8a62457cec7 85818dd10bda666cd2fb4eabdc0b71040f3301cf Konrad Malawski 1345065808 +0200 commit: reformat to projects style -85818dd10bda666cd2fb4eabdc0b71040f3301cf 5a0239b212258b4cb672e5e954757304a08cf2a1 Konrad Malawski 1345065817 +0200 commit (amend): reformat to projects style -5a0239b212258b4cb672e5e954757304a08cf2a1 7a51c168c0d247e5d6bc2227ee654cc9cc89c782 Konrad Malawski 1345068940 +0200 commit: manual merge of "GitDirLocator" branch by @mostr -7a51c168c0d247e5d6bc2227ee654cc9cc89c782 a3575137db7559e64e252c9d87e64b31bdd6ec3e Konrad Malawski 1345068991 +0200 commit: minor cleanups and refactors -a3575137db7559e64e252c9d87e64b31bdd6ec3e b806407dc2442bcbe63b0b1b4d414f553648ade6 Konrad Malawski 1345069067 +0200 rebase -i (finish): refs/heads/master onto 5a0239b -b806407dc2442bcbe63b0b1b4d414f553648ade6 060ad61aedb23bb0c7c7551f4bcccc9ccd49afe0 Konrad Malawski 1345308176 +0200 commit: i just can't live without Optionals ;-) -060ad61aedb23bb0c7c7551f4bcccc9ccd49afe0 d2f3939f870f570ab7aa39f8b53be98467114969 Konrad Malawski 1345323994 +0200 commit: should be public -d2f3939f870f570ab7aa39f8b53be98467114969 11fd252e20b7e420eca67a672d06abf24bdae5ae Konrad Malawski 1345331175 +0200 commit: example git repositories, for multiple cases -11fd252e20b7e420eca67a672d06abf24bdae5ae ea2668c79e9410f97da99cdd94f8309aef024b32 Konrad Malawski 1345332538 +0200 commit: reworked integration tests to run on multiple git repositories when needed -ea2668c79e9410f97da99cdd94f8309aef024b32 e8785cceaac786e13bd0dbaf3118f12ed032a369 Konrad Malawski 1345334943 +0200 commit: Initial work on #31, with integration tests -e8785cceaac786e13bd0dbaf3118f12ed032a369 db9cb5757f4af835425c4c6a91b8fa2717533255 Konrad Malawski 1345334958 +0200 commit: include intellij annotations, MUST HAVE @Nullable -db9cb5757f4af835425c4c6a91b8fa2717533255 ace7067505011e6a4ac069732c9ecd9e8c54b23a Konrad Malawski 1345335058 +0200 commit: license headers -ace7067505011e6a4ac069732c9ecd9e8c54b23a e7a1e817341a1d8c959ffe205a0fa064188ac368 Konrad Malawski 1345335636 +0200 commit: our own Pair + using `--always` -e7a1e817341a1d8c959ffe205a0fa064188ac368 7181832b7d9afdeb86c32cf51214abfca63625be Konrad Malawski 1345335647 +0200 commit (amend): our own Pair + using `--always` diff --git a/_git_of_git_commit_id/logs/refs/heads/mostr_refactor_gitdir_lookup b/_git_of_git_commit_id/logs/refs/heads/mostr_refactor_gitdir_lookup deleted file mode 100644 index 1acbd98..0000000 --- a/_git_of_git_commit_id/logs/refs/heads/mostr_refactor_gitdir_lookup +++ /dev/null @@ -1,3 +0,0 @@ -0000000000000000000000000000000000000000 33ad86f74c66323455de935ea5ab63082b248204 Konrad Malawski 1345064742 +0200 branch: Created from mostr/refactor_gitdir_lookup -33ad86f74c66323455de935ea5ab63082b248204 3c7dbd226418ad742b89ce73d86900b18d41dbb2 Konrad Malawski 1345064877 +0200 commit: global reformat, to fit projects formatting -3c7dbd226418ad742b89ce73d86900b18d41dbb2 82648ff591d5e40c7c39473f92e566c093ff5fc5 Konrad Malawski 1345065596 +0200 rebase finished: refs/heads/mostr_refactor_gitdir_lookup onto c8ff632df6d6ab362ec02cc1b20a527f69ca741d diff --git a/_git_of_git_commit_id/logs/refs/remotes/mostr/fix_custom_file_write b/_git_of_git_commit_id/logs/refs/remotes/mostr/fix_custom_file_write deleted file mode 100644 index 5f8540c..0000000 --- a/_git_of_git_commit_id/logs/refs/remotes/mostr/fix_custom_file_write +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 affad5022ca2549d53cfc344d9aac497aa8e1e12 Konrad 1345064494 +0200 fetch --append mostr: storing head diff --git a/_git_of_git_commit_id/logs/refs/remotes/mostr/integration_tests b/_git_of_git_commit_id/logs/refs/remotes/mostr/integration_tests deleted file mode 100644 index 2043054..0000000 --- a/_git_of_git_commit_id/logs/refs/remotes/mostr/integration_tests +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 8a67a9fee3512b9c60820899a865000fbfbe5538 Konrad 1345064494 +0200 fetch --append mostr: storing head diff --git a/_git_of_git_commit_id/logs/refs/remotes/mostr/master b/_git_of_git_commit_id/logs/refs/remotes/mostr/master deleted file mode 100644 index fb65772..0000000 --- a/_git_of_git_commit_id/logs/refs/remotes/mostr/master +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 360ce69f76e95595681644275580615cd6271d01 Konrad 1345064494 +0200 fetch --append mostr: storing head diff --git a/_git_of_git_commit_id/logs/refs/remotes/mostr/refactor_gitdir_lookup b/_git_of_git_commit_id/logs/refs/remotes/mostr/refactor_gitdir_lookup deleted file mode 100644 index 944f865..0000000 --- a/_git_of_git_commit_id/logs/refs/remotes/mostr/refactor_gitdir_lookup +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 33ad86f74c66323455de935ea5ab63082b248204 Konrad 1345064494 +0200 fetch --append mostr: storing head diff --git a/_git_of_git_commit_id/logs/refs/remotes/origin/master b/_git_of_git_commit_id/logs/refs/remotes/origin/master deleted file mode 100644 index 5979b32..0000000 --- a/_git_of_git_commit_id/logs/refs/remotes/origin/master +++ /dev/null @@ -1,15 +0,0 @@ -4266d244c6308f0347a13fd8761dbc532b271ca5 c444c5bf965d02c70356137ae1acd7b981915114 Konrad Malawski 1324736455 +0100 update by push -c444c5bf965d02c70356137ae1acd7b981915114 f9597b2f0b581bcf5c1dd435b81cd6e09e5c621f Konrad 1325508723 +0100 pull : fast-forward -f9597b2f0b581bcf5c1dd435b81cd6e09e5c621f 67460d1eccbe5f7ffe3ad8cf6081c9c02acd2863 Konrad Malawski 1325875808 +0100 update by push -67460d1eccbe5f7ffe3ad8cf6081c9c02acd2863 6a738324177546f10e1381284da685a51bef856f Konrad Malawski 1329983777 +0100 fetch origin: fast-forward -6a738324177546f10e1381284da685a51bef856f c61bfc2dc1b3d3515220f123d6258e4a1f6de95a Konrad Malawski 1329983782 +0100 update by push -c61bfc2dc1b3d3515220f123d6258e4a1f6de95a 7decb421bc38a486eb7be3edbc10d8aed085e114 Konrad Malawski 1330183427 +0100 pull --rebase: fast-forward -7decb421bc38a486eb7be3edbc10d8aed085e114 2e39ea3027a3547abd71c3b6c60c4ca5388b4b68 Konrad Malawski 1330183431 +0100 update by push -2e39ea3027a3547abd71c3b6c60c4ca5388b4b68 ca77c2de57e1ae72add31a7216200288359fccf4 Konrad Malawski 1341217068 +0200 pull --rebase: fast-forward -ca77c2de57e1ae72add31a7216200288359fccf4 7ae0a659349400afa26e0fcf00d59cdc5446c7f0 Konrad Malawski 1345056474 +0200 pull --rebase: fast-forward -7ae0a659349400afa26e0fcf00d59cdc5446c7f0 86d27d701eceaa868cc9c0bf77087aefc0d8cf65 Konrad Malawski 1345064492 +0200 fetch --append origin: fast-forward -86d27d701eceaa868cc9c0bf77087aefc0d8cf65 5a0239b212258b4cb672e5e954757304a08cf2a1 Konrad Malawski 1345065830 +0200 update by push -5a0239b212258b4cb672e5e954757304a08cf2a1 b806407dc2442bcbe63b0b1b4d414f553648ade6 Konrad Malawski 1345069074 +0200 update by push -b806407dc2442bcbe63b0b1b4d414f553648ade6 ea2668c79e9410f97da99cdd94f8309aef024b32 Konrad Malawski 1345332547 +0200 update by push -ea2668c79e9410f97da99cdd94f8309aef024b32 db9cb5757f4af835425c4c6a91b8fa2717533255 Konrad Malawski 1345334972 +0200 update by push -db9cb5757f4af835425c4c6a91b8fa2717533255 ace7067505011e6a4ac069732c9ecd9e8c54b23a Konrad Malawski 1345335068 +0200 update by push diff --git a/_git_of_git_commit_id/objects/00/0220de1afba8bd5230acd1d321390dd18697e8 b/_git_of_git_commit_id/objects/00/0220de1afba8bd5230acd1d321390dd18697e8 deleted file mode 100644 index 37b4a0d..0000000 Binary files a/_git_of_git_commit_id/objects/00/0220de1afba8bd5230acd1d321390dd18697e8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/00/3e60a8d8c6e03d689c5704d3fce3dec37ff473 b/_git_of_git_commit_id/objects/00/3e60a8d8c6e03d689c5704d3fce3dec37ff473 deleted file mode 100644 index a0969c2..0000000 Binary files a/_git_of_git_commit_id/objects/00/3e60a8d8c6e03d689c5704d3fce3dec37ff473 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/00/461cd0555b8b7bb4ffa49993a03c5883bb7f16 b/_git_of_git_commit_id/objects/00/461cd0555b8b7bb4ffa49993a03c5883bb7f16 deleted file mode 100644 index 20dadce..0000000 Binary files a/_git_of_git_commit_id/objects/00/461cd0555b8b7bb4ffa49993a03c5883bb7f16 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/00/71801d080af8a6169a6353f1016387ba2836ee b/_git_of_git_commit_id/objects/00/71801d080af8a6169a6353f1016387ba2836ee deleted file mode 100644 index f743340..0000000 Binary files a/_git_of_git_commit_id/objects/00/71801d080af8a6169a6353f1016387ba2836ee and /dev/null differ diff --git a/_git_of_git_commit_id/objects/00/8c580fdee1d91b087a56c362d621f54789e5fd b/_git_of_git_commit_id/objects/00/8c580fdee1d91b087a56c362d621f54789e5fd deleted file mode 100644 index c05563d..0000000 Binary files a/_git_of_git_commit_id/objects/00/8c580fdee1d91b087a56c362d621f54789e5fd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/00/c6e9e02ae3943ce0ce15c9ed16da65acec5666 b/_git_of_git_commit_id/objects/00/c6e9e02ae3943ce0ce15c9ed16da65acec5666 deleted file mode 100644 index 132b4d0..0000000 Binary files a/_git_of_git_commit_id/objects/00/c6e9e02ae3943ce0ce15c9ed16da65acec5666 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/01/01d90e97542b18235d06235ad56e8a50268f67 b/_git_of_git_commit_id/objects/01/01d90e97542b18235d06235ad56e8a50268f67 deleted file mode 100644 index 91ccdd5..0000000 Binary files a/_git_of_git_commit_id/objects/01/01d90e97542b18235d06235ad56e8a50268f67 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/01/468eddbf23a8331fe91380b888d8a62457cec7 b/_git_of_git_commit_id/objects/01/468eddbf23a8331fe91380b888d8a62457cec7 deleted file mode 100644 index 879802e..0000000 Binary files a/_git_of_git_commit_id/objects/01/468eddbf23a8331fe91380b888d8a62457cec7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/01/ba99b4a050879dab7cdbb02ba3ac2e258365e3 b/_git_of_git_commit_id/objects/01/ba99b4a050879dab7cdbb02ba3ac2e258365e3 deleted file mode 100644 index aa3719b..0000000 Binary files a/_git_of_git_commit_id/objects/01/ba99b4a050879dab7cdbb02ba3ac2e258365e3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/01/c8c5f08a1154458ab4d5c7ecbd06c043fc77a9 b/_git_of_git_commit_id/objects/01/c8c5f08a1154458ab4d5c7ecbd06c043fc77a9 deleted file mode 100644 index 0e6539f..0000000 Binary files a/_git_of_git_commit_id/objects/01/c8c5f08a1154458ab4d5c7ecbd06c043fc77a9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/01/c9ff3b605eb960fb0ad64e2b95787f0ab8193d b/_git_of_git_commit_id/objects/01/c9ff3b605eb960fb0ad64e2b95787f0ab8193d deleted file mode 100644 index ace9c4a..0000000 Binary files a/_git_of_git_commit_id/objects/01/c9ff3b605eb960fb0ad64e2b95787f0ab8193d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/01/ef9613b56b6fb2783673f4c407f6050daad7fb b/_git_of_git_commit_id/objects/01/ef9613b56b6fb2783673f4c407f6050daad7fb deleted file mode 100644 index e13e7ee..0000000 Binary files a/_git_of_git_commit_id/objects/01/ef9613b56b6fb2783673f4c407f6050daad7fb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/01/ffb2b757b01ad9659d5486db14d60266139ea6 b/_git_of_git_commit_id/objects/01/ffb2b757b01ad9659d5486db14d60266139ea6 deleted file mode 100644 index 67ce616..0000000 Binary files a/_git_of_git_commit_id/objects/01/ffb2b757b01ad9659d5486db14d60266139ea6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/02/09907e010583ccc6b0c28b827d7d73d91dd396 b/_git_of_git_commit_id/objects/02/09907e010583ccc6b0c28b827d7d73d91dd396 deleted file mode 100644 index 6752963..0000000 Binary files a/_git_of_git_commit_id/objects/02/09907e010583ccc6b0c28b827d7d73d91dd396 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/02/1ff49f7ce7d72d2cd8f74b295573ed181d6176 b/_git_of_git_commit_id/objects/02/1ff49f7ce7d72d2cd8f74b295573ed181d6176 deleted file mode 100644 index 24cf6cc..0000000 Binary files a/_git_of_git_commit_id/objects/02/1ff49f7ce7d72d2cd8f74b295573ed181d6176 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/02/230a732a3123e1d7e8f9ea8e54c8a407eda9da b/_git_of_git_commit_id/objects/02/230a732a3123e1d7e8f9ea8e54c8a407eda9da deleted file mode 100644 index d148350..0000000 Binary files a/_git_of_git_commit_id/objects/02/230a732a3123e1d7e8f9ea8e54c8a407eda9da and /dev/null differ diff --git a/_git_of_git_commit_id/objects/02/26fc54fb844815e6ca3c4781e93fbc11148e83 b/_git_of_git_commit_id/objects/02/26fc54fb844815e6ca3c4781e93fbc11148e83 deleted file mode 100644 index 77a8555..0000000 Binary files a/_git_of_git_commit_id/objects/02/26fc54fb844815e6ca3c4781e93fbc11148e83 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/02/5b69b37f8b4b628903d1c07f70d90f82a5ec15 b/_git_of_git_commit_id/objects/02/5b69b37f8b4b628903d1c07f70d90f82a5ec15 deleted file mode 100644 index 7a53dee..0000000 Binary files a/_git_of_git_commit_id/objects/02/5b69b37f8b4b628903d1c07f70d90f82a5ec15 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/02/bf030522f240d02834b39bdb88171700fae315 b/_git_of_git_commit_id/objects/02/bf030522f240d02834b39bdb88171700fae315 deleted file mode 100644 index 2a7dd70..0000000 Binary files a/_git_of_git_commit_id/objects/02/bf030522f240d02834b39bdb88171700fae315 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/02/ed464110064facf5f690a0243ca68729946b64 b/_git_of_git_commit_id/objects/02/ed464110064facf5f690a0243ca68729946b64 deleted file mode 100644 index 3d3f547..0000000 Binary files a/_git_of_git_commit_id/objects/02/ed464110064facf5f690a0243ca68729946b64 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/03/17785a6f4980ed47fbe2af7d019cd651a00b2b b/_git_of_git_commit_id/objects/03/17785a6f4980ed47fbe2af7d019cd651a00b2b deleted file mode 100644 index 51d46ff..0000000 Binary files a/_git_of_git_commit_id/objects/03/17785a6f4980ed47fbe2af7d019cd651a00b2b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/03/23680430a010df3125bf19916da337f5b36fdd b/_git_of_git_commit_id/objects/03/23680430a010df3125bf19916da337f5b36fdd deleted file mode 100644 index e60554d..0000000 Binary files a/_git_of_git_commit_id/objects/03/23680430a010df3125bf19916da337f5b36fdd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/03/4188b4649bf008cca7efb0f4b1cb6c10e696d1 b/_git_of_git_commit_id/objects/03/4188b4649bf008cca7efb0f4b1cb6c10e696d1 deleted file mode 100644 index 3b153dd..0000000 Binary files a/_git_of_git_commit_id/objects/03/4188b4649bf008cca7efb0f4b1cb6c10e696d1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/03/4ab6cf1a42ee4e3138c23c935eee2831525d0a b/_git_of_git_commit_id/objects/03/4ab6cf1a42ee4e3138c23c935eee2831525d0a deleted file mode 100644 index 507c484..0000000 Binary files a/_git_of_git_commit_id/objects/03/4ab6cf1a42ee4e3138c23c935eee2831525d0a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/03/76719d360600c9f5920726507c0bfb36de6c3d b/_git_of_git_commit_id/objects/03/76719d360600c9f5920726507c0bfb36de6c3d deleted file mode 100644 index 5781089..0000000 Binary files a/_git_of_git_commit_id/objects/03/76719d360600c9f5920726507c0bfb36de6c3d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/03/823c721077b383dcf6dce6cc3a2a077c389056 b/_git_of_git_commit_id/objects/03/823c721077b383dcf6dce6cc3a2a077c389056 deleted file mode 100644 index e864dd2..0000000 Binary files a/_git_of_git_commit_id/objects/03/823c721077b383dcf6dce6cc3a2a077c389056 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/03/c0142981f301e7e0289df067afb83c1229987f b/_git_of_git_commit_id/objects/03/c0142981f301e7e0289df067afb83c1229987f deleted file mode 100644 index 45382e2..0000000 Binary files a/_git_of_git_commit_id/objects/03/c0142981f301e7e0289df067afb83c1229987f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/03/dad524d116ac2c19b92583808173dd2fd808b4 b/_git_of_git_commit_id/objects/03/dad524d116ac2c19b92583808173dd2fd808b4 deleted file mode 100644 index b4e37e7..0000000 --- a/_git_of_git_commit_id/objects/03/dad524d116ac2c19b92583808173dd2fd808b4 +++ /dev/null @@ -1 +0,0 @@ -xKOR01c` 50K00d`j}(|ܹ >ߣDؤ  D0 \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/04/0e740f5a3c4acdc8653ccc2c62bdf1128cc844 b/_git_of_git_commit_id/objects/04/0e740f5a3c4acdc8653ccc2c62bdf1128cc844 deleted file mode 100644 index af4eac1..0000000 Binary files a/_git_of_git_commit_id/objects/04/0e740f5a3c4acdc8653ccc2c62bdf1128cc844 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/04/1340d0fde182ca6031bfabb5baacc446fb2914 b/_git_of_git_commit_id/objects/04/1340d0fde182ca6031bfabb5baacc446fb2914 deleted file mode 100644 index c81ee1b..0000000 Binary files a/_git_of_git_commit_id/objects/04/1340d0fde182ca6031bfabb5baacc446fb2914 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/04/3d9c546046fd8e97c51aa441fc04770e35a2e1 b/_git_of_git_commit_id/objects/04/3d9c546046fd8e97c51aa441fc04770e35a2e1 deleted file mode 100644 index 45ca9cd..0000000 Binary files a/_git_of_git_commit_id/objects/04/3d9c546046fd8e97c51aa441fc04770e35a2e1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/04/3e00c1f0d420175ea89f1ed5cdd8348f37c58a b/_git_of_git_commit_id/objects/04/3e00c1f0d420175ea89f1ed5cdd8348f37c58a deleted file mode 100644 index d6a84c0..0000000 Binary files a/_git_of_git_commit_id/objects/04/3e00c1f0d420175ea89f1ed5cdd8348f37c58a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/04/677c9c0ee179dcd3264ef8c2c83961fe7110fe b/_git_of_git_commit_id/objects/04/677c9c0ee179dcd3264ef8c2c83961fe7110fe deleted file mode 100644 index f57963e..0000000 Binary files a/_git_of_git_commit_id/objects/04/677c9c0ee179dcd3264ef8c2c83961fe7110fe and /dev/null differ diff --git a/_git_of_git_commit_id/objects/04/989da0be04d2e306557842ea3fcd937267338a b/_git_of_git_commit_id/objects/04/989da0be04d2e306557842ea3fcd937267338a deleted file mode 100644 index 1540628..0000000 Binary files a/_git_of_git_commit_id/objects/04/989da0be04d2e306557842ea3fcd937267338a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/05/36191e197f388e09a0cd1ecee39d22e53fd825 b/_git_of_git_commit_id/objects/05/36191e197f388e09a0cd1ecee39d22e53fd825 deleted file mode 100644 index f8dcdc5..0000000 Binary files a/_git_of_git_commit_id/objects/05/36191e197f388e09a0cd1ecee39d22e53fd825 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/05/927d188e7fa7168ed2f3f82bc75e0d360fd722 b/_git_of_git_commit_id/objects/05/927d188e7fa7168ed2f3f82bc75e0d360fd722 deleted file mode 100644 index 2e91c99..0000000 Binary files a/_git_of_git_commit_id/objects/05/927d188e7fa7168ed2f3f82bc75e0d360fd722 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/06/0ad61aedb23bb0c7c7551f4bcccc9ccd49afe0 b/_git_of_git_commit_id/objects/06/0ad61aedb23bb0c7c7551f4bcccc9ccd49afe0 deleted file mode 100644 index d7986e7..0000000 --- a/_git_of_git_commit_id/objects/06/0ad61aedb23bb0c7c7551f4bcccc9ccd49afe0 +++ /dev/null @@ -1,2 +0,0 @@ -xJC1@]+f'"<')^o$SȝkRyMI:3a]Fc{*À KM1f"'PI '^Z6xɾzO!8*MsyT?E-d"«ZI5l@Y`h? viD -o/>Zp \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/06/294fdcb4fa7bfb98c2ea574b3d3deb07258378 b/_git_of_git_commit_id/objects/06/294fdcb4fa7bfb98c2ea574b3d3deb07258378 deleted file mode 100644 index ebcf283..0000000 Binary files a/_git_of_git_commit_id/objects/06/294fdcb4fa7bfb98c2ea574b3d3deb07258378 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/06/a21c7dfd7c0750be4b0427e60121a345104073 b/_git_of_git_commit_id/objects/06/a21c7dfd7c0750be4b0427e60121a345104073 deleted file mode 100644 index 36c7dcf..0000000 Binary files a/_git_of_git_commit_id/objects/06/a21c7dfd7c0750be4b0427e60121a345104073 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/06/fac86e44667dc040758519afaa0b866da35f1e b/_git_of_git_commit_id/objects/06/fac86e44667dc040758519afaa0b866da35f1e deleted file mode 100644 index a77e4e9..0000000 Binary files a/_git_of_git_commit_id/objects/06/fac86e44667dc040758519afaa0b866da35f1e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/07/05dc4b07b02bb613056cf8f88873fa9919eb5c b/_git_of_git_commit_id/objects/07/05dc4b07b02bb613056cf8f88873fa9919eb5c deleted file mode 100644 index a358de6..0000000 Binary files a/_git_of_git_commit_id/objects/07/05dc4b07b02bb613056cf8f88873fa9919eb5c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/07/5775612626bb50216fceb0a22e2d69a9299ee8 b/_git_of_git_commit_id/objects/07/5775612626bb50216fceb0a22e2d69a9299ee8 deleted file mode 100644 index ee495f4..0000000 Binary files a/_git_of_git_commit_id/objects/07/5775612626bb50216fceb0a22e2d69a9299ee8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/07/751578e7ed568acb2418f4a2748de6d24c73c8 b/_git_of_git_commit_id/objects/07/751578e7ed568acb2418f4a2748de6d24c73c8 deleted file mode 100644 index c97ad36..0000000 --- a/_git_of_git_commit_id/objects/07/751578e7ed568acb2418f4a2748de6d24c73c8 +++ /dev/null @@ -1 +0,0 @@ -x5j0/ɺ؆/!0Gj2@¤ۏ9:Ņ {G8M^ު{&6(Z !ZY DRmk-0'?rk\syi\ ΠQFK -[)EzO^ Np_4Ф\ɳͶKV:3$ BW{Ayw!Xk \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/07/78f06a08c1f70dad1d4aff0bdeb50cb1edcdf0 b/_git_of_git_commit_id/objects/07/78f06a08c1f70dad1d4aff0bdeb50cb1edcdf0 deleted file mode 100644 index 0d0c86d..0000000 Binary files a/_git_of_git_commit_id/objects/07/78f06a08c1f70dad1d4aff0bdeb50cb1edcdf0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/07/c98b2e6c81fbdc30a2f6cb27be9c508920f17f b/_git_of_git_commit_id/objects/07/c98b2e6c81fbdc30a2f6cb27be9c508920f17f deleted file mode 100644 index 4d48f93..0000000 Binary files a/_git_of_git_commit_id/objects/07/c98b2e6c81fbdc30a2f6cb27be9c508920f17f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/07/d3c8682c6932c7e1ebaa12ef4aa2370bb47dbe b/_git_of_git_commit_id/objects/07/d3c8682c6932c7e1ebaa12ef4aa2370bb47dbe deleted file mode 100644 index 4499540..0000000 --- a/_git_of_git_commit_id/objects/07/d3c8682c6932c7e1ebaa12ef4aa2370bb47dbe +++ /dev/null @@ -1,2 +0,0 @@ -x5Mj0},B% Si8$# +L=q9Ʃ"@m'yD # [[PPuA(ZN):=N |np_.һRpaxgi;R -zm4\֒*MjdJP3$z־cOmR|S٦_ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/08/0a7753179cf14956da577b90ed945c8f8b2a03 b/_git_of_git_commit_id/objects/08/0a7753179cf14956da577b90ed945c8f8b2a03 deleted file mode 100644 index e59ced9..0000000 Binary files a/_git_of_git_commit_id/objects/08/0a7753179cf14956da577b90ed945c8f8b2a03 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/08/1e05ca535840a1b1adcb1e063de232fa581533 b/_git_of_git_commit_id/objects/08/1e05ca535840a1b1adcb1e063de232fa581533 deleted file mode 100644 index d7da3f0..0000000 Binary files a/_git_of_git_commit_id/objects/08/1e05ca535840a1b1adcb1e063de232fa581533 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/08/5821346852ae732b097bbe5110d492b502b76c b/_git_of_git_commit_id/objects/08/5821346852ae732b097bbe5110d492b502b76c deleted file mode 100644 index 6c8ac3e..0000000 Binary files a/_git_of_git_commit_id/objects/08/5821346852ae732b097bbe5110d492b502b76c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/08/a234b7a591950df55f9f885fcf3e08c9970790 b/_git_of_git_commit_id/objects/08/a234b7a591950df55f9f885fcf3e08c9970790 deleted file mode 100644 index a17fc97..0000000 Binary files a/_git_of_git_commit_id/objects/08/a234b7a591950df55f9f885fcf3e08c9970790 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/08/a75cb9b93e06278d911f9972aeada34cd039d6 b/_git_of_git_commit_id/objects/08/a75cb9b93e06278d911f9972aeada34cd039d6 deleted file mode 100644 index 533f8b0..0000000 Binary files a/_git_of_git_commit_id/objects/08/a75cb9b93e06278d911f9972aeada34cd039d6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/08/faec30ece3cff9b4d5b15283b1fd6fe24bf534 b/_git_of_git_commit_id/objects/08/faec30ece3cff9b4d5b15283b1fd6fe24bf534 deleted file mode 100644 index e4cd1ab..0000000 Binary files a/_git_of_git_commit_id/objects/08/faec30ece3cff9b4d5b15283b1fd6fe24bf534 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/09/28633b5e256970f58df88f9a6387066b48b4b5 b/_git_of_git_commit_id/objects/09/28633b5e256970f58df88f9a6387066b48b4b5 deleted file mode 100644 index dbccaf5..0000000 Binary files a/_git_of_git_commit_id/objects/09/28633b5e256970f58df88f9a6387066b48b4b5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/09/7fd9d9f960977d1509391c5ff0cee22bb63c11 b/_git_of_git_commit_id/objects/09/7fd9d9f960977d1509391c5ff0cee22bb63c11 deleted file mode 100644 index 1df8de3..0000000 Binary files a/_git_of_git_commit_id/objects/09/7fd9d9f960977d1509391c5ff0cee22bb63c11 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/09/be9c26811f26bc0bd466d74ddd8b88d82d573e b/_git_of_git_commit_id/objects/09/be9c26811f26bc0bd466d74ddd8b88d82d573e deleted file mode 100644 index e174b94..0000000 Binary files a/_git_of_git_commit_id/objects/09/be9c26811f26bc0bd466d74ddd8b88d82d573e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/09/ca953a517245aab1e55403a21516122f3d426f b/_git_of_git_commit_id/objects/09/ca953a517245aab1e55403a21516122f3d426f deleted file mode 100644 index d177789..0000000 Binary files a/_git_of_git_commit_id/objects/09/ca953a517245aab1e55403a21516122f3d426f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0a/029cfde315fd7751fb9fcc4a8db9f3238b4bb4 b/_git_of_git_commit_id/objects/0a/029cfde315fd7751fb9fcc4a8db9f3238b4bb4 deleted file mode 100644 index 2b16918..0000000 Binary files a/_git_of_git_commit_id/objects/0a/029cfde315fd7751fb9fcc4a8db9f3238b4bb4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0a/46e39a9a49271aea5056e6a250ffe638b0c463 b/_git_of_git_commit_id/objects/0a/46e39a9a49271aea5056e6a250ffe638b0c463 deleted file mode 100644 index 0aff105..0000000 Binary files a/_git_of_git_commit_id/objects/0a/46e39a9a49271aea5056e6a250ffe638b0c463 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0a/547cf6dafa7ffbd893789bba4651a0a3d71272 b/_git_of_git_commit_id/objects/0a/547cf6dafa7ffbd893789bba4651a0a3d71272 deleted file mode 100644 index 40969f5..0000000 Binary files a/_git_of_git_commit_id/objects/0a/547cf6dafa7ffbd893789bba4651a0a3d71272 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0a/56c5ef043d1533322eab0a27d3fe822da56af1 b/_git_of_git_commit_id/objects/0a/56c5ef043d1533322eab0a27d3fe822da56af1 deleted file mode 100644 index b16115a..0000000 Binary files a/_git_of_git_commit_id/objects/0a/56c5ef043d1533322eab0a27d3fe822da56af1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0a/9f83c2c8630f48290a93f32549c5dd495bd9f4 b/_git_of_git_commit_id/objects/0a/9f83c2c8630f48290a93f32549c5dd495bd9f4 deleted file mode 100644 index 51e4fc7..0000000 Binary files a/_git_of_git_commit_id/objects/0a/9f83c2c8630f48290a93f32549c5dd495bd9f4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0a/bd2ba1fbcb861e07fc0cf537613ada33f9219b b/_git_of_git_commit_id/objects/0a/bd2ba1fbcb861e07fc0cf537613ada33f9219b deleted file mode 100644 index 7e866b6..0000000 Binary files a/_git_of_git_commit_id/objects/0a/bd2ba1fbcb861e07fc0cf537613ada33f9219b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0a/f25dae46f0424de5e8c2513ff14c2daf7d81ac b/_git_of_git_commit_id/objects/0a/f25dae46f0424de5e8c2513ff14c2daf7d81ac deleted file mode 100644 index 7ccc060..0000000 Binary files a/_git_of_git_commit_id/objects/0a/f25dae46f0424de5e8c2513ff14c2daf7d81ac and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0a/fe1fbaf0763ce5e7faa46f9ff2bc0887b8671c b/_git_of_git_commit_id/objects/0a/fe1fbaf0763ce5e7faa46f9ff2bc0887b8671c deleted file mode 100644 index af7f4d4..0000000 Binary files a/_git_of_git_commit_id/objects/0a/fe1fbaf0763ce5e7faa46f9ff2bc0887b8671c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0b/299f7bf00eb2d2c4624a3555e617da94cb18a1 b/_git_of_git_commit_id/objects/0b/299f7bf00eb2d2c4624a3555e617da94cb18a1 deleted file mode 100644 index 55a918d..0000000 Binary files a/_git_of_git_commit_id/objects/0b/299f7bf00eb2d2c4624a3555e617da94cb18a1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0b/58527123dd24ef3439ffa4d52a5b4f94f80de0 b/_git_of_git_commit_id/objects/0b/58527123dd24ef3439ffa4d52a5b4f94f80de0 deleted file mode 100644 index 683c804..0000000 Binary files a/_git_of_git_commit_id/objects/0b/58527123dd24ef3439ffa4d52a5b4f94f80de0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0b/7dcb1af0c02e2c84fbfb48c5d0e83785a596c9 b/_git_of_git_commit_id/objects/0b/7dcb1af0c02e2c84fbfb48c5d0e83785a596c9 deleted file mode 100644 index f39fa98..0000000 Binary files a/_git_of_git_commit_id/objects/0b/7dcb1af0c02e2c84fbfb48c5d0e83785a596c9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0b/9d1e57bdf2518198d80c81073d943230b92150 b/_git_of_git_commit_id/objects/0b/9d1e57bdf2518198d80c81073d943230b92150 deleted file mode 100644 index 36c30c6..0000000 Binary files a/_git_of_git_commit_id/objects/0b/9d1e57bdf2518198d80c81073d943230b92150 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0b/e968df2bfbde92698dbb7a8262df5fbe41b3eb b/_git_of_git_commit_id/objects/0b/e968df2bfbde92698dbb7a8262df5fbe41b3eb deleted file mode 100644 index 912ddd2..0000000 Binary files a/_git_of_git_commit_id/objects/0b/e968df2bfbde92698dbb7a8262df5fbe41b3eb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0b/fde63997c6c370ae531824fe4fe1161047ba65 b/_git_of_git_commit_id/objects/0b/fde63997c6c370ae531824fe4fe1161047ba65 deleted file mode 100644 index 97b97f5..0000000 Binary files a/_git_of_git_commit_id/objects/0b/fde63997c6c370ae531824fe4fe1161047ba65 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0c/33be77cc90a57b22bfd4e7a5f52a96b05c82e5 b/_git_of_git_commit_id/objects/0c/33be77cc90a57b22bfd4e7a5f52a96b05c82e5 deleted file mode 100644 index 0199138..0000000 Binary files a/_git_of_git_commit_id/objects/0c/33be77cc90a57b22bfd4e7a5f52a96b05c82e5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0c/749d2288e7db3a75f2dbe184ebafb06908b8fb b/_git_of_git_commit_id/objects/0c/749d2288e7db3a75f2dbe184ebafb06908b8fb deleted file mode 100644 index 9d9e9b0..0000000 Binary files a/_git_of_git_commit_id/objects/0c/749d2288e7db3a75f2dbe184ebafb06908b8fb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0c/ce58c83f507143da967b7831f125cd3c5f3843 b/_git_of_git_commit_id/objects/0c/ce58c83f507143da967b7831f125cd3c5f3843 deleted file mode 100644 index 69fcc8e..0000000 Binary files a/_git_of_git_commit_id/objects/0c/ce58c83f507143da967b7831f125cd3c5f3843 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0c/e764ad0ec321c04b4b87382ae0de5ad225c3bd b/_git_of_git_commit_id/objects/0c/e764ad0ec321c04b4b87382ae0de5ad225c3bd deleted file mode 100644 index 8c013cc..0000000 Binary files a/_git_of_git_commit_id/objects/0c/e764ad0ec321c04b4b87382ae0de5ad225c3bd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0d/0b872fb2f9e81110f1a00373cddf284edce247 b/_git_of_git_commit_id/objects/0d/0b872fb2f9e81110f1a00373cddf284edce247 deleted file mode 100644 index d06433d..0000000 Binary files a/_git_of_git_commit_id/objects/0d/0b872fb2f9e81110f1a00373cddf284edce247 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0d/1bcccf37cea06632b36d481937a3a76e0a16b3 b/_git_of_git_commit_id/objects/0d/1bcccf37cea06632b36d481937a3a76e0a16b3 deleted file mode 100644 index 64e5e9c..0000000 Binary files a/_git_of_git_commit_id/objects/0d/1bcccf37cea06632b36d481937a3a76e0a16b3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0d/30206d812306c9ea2138daa5ee7ccb1486ac5e b/_git_of_git_commit_id/objects/0d/30206d812306c9ea2138daa5ee7ccb1486ac5e deleted file mode 100644 index e22d815..0000000 Binary files a/_git_of_git_commit_id/objects/0d/30206d812306c9ea2138daa5ee7ccb1486ac5e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0d/30c7ec0c0f9687ce530ad2177d3e24166ed0cf b/_git_of_git_commit_id/objects/0d/30c7ec0c0f9687ce530ad2177d3e24166ed0cf deleted file mode 100644 index a83043e..0000000 Binary files a/_git_of_git_commit_id/objects/0d/30c7ec0c0f9687ce530ad2177d3e24166ed0cf and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0d/8f570274f96581abc161dc60e702a287cc64bb b/_git_of_git_commit_id/objects/0d/8f570274f96581abc161dc60e702a287cc64bb deleted file mode 100644 index 3c8b5b1..0000000 Binary files a/_git_of_git_commit_id/objects/0d/8f570274f96581abc161dc60e702a287cc64bb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0d/b5135a0c7e0ccc9a75b9b506dd895a0b62559a b/_git_of_git_commit_id/objects/0d/b5135a0c7e0ccc9a75b9b506dd895a0b62559a deleted file mode 100644 index 87694b8..0000000 Binary files a/_git_of_git_commit_id/objects/0d/b5135a0c7e0ccc9a75b9b506dd895a0b62559a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0e/1ac9780f89ebc4ec3906d8e990b951ae348768 b/_git_of_git_commit_id/objects/0e/1ac9780f89ebc4ec3906d8e990b951ae348768 deleted file mode 100644 index 344400e..0000000 Binary files a/_git_of_git_commit_id/objects/0e/1ac9780f89ebc4ec3906d8e990b951ae348768 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0e/4c31c7c00b43847ad55f99264877d6c7721e34 b/_git_of_git_commit_id/objects/0e/4c31c7c00b43847ad55f99264877d6c7721e34 deleted file mode 100644 index c193d74..0000000 Binary files a/_git_of_git_commit_id/objects/0e/4c31c7c00b43847ad55f99264877d6c7721e34 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0e/f98e59c267ed71e522789f66751e7c7eea00d2 b/_git_of_git_commit_id/objects/0e/f98e59c267ed71e522789f66751e7c7eea00d2 deleted file mode 100644 index 4375329..0000000 --- a/_git_of_git_commit_id/objects/0e/f98e59c267ed71e522789f66751e7c7eea00d2 +++ /dev/null @@ -1,2 +0,0 @@ -xAN!@Q}3h1r{^cݶ<@;s7h ---0YYxG]aBf8$"c4g>`ķqkQz8= ("ֈ8ſ!gK<$AN ƅ˺[_W\G;ۀ/&W \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/0f/65d8d034331799ea5c9a3c75ecc3e2e1273b03 b/_git_of_git_commit_id/objects/0f/65d8d034331799ea5c9a3c75ecc3e2e1273b03 deleted file mode 100644 index e3b71fc..0000000 Binary files a/_git_of_git_commit_id/objects/0f/65d8d034331799ea5c9a3c75ecc3e2e1273b03 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0f/7a6e4885f742b9653b7d2f4726c24561f8005c b/_git_of_git_commit_id/objects/0f/7a6e4885f742b9653b7d2f4726c24561f8005c deleted file mode 100644 index 61732c8..0000000 Binary files a/_git_of_git_commit_id/objects/0f/7a6e4885f742b9653b7d2f4726c24561f8005c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0f/8201e1fb192c8e14aad525026762f5883b5a49 b/_git_of_git_commit_id/objects/0f/8201e1fb192c8e14aad525026762f5883b5a49 deleted file mode 100644 index e5fd6fc..0000000 Binary files a/_git_of_git_commit_id/objects/0f/8201e1fb192c8e14aad525026762f5883b5a49 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0f/8a4b976940e385e41b34db103c4307c1c65332 b/_git_of_git_commit_id/objects/0f/8a4b976940e385e41b34db103c4307c1c65332 deleted file mode 100644 index 5e83225..0000000 Binary files a/_git_of_git_commit_id/objects/0f/8a4b976940e385e41b34db103c4307c1c65332 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/0f/cdf2d7a253584e1ffedf480a0c3e119a464525 b/_git_of_git_commit_id/objects/0f/cdf2d7a253584e1ffedf480a0c3e119a464525 deleted file mode 100644 index dfc8382..0000000 --- a/_git_of_git_commit_id/objects/0f/cdf2d7a253584e1ffedf480a0c3e119a464525 +++ /dev/null @@ -1 +0,0 @@ -x%0 ;@b``Bj!V[P[nѺt8H!3XUv9J}h9[ d\!P?m# \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/0f/d5566066aa819318a28966a781cdba50d468c2 b/_git_of_git_commit_id/objects/0f/d5566066aa819318a28966a781cdba50d468c2 deleted file mode 100644 index 9ea2488..0000000 Binary files a/_git_of_git_commit_id/objects/0f/d5566066aa819318a28966a781cdba50d468c2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/10/0063fcea22885078c3a8b014392ddab3780405 b/_git_of_git_commit_id/objects/10/0063fcea22885078c3a8b014392ddab3780405 deleted file mode 100644 index 06c9c66..0000000 Binary files a/_git_of_git_commit_id/objects/10/0063fcea22885078c3a8b014392ddab3780405 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/10/06068bfa171395ba875c02506eafcdc905aec0 b/_git_of_git_commit_id/objects/10/06068bfa171395ba875c02506eafcdc905aec0 deleted file mode 100644 index da0efe7..0000000 Binary files a/_git_of_git_commit_id/objects/10/06068bfa171395ba875c02506eafcdc905aec0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/10/0650004960428d8f8e7774098c6ba1ec439740 b/_git_of_git_commit_id/objects/10/0650004960428d8f8e7774098c6ba1ec439740 deleted file mode 100644 index 530ebd7..0000000 Binary files a/_git_of_git_commit_id/objects/10/0650004960428d8f8e7774098c6ba1ec439740 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/10/7186f9c0c8194a03d6c76d069f9f04c139f75e b/_git_of_git_commit_id/objects/10/7186f9c0c8194a03d6c76d069f9f04c139f75e deleted file mode 100644 index 4936dce..0000000 Binary files a/_git_of_git_commit_id/objects/10/7186f9c0c8194a03d6c76d069f9f04c139f75e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/10/732ce73fc3c1dd0f04990eaff3261891e95034 b/_git_of_git_commit_id/objects/10/732ce73fc3c1dd0f04990eaff3261891e95034 deleted file mode 100644 index 008c580..0000000 --- a/_git_of_git_commit_id/objects/10/732ce73fc3c1dd0f04990eaff3261891e95034 +++ /dev/null @@ -1 +0,0 @@ -x+)JMU06a040031QM,.I-bXdſN/xgyݳC \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/10/75c9a82b0543a8d89bdd99ad3ea8109b76f04d b/_git_of_git_commit_id/objects/10/75c9a82b0543a8d89bdd99ad3ea8109b76f04d deleted file mode 100644 index c492f51..0000000 Binary files a/_git_of_git_commit_id/objects/10/75c9a82b0543a8d89bdd99ad3ea8109b76f04d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/10/add9a22585a4993d07e7ef3fccbe124d9bcba4 b/_git_of_git_commit_id/objects/10/add9a22585a4993d07e7ef3fccbe124d9bcba4 deleted file mode 100644 index 6fb694f..0000000 Binary files a/_git_of_git_commit_id/objects/10/add9a22585a4993d07e7ef3fccbe124d9bcba4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/10/bcce723c135f76afb761b5c8a49e66c231541d b/_git_of_git_commit_id/objects/10/bcce723c135f76afb761b5c8a49e66c231541d deleted file mode 100644 index 1837e3f..0000000 Binary files a/_git_of_git_commit_id/objects/10/bcce723c135f76afb761b5c8a49e66c231541d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/10/ddc923555be6bef490ad42302729dc5f7c9437 b/_git_of_git_commit_id/objects/10/ddc923555be6bef490ad42302729dc5f7c9437 deleted file mode 100644 index a4521f6..0000000 Binary files a/_git_of_git_commit_id/objects/10/ddc923555be6bef490ad42302729dc5f7c9437 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/11/06ab31d5a51c824f2c1fed071b8c02355a2534 b/_git_of_git_commit_id/objects/11/06ab31d5a51c824f2c1fed071b8c02355a2534 deleted file mode 100644 index 7e1b752..0000000 Binary files a/_git_of_git_commit_id/objects/11/06ab31d5a51c824f2c1fed071b8c02355a2534 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/11/3a6feedb9f048738e2d99cb679643c42d74f24 b/_git_of_git_commit_id/objects/11/3a6feedb9f048738e2d99cb679643c42d74f24 deleted file mode 100644 index e09915e..0000000 Binary files a/_git_of_git_commit_id/objects/11/3a6feedb9f048738e2d99cb679643c42d74f24 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/11/3c43959f76657361cbdbf5893f991b7c195258 b/_git_of_git_commit_id/objects/11/3c43959f76657361cbdbf5893f991b7c195258 deleted file mode 100644 index ea33a3d..0000000 --- a/_git_of_git_commit_id/objects/11/3c43959f76657361cbdbf5893f991b7c195258 +++ /dev/null @@ -1 +0,0 @@ -xKOR05d` 50K60d`jmZg͕'Blӏgqv FUO \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/11/712e148a9a09635c0e2d383ea2e8bb5f5210ba b/_git_of_git_commit_id/objects/11/712e148a9a09635c0e2d383ea2e8bb5f5210ba deleted file mode 100644 index 4b801e2..0000000 Binary files a/_git_of_git_commit_id/objects/11/712e148a9a09635c0e2d383ea2e8bb5f5210ba and /dev/null differ diff --git a/_git_of_git_commit_id/objects/11/d034a133575ed629bfbb424c594b778f4c4ac5 b/_git_of_git_commit_id/objects/11/d034a133575ed629bfbb424c594b778f4c4ac5 deleted file mode 100644 index 30e4f2b..0000000 Binary files a/_git_of_git_commit_id/objects/11/d034a133575ed629bfbb424c594b778f4c4ac5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/11/ed1eca774324556c81373b2bf2a5446f0ae1a4 b/_git_of_git_commit_id/objects/11/ed1eca774324556c81373b2bf2a5446f0ae1a4 deleted file mode 100644 index 0523f47..0000000 Binary files a/_git_of_git_commit_id/objects/11/ed1eca774324556c81373b2bf2a5446f0ae1a4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/11/fd252e20b7e420eca67a672d06abf24bdae5ae b/_git_of_git_commit_id/objects/11/fd252e20b7e420eca67a672d06abf24bdae5ae deleted file mode 100644 index 48fd433..0000000 --- a/_git_of_git_commit_id/objects/11/fd252e20b7e420eca67a672d06abf24bdae5ae +++ /dev/null @@ -1,2 +0,0 @@ -xAn!sswd"EQ1CBXc[A]-c-%OЫy8nYFGcY4|}ZLI -~]Sj ^:mN;}s8^8NǶ * Rć/ vέeik,ؐ#\桇b9D*;*YT]ȲH Oyd4sܳ;l7yb#rl0#3đF]ʀh9h筳fx4j$kT鸃 )#RšRN_hl Q؟ SywQY:Pk:wGh`` as5.gyI1$2{1ļ엙mZ{ZpIxc_e{Le!eODA "C-l67?zN; \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/1a/ebcd440c58f56a56faf071ac12cd45ee6136b7 b/_git_of_git_commit_id/objects/1a/ebcd440c58f56a56faf071ac12cd45ee6136b7 deleted file mode 100644 index 7b964f0..0000000 --- a/_git_of_git_commit_id/objects/1a/ebcd440c58f56a56faf071ac12cd45ee6136b7 +++ /dev/null @@ -1 +0,0 @@ -xKOR01g` 50K20d`jsd.(~WZѾjqy5<XJ@ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/1b/16b1ab1e2337538722a389939efd8113a03a26 b/_git_of_git_commit_id/objects/1b/16b1ab1e2337538722a389939efd8113a03a26 deleted file mode 100644 index 370bd64..0000000 Binary files a/_git_of_git_commit_id/objects/1b/16b1ab1e2337538722a389939efd8113a03a26 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1b/57f44a2a6c051330752c1257883bd8c3ffe23a b/_git_of_git_commit_id/objects/1b/57f44a2a6c051330752c1257883bd8c3ffe23a deleted file mode 100644 index f6f1980..0000000 Binary files a/_git_of_git_commit_id/objects/1b/57f44a2a6c051330752c1257883bd8c3ffe23a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1b/c44ebd22f4dc1f7053620f650755564e59b899 b/_git_of_git_commit_id/objects/1b/c44ebd22f4dc1f7053620f650755564e59b899 deleted file mode 100644 index be895fd..0000000 Binary files a/_git_of_git_commit_id/objects/1b/c44ebd22f4dc1f7053620f650755564e59b899 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1b/f4fb54b2b9da899818bd99ff0e5da92a850b5c b/_git_of_git_commit_id/objects/1b/f4fb54b2b9da899818bd99ff0e5da92a850b5c deleted file mode 100644 index a0946b3..0000000 Binary files a/_git_of_git_commit_id/objects/1b/f4fb54b2b9da899818bd99ff0e5da92a850b5c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1b/f609eab8735ef5f11d2e01d3a79f9213e80364 b/_git_of_git_commit_id/objects/1b/f609eab8735ef5f11d2e01d3a79f9213e80364 deleted file mode 100644 index 8b87bfe..0000000 Binary files a/_git_of_git_commit_id/objects/1b/f609eab8735ef5f11d2e01d3a79f9213e80364 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1c/1a5c59e6261bc9760c7bc21214ead1f88ae0a2 b/_git_of_git_commit_id/objects/1c/1a5c59e6261bc9760c7bc21214ead1f88ae0a2 deleted file mode 100644 index eb0123f..0000000 Binary files a/_git_of_git_commit_id/objects/1c/1a5c59e6261bc9760c7bc21214ead1f88ae0a2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1c/82cc0db388a970386893adfcf5c9224bc846e0 b/_git_of_git_commit_id/objects/1c/82cc0db388a970386893adfcf5c9224bc846e0 deleted file mode 100644 index 788b96b..0000000 --- a/_git_of_git_commit_id/objects/1c/82cc0db388a970386893adfcf5c9224bc846e0 +++ /dev/null @@ -1,2 +0,0 @@ -x-1JCAWHJmJ,vH26L!HxtVBG!xA았"U[ϩQ-&.,>KT3( -iRot>;]^?5~8ɑ&1w@ERķ淅rxx=? Mn7T<锍Xsczs~o?ӳ˓oC~ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/1c/9cb0be33574c4e0a87ba79e90877b84b00f0b8 b/_git_of_git_commit_id/objects/1c/9cb0be33574c4e0a87ba79e90877b84b00f0b8 deleted file mode 100644 index ef1a1dc..0000000 Binary files a/_git_of_git_commit_id/objects/1c/9cb0be33574c4e0a87ba79e90877b84b00f0b8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1c/d92b590b0153295bc20b188b5138c23c08e6a8 b/_git_of_git_commit_id/objects/1c/d92b590b0153295bc20b188b5138c23c08e6a8 deleted file mode 100644 index b388d50..0000000 Binary files a/_git_of_git_commit_id/objects/1c/d92b590b0153295bc20b188b5138c23c08e6a8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1c/e8551d6609b1d92c7c746a368d232349844b6c b/_git_of_git_commit_id/objects/1c/e8551d6609b1d92c7c746a368d232349844b6c deleted file mode 100644 index 67ca87d..0000000 Binary files a/_git_of_git_commit_id/objects/1c/e8551d6609b1d92c7c746a368d232349844b6c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1c/ef65da17994c86ff98c245dfa365cb5c97721b b/_git_of_git_commit_id/objects/1c/ef65da17994c86ff98c245dfa365cb5c97721b deleted file mode 100644 index 4da77b8..0000000 Binary files a/_git_of_git_commit_id/objects/1c/ef65da17994c86ff98c245dfa365cb5c97721b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1c/f38a12e66d0fd511c1bd9b9a8af1fdbc3d76c5 b/_git_of_git_commit_id/objects/1c/f38a12e66d0fd511c1bd9b9a8af1fdbc3d76c5 deleted file mode 100644 index a37f483..0000000 Binary files a/_git_of_git_commit_id/objects/1c/f38a12e66d0fd511c1bd9b9a8af1fdbc3d76c5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1d/410bac7ff82e4440fa2c61ae74eea02075991a b/_git_of_git_commit_id/objects/1d/410bac7ff82e4440fa2c61ae74eea02075991a deleted file mode 100644 index 5443579..0000000 Binary files a/_git_of_git_commit_id/objects/1d/410bac7ff82e4440fa2c61ae74eea02075991a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1d/d4ac233345da00c0a296e5b914c5984a5cd7a4 b/_git_of_git_commit_id/objects/1d/d4ac233345da00c0a296e5b914c5984a5cd7a4 deleted file mode 100644 index 1d7e293..0000000 Binary files a/_git_of_git_commit_id/objects/1d/d4ac233345da00c0a296e5b914c5984a5cd7a4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1d/f8de3f1fb457505b3844a25e8db57335589487 b/_git_of_git_commit_id/objects/1d/f8de3f1fb457505b3844a25e8db57335589487 deleted file mode 100644 index 0de3b95..0000000 Binary files a/_git_of_git_commit_id/objects/1d/f8de3f1fb457505b3844a25e8db57335589487 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1e/3c8ab992d6a7c8a3e5c82a2999ea393e04797f b/_git_of_git_commit_id/objects/1e/3c8ab992d6a7c8a3e5c82a2999ea393e04797f deleted file mode 100644 index b2676e6..0000000 Binary files a/_git_of_git_commit_id/objects/1e/3c8ab992d6a7c8a3e5c82a2999ea393e04797f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1e/8699f2a13646baf85760e0b2b1378267369637 b/_git_of_git_commit_id/objects/1e/8699f2a13646baf85760e0b2b1378267369637 deleted file mode 100644 index 0ea53f5..0000000 Binary files a/_git_of_git_commit_id/objects/1e/8699f2a13646baf85760e0b2b1378267369637 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1e/88a6cc52ff03783028043fd9643f4a37ea591f b/_git_of_git_commit_id/objects/1e/88a6cc52ff03783028043fd9643f4a37ea591f deleted file mode 100644 index 327f3fc..0000000 Binary files a/_git_of_git_commit_id/objects/1e/88a6cc52ff03783028043fd9643f4a37ea591f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1e/cf2ad8e957bd528b46e2052fa506f2adc74970 b/_git_of_git_commit_id/objects/1e/cf2ad8e957bd528b46e2052fa506f2adc74970 deleted file mode 100644 index ebc3a23..0000000 Binary files a/_git_of_git_commit_id/objects/1e/cf2ad8e957bd528b46e2052fa506f2adc74970 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1e/e7d6fb0e44d9424d7bcd0f759fda8d32d26026 b/_git_of_git_commit_id/objects/1e/e7d6fb0e44d9424d7bcd0f759fda8d32d26026 deleted file mode 100644 index bdec3c2..0000000 Binary files a/_git_of_git_commit_id/objects/1e/e7d6fb0e44d9424d7bcd0f759fda8d32d26026 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1f/00198566515f6ca57ead6bef5141f4e7cb9232 b/_git_of_git_commit_id/objects/1f/00198566515f6ca57ead6bef5141f4e7cb9232 deleted file mode 100644 index 75a810d..0000000 Binary files a/_git_of_git_commit_id/objects/1f/00198566515f6ca57ead6bef5141f4e7cb9232 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1f/0ca866abdaa7df437d2f1e22f26cd74f439cec b/_git_of_git_commit_id/objects/1f/0ca866abdaa7df437d2f1e22f26cd74f439cec deleted file mode 100644 index d1e268f..0000000 Binary files a/_git_of_git_commit_id/objects/1f/0ca866abdaa7df437d2f1e22f26cd74f439cec and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1f/391d7476cefce37838d4eaef4a395aa263638a b/_git_of_git_commit_id/objects/1f/391d7476cefce37838d4eaef4a395aa263638a deleted file mode 100644 index 78022b0..0000000 Binary files a/_git_of_git_commit_id/objects/1f/391d7476cefce37838d4eaef4a395aa263638a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1f/4330ab6d65bb819fc0ea81183963a8e8933c7a b/_git_of_git_commit_id/objects/1f/4330ab6d65bb819fc0ea81183963a8e8933c7a deleted file mode 100644 index 002c875..0000000 Binary files a/_git_of_git_commit_id/objects/1f/4330ab6d65bb819fc0ea81183963a8e8933c7a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1f/680841bcfc691e4124a0899e458502c03f407b b/_git_of_git_commit_id/objects/1f/680841bcfc691e4124a0899e458502c03f407b deleted file mode 100644 index 7bfe851..0000000 Binary files a/_git_of_git_commit_id/objects/1f/680841bcfc691e4124a0899e458502c03f407b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1f/6df38efc7e683f3f5bbc3e7d28b628c394e3ec b/_git_of_git_commit_id/objects/1f/6df38efc7e683f3f5bbc3e7d28b628c394e3ec deleted file mode 100644 index 836f718..0000000 Binary files a/_git_of_git_commit_id/objects/1f/6df38efc7e683f3f5bbc3e7d28b628c394e3ec and /dev/null differ diff --git a/_git_of_git_commit_id/objects/1f/c6641fe99d9bb0472792bb3eb2f2103991046e b/_git_of_git_commit_id/objects/1f/c6641fe99d9bb0472792bb3eb2f2103991046e deleted file mode 100644 index 7dd61f9..0000000 --- a/_git_of_git_commit_id/objects/1f/c6641fe99d9bb0472792bb3eb2f2103991046e +++ /dev/null @@ -1 +0,0 @@ -x+)JMU02d040031QK,L/Je05w 0wǓgHT%eU0y;_ Mװy-,*tv veH=zcYsd:nlH U몗pܜ#pQŻ'r,(' XļP /QQi3oX1k?\ytTqA~^]_v5xʟ\6$. P(.Jfycgl$HպjjfF \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/1f/ec2e13a08113de7c607f823551de1d66857ffe b/_git_of_git_commit_id/objects/1f/ec2e13a08113de7c607f823551de1d66857ffe deleted file mode 100644 index 50c729c..0000000 Binary files a/_git_of_git_commit_id/objects/1f/ec2e13a08113de7c607f823551de1d66857ffe and /dev/null differ diff --git a/_git_of_git_commit_id/objects/20/281fb034674b9d4427d10f36b42e5fce8dc971 b/_git_of_git_commit_id/objects/20/281fb034674b9d4427d10f36b42e5fce8dc971 deleted file mode 100644 index 29ad7f2..0000000 Binary files a/_git_of_git_commit_id/objects/20/281fb034674b9d4427d10f36b42e5fce8dc971 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/20/4305438579172461682a7290c5890e1f2dfdea b/_git_of_git_commit_id/objects/20/4305438579172461682a7290c5890e1f2dfdea deleted file mode 100644 index 7da14fa..0000000 Binary files a/_git_of_git_commit_id/objects/20/4305438579172461682a7290c5890e1f2dfdea and /dev/null differ diff --git a/_git_of_git_commit_id/objects/20/497c8a43e526fc6c9545f65cbf0be3e0b220b6 b/_git_of_git_commit_id/objects/20/497c8a43e526fc6c9545f65cbf0be3e0b220b6 deleted file mode 100644 index 22eeda8..0000000 Binary files a/_git_of_git_commit_id/objects/20/497c8a43e526fc6c9545f65cbf0be3e0b220b6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/20/4b1d211b4da9d058a90091ffd5cfd02eea0d36 b/_git_of_git_commit_id/objects/20/4b1d211b4da9d058a90091ffd5cfd02eea0d36 deleted file mode 100644 index 754f277..0000000 Binary files a/_git_of_git_commit_id/objects/20/4b1d211b4da9d058a90091ffd5cfd02eea0d36 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/20/7854cfd39a1b37122060cd5e1a859d9a121b1a b/_git_of_git_commit_id/objects/20/7854cfd39a1b37122060cd5e1a859d9a121b1a deleted file mode 100644 index 7493b3d..0000000 Binary files a/_git_of_git_commit_id/objects/20/7854cfd39a1b37122060cd5e1a859d9a121b1a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/20/7afead0bcb1f3b9dc010aa1b3f1d49c98c9633 b/_git_of_git_commit_id/objects/20/7afead0bcb1f3b9dc010aa1b3f1d49c98c9633 deleted file mode 100644 index ef8f6e5..0000000 Binary files a/_git_of_git_commit_id/objects/20/7afead0bcb1f3b9dc010aa1b3f1d49c98c9633 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/20/aa22f16813cd8367721086375227195ec6239d b/_git_of_git_commit_id/objects/20/aa22f16813cd8367721086375227195ec6239d deleted file mode 100644 index 78ad130..0000000 Binary files a/_git_of_git_commit_id/objects/20/aa22f16813cd8367721086375227195ec6239d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/20/b9700cb614a23c950bd0375ed358aea70b3107 b/_git_of_git_commit_id/objects/20/b9700cb614a23c950bd0375ed358aea70b3107 deleted file mode 100644 index 30976ae..0000000 Binary files a/_git_of_git_commit_id/objects/20/b9700cb614a23c950bd0375ed358aea70b3107 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/20/c10a396c6a42be79d4aa02e5166c82b39873e2 b/_git_of_git_commit_id/objects/20/c10a396c6a42be79d4aa02e5166c82b39873e2 deleted file mode 100644 index a291efb..0000000 Binary files a/_git_of_git_commit_id/objects/20/c10a396c6a42be79d4aa02e5166c82b39873e2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/21/26413109878535179db687929c6401aca35fae b/_git_of_git_commit_id/objects/21/26413109878535179db687929c6401aca35fae deleted file mode 100644 index 596ba86..0000000 Binary files a/_git_of_git_commit_id/objects/21/26413109878535179db687929c6401aca35fae and /dev/null differ diff --git a/_git_of_git_commit_id/objects/21/7ae14de77d63c9a9aefe9f540efaebe6ee466c b/_git_of_git_commit_id/objects/21/7ae14de77d63c9a9aefe9f540efaebe6ee466c deleted file mode 100644 index 021ff49..0000000 Binary files a/_git_of_git_commit_id/objects/21/7ae14de77d63c9a9aefe9f540efaebe6ee466c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/21/ae2b8dbccfe9f3a9cbbd7c7e32e57c07c42692 b/_git_of_git_commit_id/objects/21/ae2b8dbccfe9f3a9cbbd7c7e32e57c07c42692 deleted file mode 100644 index 93eef30..0000000 Binary files a/_git_of_git_commit_id/objects/21/ae2b8dbccfe9f3a9cbbd7c7e32e57c07c42692 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/22/4461b263b438bd9130742d55eb279971aa02fa b/_git_of_git_commit_id/objects/22/4461b263b438bd9130742d55eb279971aa02fa deleted file mode 100644 index 6b8fe2c..0000000 Binary files a/_git_of_git_commit_id/objects/22/4461b263b438bd9130742d55eb279971aa02fa and /dev/null differ diff --git a/_git_of_git_commit_id/objects/22/48d753b0a91e6fed0c4f4c0f24787fcaed57d1 b/_git_of_git_commit_id/objects/22/48d753b0a91e6fed0c4f4c0f24787fcaed57d1 deleted file mode 100644 index eca6fee..0000000 Binary files a/_git_of_git_commit_id/objects/22/48d753b0a91e6fed0c4f4c0f24787fcaed57d1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/22/668216a3cec5a00d804dc5e9a904a10fd0fd09 b/_git_of_git_commit_id/objects/22/668216a3cec5a00d804dc5e9a904a10fd0fd09 deleted file mode 100644 index af82b8f..0000000 --- a/_git_of_git_commit_id/objects/22/668216a3cec5a00d804dc5e9a904a10fd0fd09 +++ /dev/null @@ -1,4 +0,0 @@ -x-10Es/ -Xy*/ ɘd6x|ھ߳Q,ˡ=6^iMG(͑EPx* -G1 -/ NkJ4rdkoҟLa,ZοDs U/7 \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/22/6b6d7f68cf33582ccdea3b5162fd804861b65c b/_git_of_git_commit_id/objects/22/6b6d7f68cf33582ccdea3b5162fd804861b65c deleted file mode 100644 index e3caac2..0000000 Binary files a/_git_of_git_commit_id/objects/22/6b6d7f68cf33582ccdea3b5162fd804861b65c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/22/7eb28071788fcd0af2e790549dfaf6f9e22cac b/_git_of_git_commit_id/objects/22/7eb28071788fcd0af2e790549dfaf6f9e22cac deleted file mode 100644 index e4443de..0000000 Binary files a/_git_of_git_commit_id/objects/22/7eb28071788fcd0af2e790549dfaf6f9e22cac and /dev/null differ diff --git a/_git_of_git_commit_id/objects/22/c1751b35999b8dfaf98e46e1049f590837e522 b/_git_of_git_commit_id/objects/22/c1751b35999b8dfaf98e46e1049f590837e522 deleted file mode 100644 index 7030375..0000000 Binary files a/_git_of_git_commit_id/objects/22/c1751b35999b8dfaf98e46e1049f590837e522 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/22/d124896e971775003324e5d582b4b33771516b b/_git_of_git_commit_id/objects/22/d124896e971775003324e5d582b4b33771516b deleted file mode 100644 index ecda2b7..0000000 Binary files a/_git_of_git_commit_id/objects/22/d124896e971775003324e5d582b4b33771516b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/23/3ec564eb71e8b5ecdb6f4a3cacc4ed36254f00 b/_git_of_git_commit_id/objects/23/3ec564eb71e8b5ecdb6f4a3cacc4ed36254f00 deleted file mode 100644 index f2e1868..0000000 Binary files a/_git_of_git_commit_id/objects/23/3ec564eb71e8b5ecdb6f4a3cacc4ed36254f00 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/23/504cd610d546e705d2c68a20451a155f34a8d6 b/_git_of_git_commit_id/objects/23/504cd610d546e705d2c68a20451a155f34a8d6 deleted file mode 100644 index dc4df93..0000000 Binary files a/_git_of_git_commit_id/objects/23/504cd610d546e705d2c68a20451a155f34a8d6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/23/80a899905ee320c55c41789c75b6a36f6ea8f8 b/_git_of_git_commit_id/objects/23/80a899905ee320c55c41789c75b6a36f6ea8f8 deleted file mode 100644 index 7631213..0000000 --- a/_git_of_git_commit_id/objects/23/80a899905ee320c55c41789c75b6a36f6ea8f8 +++ /dev/null @@ -1 +0,0 @@ -x5j0 BPJY^up\}eIsJS$Q#LaDoќ4)iV*r!: Jp'U>Zh}>hh7c.px>Zs&8C/ׯDrNPƪFxt5V)hm<Ц\ג2%UjD⚋w(I-sa̡IZ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/23/a077fcd2adaa09347a651b17f738e95cf6e7b2 b/_git_of_git_commit_id/objects/23/a077fcd2adaa09347a651b17f738e95cf6e7b2 deleted file mode 100644 index 0dbcf35..0000000 Binary files a/_git_of_git_commit_id/objects/23/a077fcd2adaa09347a651b17f738e95cf6e7b2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/23/c41efdca0d9fbfaf9625df52e06bb78d1e2ef9 b/_git_of_git_commit_id/objects/23/c41efdca0d9fbfaf9625df52e06bb78d1e2ef9 deleted file mode 100644 index ee01efb..0000000 Binary files a/_git_of_git_commit_id/objects/23/c41efdca0d9fbfaf9625df52e06bb78d1e2ef9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/24/a2667ad1765999779a246abfb4d3f7d032995a b/_git_of_git_commit_id/objects/24/a2667ad1765999779a246abfb4d3f7d032995a deleted file mode 100644 index b543845..0000000 Binary files a/_git_of_git_commit_id/objects/24/a2667ad1765999779a246abfb4d3f7d032995a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/25/07ab87984f70eff8d3304d5269c00816a115b8 b/_git_of_git_commit_id/objects/25/07ab87984f70eff8d3304d5269c00816a115b8 deleted file mode 100644 index 752f4a9..0000000 Binary files a/_git_of_git_commit_id/objects/25/07ab87984f70eff8d3304d5269c00816a115b8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/25/691e472ca8de0c5fb6f4e1903108c05e228f53 b/_git_of_git_commit_id/objects/25/691e472ca8de0c5fb6f4e1903108c05e228f53 deleted file mode 100644 index 6360723..0000000 --- a/_git_of_git_commit_id/objects/25/691e472ca8de0c5fb6f4e1903108c05e228f53 +++ /dev/null @@ -1 +0,0 @@ -xKOR0`` 50K20d`jrdJR7d_S_a |={5 \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/25/e4f01d8004ff525fba7f37bc5574a495d57b47 b/_git_of_git_commit_id/objects/25/e4f01d8004ff525fba7f37bc5574a495d57b47 deleted file mode 100644 index 75152e1..0000000 Binary files a/_git_of_git_commit_id/objects/25/e4f01d8004ff525fba7f37bc5574a495d57b47 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/26/1a1d26185aa46334fec43ce68a2829ca23e49b b/_git_of_git_commit_id/objects/26/1a1d26185aa46334fec43ce68a2829ca23e49b deleted file mode 100644 index 2a4a3e9..0000000 Binary files a/_git_of_git_commit_id/objects/26/1a1d26185aa46334fec43ce68a2829ca23e49b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/26/32d8ccf96dbb82e39cfb6edd9a1b3340b79211 b/_git_of_git_commit_id/objects/26/32d8ccf96dbb82e39cfb6edd9a1b3340b79211 deleted file mode 100644 index 4ac7469..0000000 Binary files a/_git_of_git_commit_id/objects/26/32d8ccf96dbb82e39cfb6edd9a1b3340b79211 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/26/3e68faad05a0b6f93484c3b37fa7b3f0fd961b b/_git_of_git_commit_id/objects/26/3e68faad05a0b6f93484c3b37fa7b3f0fd961b deleted file mode 100644 index 20b58b9..0000000 Binary files a/_git_of_git_commit_id/objects/26/3e68faad05a0b6f93484c3b37fa7b3f0fd961b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/26/5ee5c6bf9a8e1a3e75bda2a05ae091dcf4c341 b/_git_of_git_commit_id/objects/26/5ee5c6bf9a8e1a3e75bda2a05ae091dcf4c341 deleted file mode 100644 index cbcf7dc..0000000 Binary files a/_git_of_git_commit_id/objects/26/5ee5c6bf9a8e1a3e75bda2a05ae091dcf4c341 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/26/b30263fc5280c1a130db4cbb10f50d6a7b9a49 b/_git_of_git_commit_id/objects/26/b30263fc5280c1a130db4cbb10f50d6a7b9a49 deleted file mode 100644 index c154aff..0000000 Binary files a/_git_of_git_commit_id/objects/26/b30263fc5280c1a130db4cbb10f50d6a7b9a49 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/26/e63b5423eb4bb600433c2325ad445ef583acc2 b/_git_of_git_commit_id/objects/26/e63b5423eb4bb600433c2325ad445ef583acc2 deleted file mode 100644 index 9320ebc..0000000 Binary files a/_git_of_git_commit_id/objects/26/e63b5423eb4bb600433c2325ad445ef583acc2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/27/142bf3ae1fcdc4a106a6cb94ca459c193d2d15 b/_git_of_git_commit_id/objects/27/142bf3ae1fcdc4a106a6cb94ca459c193d2d15 deleted file mode 100644 index aa15086..0000000 Binary files a/_git_of_git_commit_id/objects/27/142bf3ae1fcdc4a106a6cb94ca459c193d2d15 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/27/653de25d5bb9662a144cfcc99eb363c17c4b7b b/_git_of_git_commit_id/objects/27/653de25d5bb9662a144cfcc99eb363c17c4b7b deleted file mode 100644 index 4b7b0f7..0000000 Binary files a/_git_of_git_commit_id/objects/27/653de25d5bb9662a144cfcc99eb363c17c4b7b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/27/6548084dae8d9b3e496380a230a3a4982e8494 b/_git_of_git_commit_id/objects/27/6548084dae8d9b3e496380a230a3a4982e8494 deleted file mode 100644 index 177dfea..0000000 Binary files a/_git_of_git_commit_id/objects/27/6548084dae8d9b3e496380a230a3a4982e8494 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/27/6f066312cbf755fa3da2aad2c5d9e75532e846 b/_git_of_git_commit_id/objects/27/6f066312cbf755fa3da2aad2c5d9e75532e846 deleted file mode 100644 index 501c5a2..0000000 Binary files a/_git_of_git_commit_id/objects/27/6f066312cbf755fa3da2aad2c5d9e75532e846 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/27/8d9884604426c1ddaf061fa1f67c2d13357598 b/_git_of_git_commit_id/objects/27/8d9884604426c1ddaf061fa1f67c2d13357598 deleted file mode 100644 index b0a52b3..0000000 Binary files a/_git_of_git_commit_id/objects/27/8d9884604426c1ddaf061fa1f67c2d13357598 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/27/ab7b0f5c44f42b59e3e937ffd099f612baba0a b/_git_of_git_commit_id/objects/27/ab7b0f5c44f42b59e3e937ffd099f612baba0a deleted file mode 100644 index 73adecf..0000000 Binary files a/_git_of_git_commit_id/objects/27/ab7b0f5c44f42b59e3e937ffd099f612baba0a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/28/0df27049f6ccd286c8575fb3d1998b307334ea b/_git_of_git_commit_id/objects/28/0df27049f6ccd286c8575fb3d1998b307334ea deleted file mode 100644 index c82a866..0000000 Binary files a/_git_of_git_commit_id/objects/28/0df27049f6ccd286c8575fb3d1998b307334ea and /dev/null differ diff --git a/_git_of_git_commit_id/objects/28/140938e3d1ff00894b66f1f3aa79a47e035149 b/_git_of_git_commit_id/objects/28/140938e3d1ff00894b66f1f3aa79a47e035149 deleted file mode 100644 index 043e00c..0000000 Binary files a/_git_of_git_commit_id/objects/28/140938e3d1ff00894b66f1f3aa79a47e035149 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/28/5ddec4a6f3fe6d40e5c842c63eeba6e17bbed5 b/_git_of_git_commit_id/objects/28/5ddec4a6f3fe6d40e5c842c63eeba6e17bbed5 deleted file mode 100644 index 8faf374..0000000 Binary files a/_git_of_git_commit_id/objects/28/5ddec4a6f3fe6d40e5c842c63eeba6e17bbed5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/28/728f43f6a9619e78c560830f1db98e271cec07 b/_git_of_git_commit_id/objects/28/728f43f6a9619e78c560830f1db98e271cec07 deleted file mode 100644 index 2ba8db5..0000000 Binary files a/_git_of_git_commit_id/objects/28/728f43f6a9619e78c560830f1db98e271cec07 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/28/b324dd131ecf66eb304fa456dda4c471ae3b89 b/_git_of_git_commit_id/objects/28/b324dd131ecf66eb304fa456dda4c471ae3b89 deleted file mode 100644 index c88d093..0000000 Binary files a/_git_of_git_commit_id/objects/28/b324dd131ecf66eb304fa456dda4c471ae3b89 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/28/bf3f169fdb8b405ca1d7edf7ffbd3c89eddcc0 b/_git_of_git_commit_id/objects/28/bf3f169fdb8b405ca1d7edf7ffbd3c89eddcc0 deleted file mode 100644 index 1b57f44..0000000 Binary files a/_git_of_git_commit_id/objects/28/bf3f169fdb8b405ca1d7edf7ffbd3c89eddcc0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/29/06cadc71d64d1cb5843a1272d82181603254fc b/_git_of_git_commit_id/objects/29/06cadc71d64d1cb5843a1272d82181603254fc deleted file mode 100644 index 4d5f1cd..0000000 Binary files a/_git_of_git_commit_id/objects/29/06cadc71d64d1cb5843a1272d82181603254fc and /dev/null differ diff --git a/_git_of_git_commit_id/objects/29/ad7f24d51292e7894c2ce502dad49501322b74 b/_git_of_git_commit_id/objects/29/ad7f24d51292e7894c2ce502dad49501322b74 deleted file mode 100644 index 382e606..0000000 Binary files a/_git_of_git_commit_id/objects/29/ad7f24d51292e7894c2ce502dad49501322b74 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/29/bf7d4e51564207e45626eacbd53133c0737442 b/_git_of_git_commit_id/objects/29/bf7d4e51564207e45626eacbd53133c0737442 deleted file mode 100644 index 36011c3..0000000 Binary files a/_git_of_git_commit_id/objects/29/bf7d4e51564207e45626eacbd53133c0737442 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/29/c259ef356a478e1c7c9cb32269d0c4c1658572 b/_git_of_git_commit_id/objects/29/c259ef356a478e1c7c9cb32269d0c4c1658572 deleted file mode 100644 index c95f235..0000000 Binary files a/_git_of_git_commit_id/objects/29/c259ef356a478e1c7c9cb32269d0c4c1658572 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/29/c2dab01f4f1a080727cafa3cc549473ad1b02c b/_git_of_git_commit_id/objects/29/c2dab01f4f1a080727cafa3cc549473ad1b02c deleted file mode 100644 index 1210e9a..0000000 Binary files a/_git_of_git_commit_id/objects/29/c2dab01f4f1a080727cafa3cc549473ad1b02c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/29/df60858ad9779748e0e0021048c61ddaf34734 b/_git_of_git_commit_id/objects/29/df60858ad9779748e0e0021048c61ddaf34734 deleted file mode 100644 index fa454b1..0000000 Binary files a/_git_of_git_commit_id/objects/29/df60858ad9779748e0e0021048c61ddaf34734 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2a/14cf2eca2c8286d83edea09f9c3b0ecf8eed5b b/_git_of_git_commit_id/objects/2a/14cf2eca2c8286d83edea09f9c3b0ecf8eed5b deleted file mode 100644 index 7e0635d..0000000 Binary files a/_git_of_git_commit_id/objects/2a/14cf2eca2c8286d83edea09f9c3b0ecf8eed5b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2a/9f13d4dba0708ae01e899c83898e79ada6d3ac b/_git_of_git_commit_id/objects/2a/9f13d4dba0708ae01e899c83898e79ada6d3ac deleted file mode 100644 index 9037c0e..0000000 Binary files a/_git_of_git_commit_id/objects/2a/9f13d4dba0708ae01e899c83898e79ada6d3ac and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2a/a1c64314391049b5439e2e6bae0d6be9d30ac8 b/_git_of_git_commit_id/objects/2a/a1c64314391049b5439e2e6bae0d6be9d30ac8 deleted file mode 100644 index 2fc21a1..0000000 Binary files a/_git_of_git_commit_id/objects/2a/a1c64314391049b5439e2e6bae0d6be9d30ac8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2a/d03c1ed6523df25e805e3f3debb04f1d6dfdc9 b/_git_of_git_commit_id/objects/2a/d03c1ed6523df25e805e3f3debb04f1d6dfdc9 deleted file mode 100644 index b9cd6b9..0000000 Binary files a/_git_of_git_commit_id/objects/2a/d03c1ed6523df25e805e3f3debb04f1d6dfdc9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2a/f8d6ecb0cbfa94eb7d2aba33d9ace0728247a3 b/_git_of_git_commit_id/objects/2a/f8d6ecb0cbfa94eb7d2aba33d9ace0728247a3 deleted file mode 100644 index d114ff0..0000000 Binary files a/_git_of_git_commit_id/objects/2a/f8d6ecb0cbfa94eb7d2aba33d9ace0728247a3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2b/1080aee54abae287c3deb4246a425af3603708 b/_git_of_git_commit_id/objects/2b/1080aee54abae287c3deb4246a425af3603708 deleted file mode 100644 index 2f0bf29..0000000 Binary files a/_git_of_git_commit_id/objects/2b/1080aee54abae287c3deb4246a425af3603708 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2b/35e298bca47e5430d36c5b3330274f77cdc5d0 b/_git_of_git_commit_id/objects/2b/35e298bca47e5430d36c5b3330274f77cdc5d0 deleted file mode 100644 index aa363af..0000000 Binary files a/_git_of_git_commit_id/objects/2b/35e298bca47e5430d36c5b3330274f77cdc5d0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2b/7b6ab803b2ab3399e4446db74e6b8ac34394cd b/_git_of_git_commit_id/objects/2b/7b6ab803b2ab3399e4446db74e6b8ac34394cd deleted file mode 100644 index db0eb7a..0000000 Binary files a/_git_of_git_commit_id/objects/2b/7b6ab803b2ab3399e4446db74e6b8ac34394cd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2b/a18cdd8338112e257794561e44a9a0ac3438c4 b/_git_of_git_commit_id/objects/2b/a18cdd8338112e257794561e44a9a0ac3438c4 deleted file mode 100644 index 236ba89..0000000 Binary files a/_git_of_git_commit_id/objects/2b/a18cdd8338112e257794561e44a9a0ac3438c4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2b/a8db5afcd54b8024d01445c8061024be1e512e b/_git_of_git_commit_id/objects/2b/a8db5afcd54b8024d01445c8061024be1e512e deleted file mode 100644 index 70bce0b..0000000 Binary files a/_git_of_git_commit_id/objects/2b/a8db5afcd54b8024d01445c8061024be1e512e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2b/dec340b795e1b613816848746a0a9b4e1ee6d4 b/_git_of_git_commit_id/objects/2b/dec340b795e1b613816848746a0a9b4e1ee6d4 deleted file mode 100644 index 5d11c6b..0000000 Binary files a/_git_of_git_commit_id/objects/2b/dec340b795e1b613816848746a0a9b4e1ee6d4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2c/685c153f3e90adf7baab1db82f2a2aeeeb2144 b/_git_of_git_commit_id/objects/2c/685c153f3e90adf7baab1db82f2a2aeeeb2144 deleted file mode 100644 index 36e6104..0000000 Binary files a/_git_of_git_commit_id/objects/2c/685c153f3e90adf7baab1db82f2a2aeeeb2144 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2c/ed5d5c344e3334a45632100d42eaaebbde527d b/_git_of_git_commit_id/objects/2c/ed5d5c344e3334a45632100d42eaaebbde527d deleted file mode 100644 index f568872..0000000 Binary files a/_git_of_git_commit_id/objects/2c/ed5d5c344e3334a45632100d42eaaebbde527d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2d/1a1e96e9347e9986c8e2dab693c97d6978d841 b/_git_of_git_commit_id/objects/2d/1a1e96e9347e9986c8e2dab693c97d6978d841 deleted file mode 100644 index da5ec15..0000000 Binary files a/_git_of_git_commit_id/objects/2d/1a1e96e9347e9986c8e2dab693c97d6978d841 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2d/65a74b4c873be9318b85b1d7d81fa90014ddc6 b/_git_of_git_commit_id/objects/2d/65a74b4c873be9318b85b1d7d81fa90014ddc6 deleted file mode 100644 index 4e6623a..0000000 Binary files a/_git_of_git_commit_id/objects/2d/65a74b4c873be9318b85b1d7d81fa90014ddc6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2d/7a6eab268324164ccc50dfeaa11e0bf2a9f9ec b/_git_of_git_commit_id/objects/2d/7a6eab268324164ccc50dfeaa11e0bf2a9f9ec deleted file mode 100644 index c726d36..0000000 Binary files a/_git_of_git_commit_id/objects/2d/7a6eab268324164ccc50dfeaa11e0bf2a9f9ec and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2d/84d98d332800e45331c35e761d1982a6365400 b/_git_of_git_commit_id/objects/2d/84d98d332800e45331c35e761d1982a6365400 deleted file mode 100644 index ab9983b..0000000 --- a/_git_of_git_commit_id/objects/2d/84d98d332800e45331c35e761d1982a6365400 +++ /dev/null @@ -1 +0,0 @@ -xKOR01c` 50K10d`j]sd g-.?[./,w^= | \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/2d/f8b890c1436129ab0c354037403266df105b79 b/_git_of_git_commit_id/objects/2d/f8b890c1436129ab0c354037403266df105b79 deleted file mode 100644 index 9f56fe0..0000000 Binary files a/_git_of_git_commit_id/objects/2d/f8b890c1436129ab0c354037403266df105b79 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2e/014a5b31183ef9cf4e4b3a24e03249954a8199 b/_git_of_git_commit_id/objects/2e/014a5b31183ef9cf4e4b3a24e03249954a8199 deleted file mode 100644 index 3a66874..0000000 Binary files a/_git_of_git_commit_id/objects/2e/014a5b31183ef9cf4e4b3a24e03249954a8199 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2e/1832a5a66f932f3a12ca8755f6ec2a6c425428 b/_git_of_git_commit_id/objects/2e/1832a5a66f932f3a12ca8755f6ec2a6c425428 deleted file mode 100644 index 01ba99b..0000000 --- a/_git_of_git_commit_id/objects/2e/1832a5a66f932f3a12ca8755f6ec2a6c425428 +++ /dev/null @@ -1 +0,0 @@ -xKj1D)zoM|nyRo͍+ [CB4M}Ye|Nj;\ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/2e/19ce0acf918f088a256c2e005b55e5f2a3606d b/_git_of_git_commit_id/objects/2e/19ce0acf918f088a256c2e005b55e5f2a3606d deleted file mode 100644 index b798ddb..0000000 Binary files a/_git_of_git_commit_id/objects/2e/19ce0acf918f088a256c2e005b55e5f2a3606d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2e/39ea3027a3547abd71c3b6c60c4ca5388b4b68 b/_git_of_git_commit_id/objects/2e/39ea3027a3547abd71c3b6c60c4ca5388b4b68 deleted file mode 100644 index 5507b68..0000000 Binary files a/_git_of_git_commit_id/objects/2e/39ea3027a3547abd71c3b6c60c4ca5388b4b68 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2f/945a1baea44073fef7bdd096365e8447ec60b9 b/_git_of_git_commit_id/objects/2f/945a1baea44073fef7bdd096365e8447ec60b9 deleted file mode 100644 index 37b17fc..0000000 Binary files a/_git_of_git_commit_id/objects/2f/945a1baea44073fef7bdd096365e8447ec60b9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2f/ae2bb8828349f848a84748ff28d9ebcd084842 b/_git_of_git_commit_id/objects/2f/ae2bb8828349f848a84748ff28d9ebcd084842 deleted file mode 100644 index 8259433..0000000 --- a/_git_of_git_commit_id/objects/2f/ae2bb8828349f848a84748ff28d9ebcd084842 +++ /dev/null @@ -1 +0,0 @@ -xKOR01e` 50K00d`jrF΢fv|"艄I y \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/2f/ba1917bbca3c974d38ba32574ed5240ac5b35b b/_git_of_git_commit_id/objects/2f/ba1917bbca3c974d38ba32574ed5240ac5b35b deleted file mode 100644 index 4593019..0000000 Binary files a/_git_of_git_commit_id/objects/2f/ba1917bbca3c974d38ba32574ed5240ac5b35b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2f/c21a1a28dc03f609329b729de905d206056a97 b/_git_of_git_commit_id/objects/2f/c21a1a28dc03f609329b729de905d206056a97 deleted file mode 100644 index 44b5f0c..0000000 Binary files a/_git_of_git_commit_id/objects/2f/c21a1a28dc03f609329b729de905d206056a97 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/2f/f63bd7d7dc18a7156f90a90a57948d628401ab b/_git_of_git_commit_id/objects/2f/f63bd7d7dc18a7156f90a90a57948d628401ab deleted file mode 100644 index dc39559..0000000 Binary files a/_git_of_git_commit_id/objects/2f/f63bd7d7dc18a7156f90a90a57948d628401ab and /dev/null differ diff --git a/_git_of_git_commit_id/objects/30/52017642ec741fa9feacd3d482f37e79b83ba4 b/_git_of_git_commit_id/objects/30/52017642ec741fa9feacd3d482f37e79b83ba4 deleted file mode 100644 index 42123ea..0000000 Binary files a/_git_of_git_commit_id/objects/30/52017642ec741fa9feacd3d482f37e79b83ba4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/30/bad07aa277b5de5c902e170ed452a51db62626 b/_git_of_git_commit_id/objects/30/bad07aa277b5de5c902e170ed452a51db62626 deleted file mode 100644 index 5213b30..0000000 Binary files a/_git_of_git_commit_id/objects/30/bad07aa277b5de5c902e170ed452a51db62626 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/30/c427c6cbb3cbc47b1d8185dd01fd31e2a2a173 b/_git_of_git_commit_id/objects/30/c427c6cbb3cbc47b1d8185dd01fd31e2a2a173 deleted file mode 100644 index cf8abb9..0000000 Binary files a/_git_of_git_commit_id/objects/30/c427c6cbb3cbc47b1d8185dd01fd31e2a2a173 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/30/cf0d85a8cf4502d9139124a85e0f571be429ef b/_git_of_git_commit_id/objects/30/cf0d85a8cf4502d9139124a85e0f571be429ef deleted file mode 100644 index ab2d09d..0000000 Binary files a/_git_of_git_commit_id/objects/30/cf0d85a8cf4502d9139124a85e0f571be429ef and /dev/null differ diff --git a/_git_of_git_commit_id/objects/30/d8db4b9cd4a9ba7ae5f369a01ce468ef602d53 b/_git_of_git_commit_id/objects/30/d8db4b9cd4a9ba7ae5f369a01ce468ef602d53 deleted file mode 100644 index b9ddf42..0000000 Binary files a/_git_of_git_commit_id/objects/30/d8db4b9cd4a9ba7ae5f369a01ce468ef602d53 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/31/6351b184dbd528bd628dcbf19bea7e4fc35d9e b/_git_of_git_commit_id/objects/31/6351b184dbd528bd628dcbf19bea7e4fc35d9e deleted file mode 100644 index ba3fd9f..0000000 Binary files a/_git_of_git_commit_id/objects/31/6351b184dbd528bd628dcbf19bea7e4fc35d9e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/31/76e53f847a4b56790170fb90b3e1f527a3f8bb b/_git_of_git_commit_id/objects/31/76e53f847a4b56790170fb90b3e1f527a3f8bb deleted file mode 100644 index 63332e8..0000000 Binary files a/_git_of_git_commit_id/objects/31/76e53f847a4b56790170fb90b3e1f527a3f8bb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/31/ae89b6e0563ec71b0beb2b71d5ddf6f0bc3d0d b/_git_of_git_commit_id/objects/31/ae89b6e0563ec71b0beb2b71d5ddf6f0bc3d0d deleted file mode 100644 index 5a480b0..0000000 Binary files a/_git_of_git_commit_id/objects/31/ae89b6e0563ec71b0beb2b71d5ddf6f0bc3d0d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/31/c5128e4098d8440c8a6f9acf41df2e298e9af2 b/_git_of_git_commit_id/objects/31/c5128e4098d8440c8a6f9acf41df2e298e9af2 deleted file mode 100644 index acc5694..0000000 Binary files a/_git_of_git_commit_id/objects/31/c5128e4098d8440c8a6f9acf41df2e298e9af2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/31/c9eb7a603648544771424f4511a8407ff76477 b/_git_of_git_commit_id/objects/31/c9eb7a603648544771424f4511a8407ff76477 deleted file mode 100644 index 8390f02..0000000 Binary files a/_git_of_git_commit_id/objects/31/c9eb7a603648544771424f4511a8407ff76477 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/31/eeb2fd3668b19b61e283a35a6f6e125012241c b/_git_of_git_commit_id/objects/31/eeb2fd3668b19b61e283a35a6f6e125012241c deleted file mode 100644 index 6ad65b2..0000000 Binary files a/_git_of_git_commit_id/objects/31/eeb2fd3668b19b61e283a35a6f6e125012241c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/32/16be5bdefbb1ea4e43e64b9e247d7b6becab84 b/_git_of_git_commit_id/objects/32/16be5bdefbb1ea4e43e64b9e247d7b6becab84 deleted file mode 100644 index 754abdd..0000000 Binary files a/_git_of_git_commit_id/objects/32/16be5bdefbb1ea4e43e64b9e247d7b6becab84 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/32/21c1d2c7f880175b1e9c249cceb596a02ecf2b b/_git_of_git_commit_id/objects/32/21c1d2c7f880175b1e9c249cceb596a02ecf2b deleted file mode 100644 index 028d86f..0000000 Binary files a/_git_of_git_commit_id/objects/32/21c1d2c7f880175b1e9c249cceb596a02ecf2b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/32/47bb597a10899fd9b6db6e0341bcfaf43e5681 b/_git_of_git_commit_id/objects/32/47bb597a10899fd9b6db6e0341bcfaf43e5681 deleted file mode 100644 index d92823a..0000000 Binary files a/_git_of_git_commit_id/objects/32/47bb597a10899fd9b6db6e0341bcfaf43e5681 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/32/585201a79970861e61fb6aa33802e35b4a2388 b/_git_of_git_commit_id/objects/32/585201a79970861e61fb6aa33802e35b4a2388 deleted file mode 100644 index 081e05c..0000000 Binary files a/_git_of_git_commit_id/objects/32/585201a79970861e61fb6aa33802e35b4a2388 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/32/7ea18c0488b43b36f1573fdba5d3b22c278cb9 b/_git_of_git_commit_id/objects/32/7ea18c0488b43b36f1573fdba5d3b22c278cb9 deleted file mode 100644 index 62016df..0000000 --- a/_git_of_git_commit_id/objects/32/7ea18c0488b43b36f1573fdba5d3b22c278cb9 +++ /dev/null @@ -1 +0,0 @@ -xMJ1F]T~;0ϐTʙ'IN+zz }Q+e0:3)6(KA)x&P[\0#K2'Jy!,R4":twxG?KN<_J\'j pZh[xJJ1#ql9Ѡ'.3BnG+5s/ྯ^ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/33/1f99df3479c919161e85d88cabd51ab1e10a9c b/_git_of_git_commit_id/objects/33/1f99df3479c919161e85d88cabd51ab1e10a9c deleted file mode 100644 index cc39e4b..0000000 Binary files a/_git_of_git_commit_id/objects/33/1f99df3479c919161e85d88cabd51ab1e10a9c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/33/2b9d93114f4385d5bf16b66e1b4934c89031b6 b/_git_of_git_commit_id/objects/33/2b9d93114f4385d5bf16b66e1b4934c89031b6 deleted file mode 100644 index 9aeee40..0000000 Binary files a/_git_of_git_commit_id/objects/33/2b9d93114f4385d5bf16b66e1b4934c89031b6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/33/4c4ff5a08f4b8e4bbee11609cf0aa77c36a60f b/_git_of_git_commit_id/objects/33/4c4ff5a08f4b8e4bbee11609cf0aa77c36a60f deleted file mode 100644 index 8fc862d..0000000 Binary files a/_git_of_git_commit_id/objects/33/4c4ff5a08f4b8e4bbee11609cf0aa77c36a60f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/33/7d50add1e986d1dc36bef84813f936325bae4d b/_git_of_git_commit_id/objects/33/7d50add1e986d1dc36bef84813f936325bae4d deleted file mode 100644 index b66f599..0000000 --- a/_git_of_git_commit_id/objects/33/7d50add1e986d1dc36bef84813f936325bae4d +++ /dev/null @@ -1,2 +0,0 @@ -x5-Ka7La/ 0E>ld`PI&bSA- 2A08 5 w}7"$@ p KCיah)ڤ]9]5F~q> A`P~ 9)Y0Z%3A&-&ϥfQj:щ$#)P+-^ykW: -nVbNI)g|$ yBP9Ni\J4Zqi^9_p}uEx?ӹ"/#(c5p^j)QA|r&B' 0Ӟ;o -g^H|k` \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/34/fe1195c00622393be74a281fc8f55d195da641 b/_git_of_git_commit_id/objects/34/fe1195c00622393be74a281fc8f55d195da641 deleted file mode 100644 index cbdae3b..0000000 Binary files a/_git_of_git_commit_id/objects/34/fe1195c00622393be74a281fc8f55d195da641 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/35/11748f3c0af164794ac61ecb88867cdb1f03bd b/_git_of_git_commit_id/objects/35/11748f3c0af164794ac61ecb88867cdb1f03bd deleted file mode 100644 index e417517..0000000 Binary files a/_git_of_git_commit_id/objects/35/11748f3c0af164794ac61ecb88867cdb1f03bd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/35/329646a1d5c5504820e5bdca81ae224f4d25dd b/_git_of_git_commit_id/objects/35/329646a1d5c5504820e5bdca81ae224f4d25dd deleted file mode 100644 index f7209ba..0000000 Binary files a/_git_of_git_commit_id/objects/35/329646a1d5c5504820e5bdca81ae224f4d25dd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/35/374514548a1db1e771624db8e463e6d76ed41b b/_git_of_git_commit_id/objects/35/374514548a1db1e771624db8e463e6d76ed41b deleted file mode 100644 index ca41c16..0000000 --- a/_git_of_git_commit_id/objects/35/374514548a1db1e771624db8e463e6d76ed41b +++ /dev/null @@ -1 +0,0 @@ -x%10 :+tO]!U؂[Y:s~$jZܑ(CEz yq9zů 7s}[7ع9B+@qr%@ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/35/5579560ef0d3c92bdc69c593903261231bb955 b/_git_of_git_commit_id/objects/35/5579560ef0d3c92bdc69c593903261231bb955 deleted file mode 100644 index 395b600..0000000 Binary files a/_git_of_git_commit_id/objects/35/5579560ef0d3c92bdc69c593903261231bb955 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/35/755207ff480bab88f2c8034dd8f751092ba4fb b/_git_of_git_commit_id/objects/35/755207ff480bab88f2c8034dd8f751092ba4fb deleted file mode 100644 index 1550acb..0000000 Binary files a/_git_of_git_commit_id/objects/35/755207ff480bab88f2c8034dd8f751092ba4fb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/35/849b42db5856799cbef600e41d25d70a3e3039 b/_git_of_git_commit_id/objects/35/849b42db5856799cbef600e41d25d70a3e3039 deleted file mode 100644 index 5334ea9..0000000 Binary files a/_git_of_git_commit_id/objects/35/849b42db5856799cbef600e41d25d70a3e3039 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/35/8fb6b78e5ddf8d797a8a644fa25731d38b01f7 b/_git_of_git_commit_id/objects/35/8fb6b78e5ddf8d797a8a644fa25731d38b01f7 deleted file mode 100644 index 4150d1e..0000000 Binary files a/_git_of_git_commit_id/objects/35/8fb6b78e5ddf8d797a8a644fa25731d38b01f7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/35/dbd88579a8a6962d1cb440d68f3b92a94f1f39 b/_git_of_git_commit_id/objects/35/dbd88579a8a6962d1cb440d68f3b92a94f1f39 deleted file mode 100644 index 07b08dd..0000000 Binary files a/_git_of_git_commit_id/objects/35/dbd88579a8a6962d1cb440d68f3b92a94f1f39 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/35/ff3cf9854701dc0745f46769a1f3cde2143d00 b/_git_of_git_commit_id/objects/35/ff3cf9854701dc0745f46769a1f3cde2143d00 deleted file mode 100644 index 494e7d3..0000000 Binary files a/_git_of_git_commit_id/objects/35/ff3cf9854701dc0745f46769a1f3cde2143d00 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/36/0ce69f76e95595681644275580615cd6271d01 b/_git_of_git_commit_id/objects/36/0ce69f76e95595681644275580615cd6271d01 deleted file mode 100644 index 852f368..0000000 --- a/_git_of_git_commit_id/objects/36/0ce69f76e95595681644275580615cd6271d01 +++ /dev/null @@ -1,2 +0,0 @@ -xMN0FY#n؎$X&uq ǧl>O/i w2^9 -sޒD)`oz}nsW1:FykIepRCr*hW4Hd|`Iy>G|}*{+EH_)/x>҅4j+{V.K8B3 TSY[}%l=w|1G 隱+5~k˼!o?L,{ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/36/152925d6927022208d56ab2f79bee709d15e24 b/_git_of_git_commit_id/objects/36/152925d6927022208d56ab2f79bee709d15e24 deleted file mode 100644 index c1e17b2..0000000 Binary files a/_git_of_git_commit_id/objects/36/152925d6927022208d56ab2f79bee709d15e24 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/36/176948c344aa3f999e55c4f8b18a0b8e352233 b/_git_of_git_commit_id/objects/36/176948c344aa3f999e55c4f8b18a0b8e352233 deleted file mode 100644 index b2a70a4..0000000 Binary files a/_git_of_git_commit_id/objects/36/176948c344aa3f999e55c4f8b18a0b8e352233 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/36/24b5d4925f72f8626fd50de4c179ada80d63b5 b/_git_of_git_commit_id/objects/36/24b5d4925f72f8626fd50de4c179ada80d63b5 deleted file mode 100644 index 33fcc82..0000000 Binary files a/_git_of_git_commit_id/objects/36/24b5d4925f72f8626fd50de4c179ada80d63b5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/36/68a4096af31b13d98c6082dad20ac157a68c9d b/_git_of_git_commit_id/objects/36/68a4096af31b13d98c6082dad20ac157a68c9d deleted file mode 100644 index 8264b5e..0000000 Binary files a/_git_of_git_commit_id/objects/36/68a4096af31b13d98c6082dad20ac157a68c9d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/36/73cea6c76f200bee7a456c79d9380186a3508a b/_git_of_git_commit_id/objects/36/73cea6c76f200bee7a456c79d9380186a3508a deleted file mode 100644 index b3533ea..0000000 Binary files a/_git_of_git_commit_id/objects/36/73cea6c76f200bee7a456c79d9380186a3508a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/36/b9124c87d43ee20bfcc8b7e627d0c070cb7679 b/_git_of_git_commit_id/objects/36/b9124c87d43ee20bfcc8b7e627d0c070cb7679 deleted file mode 100644 index 9b2a330..0000000 Binary files a/_git_of_git_commit_id/objects/36/b9124c87d43ee20bfcc8b7e627d0c070cb7679 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/36/c30c60879d551d69972fa6984b84f5b7d3cb75 b/_git_of_git_commit_id/objects/36/c30c60879d551d69972fa6984b84f5b7d3cb75 deleted file mode 100644 index c161577..0000000 Binary files a/_git_of_git_commit_id/objects/36/c30c60879d551d69972fa6984b84f5b7d3cb75 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/37/62471820f9194ff74aed3bd9d2e411bac82605 b/_git_of_git_commit_id/objects/37/62471820f9194ff74aed3bd9d2e411bac82605 deleted file mode 100644 index 66f45f9..0000000 Binary files a/_git_of_git_commit_id/objects/37/62471820f9194ff74aed3bd9d2e411bac82605 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/37/b17fc03aedd42171c866929abf16085182238d b/_git_of_git_commit_id/objects/37/b17fc03aedd42171c866929abf16085182238d deleted file mode 100644 index 5acf2d3..0000000 --- a/_git_of_git_commit_id/objects/37/b17fc03aedd42171c866929abf16085182238d +++ /dev/null @@ -1 +0,0 @@ -xKOR01a` 5ؔb`$6S*glo.t5{e-;mݥ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/37/c574f830b572f241b0c68f24cf9767fd7ed244 b/_git_of_git_commit_id/objects/37/c574f830b572f241b0c68f24cf9767fd7ed244 deleted file mode 100644 index 30bad07..0000000 Binary files a/_git_of_git_commit_id/objects/37/c574f830b572f241b0c68f24cf9767fd7ed244 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/37/c70676c0fc20335e630e189ba8643332a28dbb b/_git_of_git_commit_id/objects/37/c70676c0fc20335e630e189ba8643332a28dbb deleted file mode 100644 index b9bf822..0000000 Binary files a/_git_of_git_commit_id/objects/37/c70676c0fc20335e630e189ba8643332a28dbb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/38/0310ef7257764d7a15a08ba8f0e8d4958fa070 b/_git_of_git_commit_id/objects/38/0310ef7257764d7a15a08ba8f0e8d4958fa070 deleted file mode 100644 index 0a9f83c..0000000 Binary files a/_git_of_git_commit_id/objects/38/0310ef7257764d7a15a08ba8f0e8d4958fa070 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/38/54f3c2b7b4a7605953064821242b3450aee4f0 b/_git_of_git_commit_id/objects/38/54f3c2b7b4a7605953064821242b3450aee4f0 deleted file mode 100644 index ab71be5..0000000 Binary files a/_git_of_git_commit_id/objects/38/54f3c2b7b4a7605953064821242b3450aee4f0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/38/65e0223c7bac0f9c6e193b538e32c2acadc212 b/_git_of_git_commit_id/objects/38/65e0223c7bac0f9c6e193b538e32c2acadc212 deleted file mode 100644 index 06df7fd..0000000 Binary files a/_git_of_git_commit_id/objects/38/65e0223c7bac0f9c6e193b538e32c2acadc212 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/38/ec7b6f3f93f930db7ba89e00d47c9c990c395c b/_git_of_git_commit_id/objects/38/ec7b6f3f93f930db7ba89e00d47c9c990c395c deleted file mode 100644 index afbde1a..0000000 Binary files a/_git_of_git_commit_id/objects/38/ec7b6f3f93f930db7ba89e00d47c9c990c395c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/38/f8c3aad93e70bb9120b7dae857a1b085e05b21 b/_git_of_git_commit_id/objects/38/f8c3aad93e70bb9120b7dae857a1b085e05b21 deleted file mode 100644 index 6d7454e..0000000 Binary files a/_git_of_git_commit_id/objects/38/f8c3aad93e70bb9120b7dae857a1b085e05b21 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/38/fcaaf70983347d26abc42bbb37a910e290a6c3 b/_git_of_git_commit_id/objects/38/fcaaf70983347d26abc42bbb37a910e290a6c3 deleted file mode 100644 index 2632d8c..0000000 Binary files a/_git_of_git_commit_id/objects/38/fcaaf70983347d26abc42bbb37a910e290a6c3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/38/fcb444489e9b4c70949414668c4e2cdd7f865e b/_git_of_git_commit_id/objects/38/fcb444489e9b4c70949414668c4e2cdd7f865e deleted file mode 100644 index 938975a..0000000 Binary files a/_git_of_git_commit_id/objects/38/fcb444489e9b4c70949414668c4e2cdd7f865e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/39/5957c919de806e81b235c73a3e753861b711fb b/_git_of_git_commit_id/objects/39/5957c919de806e81b235c73a3e753861b711fb deleted file mode 100644 index 39d1a99..0000000 Binary files a/_git_of_git_commit_id/objects/39/5957c919de806e81b235c73a3e753861b711fb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/39/6730d7577266c4992ebd429e4e6f9162c6070c b/_git_of_git_commit_id/objects/39/6730d7577266c4992ebd429e4e6f9162c6070c deleted file mode 100644 index f2cdd8b..0000000 Binary files a/_git_of_git_commit_id/objects/39/6730d7577266c4992ebd429e4e6f9162c6070c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/39/a7889c5c35899a402169342ee09f38d755f0a4 b/_git_of_git_commit_id/objects/39/a7889c5c35899a402169342ee09f38d755f0a4 deleted file mode 100644 index a116ce5..0000000 Binary files a/_git_of_git_commit_id/objects/39/a7889c5c35899a402169342ee09f38d755f0a4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/39/d6fb378c09665f44c72763c61215fde7afd88a b/_git_of_git_commit_id/objects/39/d6fb378c09665f44c72763c61215fde7afd88a deleted file mode 100644 index 5895e80..0000000 Binary files a/_git_of_git_commit_id/objects/39/d6fb378c09665f44c72763c61215fde7afd88a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/39/fa6b77b166f00660477f042ac32a7b2d7bdce7 b/_git_of_git_commit_id/objects/39/fa6b77b166f00660477f042ac32a7b2d7bdce7 deleted file mode 100644 index 1a96aed..0000000 Binary files a/_git_of_git_commit_id/objects/39/fa6b77b166f00660477f042ac32a7b2d7bdce7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3a/18f1fcc0bb2bad3833ff2dc0664c3b55633c7f b/_git_of_git_commit_id/objects/3a/18f1fcc0bb2bad3833ff2dc0664c3b55633c7f deleted file mode 100644 index 3f0ec39..0000000 Binary files a/_git_of_git_commit_id/objects/3a/18f1fcc0bb2bad3833ff2dc0664c3b55633c7f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3a/3b2b6dbad13bdccebeb1aeb24bf3c4d0c00a8f b/_git_of_git_commit_id/objects/3a/3b2b6dbad13bdccebeb1aeb24bf3c4d0c00a8f deleted file mode 100644 index ed98690..0000000 --- a/_git_of_git_commit_id/objects/3a/3b2b6dbad13bdccebeb1aeb24bf3c4d0c00a8f +++ /dev/null @@ -1,4 +0,0 @@ -x5j0{/BɡC +eը"#+5&~ JΩK̠ь*Q';ˈ-[}+*+:2A0Jc]05)5G -n4cy+SPH5Jfp#Ann -rt N }~qC_} FD\*G -TB+pJ=Տh_V \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/3a/4f981224b918b76b646c389f717eff88770be1 b/_git_of_git_commit_id/objects/3a/4f981224b918b76b646c389f717eff88770be1 deleted file mode 100644 index dbec6a7..0000000 Binary files a/_git_of_git_commit_id/objects/3a/4f981224b918b76b646c389f717eff88770be1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3a/66874199809d014215d195b0b13bb6514659ff b/_git_of_git_commit_id/objects/3a/66874199809d014215d195b0b13bb6514659ff deleted file mode 100644 index bc5eacd..0000000 Binary files a/_git_of_git_commit_id/objects/3a/66874199809d014215d195b0b13bb6514659ff and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3a/68f53f8c30ac4e6be5822f7aa5d23dc09a13c7 b/_git_of_git_commit_id/objects/3a/68f53f8c30ac4e6be5822f7aa5d23dc09a13c7 deleted file mode 100644 index 976f305..0000000 Binary files a/_git_of_git_commit_id/objects/3a/68f53f8c30ac4e6be5822f7aa5d23dc09a13c7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3a/6a2396d6a90db8984208d6ec4021e0bc4be570 b/_git_of_git_commit_id/objects/3a/6a2396d6a90db8984208d6ec4021e0bc4be570 deleted file mode 100644 index 386392b..0000000 Binary files a/_git_of_git_commit_id/objects/3a/6a2396d6a90db8984208d6ec4021e0bc4be570 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3a/a6a11e960997061b5978310848fe1bce0513e4 b/_git_of_git_commit_id/objects/3a/a6a11e960997061b5978310848fe1bce0513e4 deleted file mode 100644 index 832fcbd..0000000 Binary files a/_git_of_git_commit_id/objects/3a/a6a11e960997061b5978310848fe1bce0513e4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3a/a93974d762676a65bed2fd507c3dce9dcf1827 b/_git_of_git_commit_id/objects/3a/a93974d762676a65bed2fd507c3dce9dcf1827 deleted file mode 100644 index 2a9acb4..0000000 Binary files a/_git_of_git_commit_id/objects/3a/a93974d762676a65bed2fd507c3dce9dcf1827 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3a/b78135458cf456e20b7c79c891ee614ebdb814 b/_git_of_git_commit_id/objects/3a/b78135458cf456e20b7c79c891ee614ebdb814 deleted file mode 100644 index 87dfea5..0000000 --- a/_git_of_git_commit_id/objects/3a/b78135458cf456e20b7c79c891ee614ebdb814 +++ /dev/null @@ -1 +0,0 @@ -xKOR01c` 50K00d`j}(mKȜC_Ԏ:68'B \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/3a/c5247a1a1ead8ef404423609e2fba56091367d b/_git_of_git_commit_id/objects/3a/c5247a1a1ead8ef404423609e2fba56091367d deleted file mode 100644 index 5aa3b0f..0000000 Binary files a/_git_of_git_commit_id/objects/3a/c5247a1a1ead8ef404423609e2fba56091367d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3a/cc7d8dcb1b3d6ee640825df8df9689f50012bf b/_git_of_git_commit_id/objects/3a/cc7d8dcb1b3d6ee640825df8df9689f50012bf deleted file mode 100644 index ebe5743..0000000 Binary files a/_git_of_git_commit_id/objects/3a/cc7d8dcb1b3d6ee640825df8df9689f50012bf and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3b/1c553b4887cbf91164f77cf65ca13957c5ac9f b/_git_of_git_commit_id/objects/3b/1c553b4887cbf91164f77cf65ca13957c5ac9f deleted file mode 100644 index 4d3ffcc..0000000 Binary files a/_git_of_git_commit_id/objects/3b/1c553b4887cbf91164f77cf65ca13957c5ac9f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3b/26e3edb27c95848cafb55b5b14428f2086ecf1 b/_git_of_git_commit_id/objects/3b/26e3edb27c95848cafb55b5b14428f2086ecf1 deleted file mode 100644 index 59df513..0000000 Binary files a/_git_of_git_commit_id/objects/3b/26e3edb27c95848cafb55b5b14428f2086ecf1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3b/3101070024eaeae82be59df32b60c756c8318e b/_git_of_git_commit_id/objects/3b/3101070024eaeae82be59df32b60c756c8318e deleted file mode 100644 index f45ce15..0000000 Binary files a/_git_of_git_commit_id/objects/3b/3101070024eaeae82be59df32b60c756c8318e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3b/535d8d498bf5714f3dec8ecb0e46dce08d5b9f b/_git_of_git_commit_id/objects/3b/535d8d498bf5714f3dec8ecb0e46dce08d5b9f deleted file mode 100644 index 0c7d4e0..0000000 Binary files a/_git_of_git_commit_id/objects/3b/535d8d498bf5714f3dec8ecb0e46dce08d5b9f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3b/7a36ea55bd5d6bb385f47d78f81b89c9e165dc b/_git_of_git_commit_id/objects/3b/7a36ea55bd5d6bb385f47d78f81b89c9e165dc deleted file mode 100644 index 968228d..0000000 Binary files a/_git_of_git_commit_id/objects/3b/7a36ea55bd5d6bb385f47d78f81b89c9e165dc and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3b/8ecebd6fa8e5c130662310b04fda4a26504212 b/_git_of_git_commit_id/objects/3b/8ecebd6fa8e5c130662310b04fda4a26504212 deleted file mode 100644 index 12c866a..0000000 Binary files a/_git_of_git_commit_id/objects/3b/8ecebd6fa8e5c130662310b04fda4a26504212 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3b/e1c823b9cafe5fd7a92332b5dc8e8fa70f120a b/_git_of_git_commit_id/objects/3b/e1c823b9cafe5fd7a92332b5dc8e8fa70f120a deleted file mode 100644 index e43bf56..0000000 Binary files a/_git_of_git_commit_id/objects/3b/e1c823b9cafe5fd7a92332b5dc8e8fa70f120a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3b/f563bf349bc6566626afbbb09909ec91709ff6 b/_git_of_git_commit_id/objects/3b/f563bf349bc6566626afbbb09909ec91709ff6 deleted file mode 100644 index b916b5d..0000000 Binary files a/_git_of_git_commit_id/objects/3b/f563bf349bc6566626afbbb09909ec91709ff6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3c/0d606675a8bb92e2a65ae1e6e892cb245b7fe5 b/_git_of_git_commit_id/objects/3c/0d606675a8bb92e2a65ae1e6e892cb245b7fe5 deleted file mode 100644 index 38fcb44..0000000 Binary files a/_git_of_git_commit_id/objects/3c/0d606675a8bb92e2a65ae1e6e892cb245b7fe5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3c/7dbd226418ad742b89ce73d86900b18d41dbb2 b/_git_of_git_commit_id/objects/3c/7dbd226418ad742b89ce73d86900b18d41dbb2 deleted file mode 100644 index f195902..0000000 Binary files a/_git_of_git_commit_id/objects/3c/7dbd226418ad742b89ce73d86900b18d41dbb2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3c/cadd320bb5da2e11173fc85b5c48612c33aa10 b/_git_of_git_commit_id/objects/3c/cadd320bb5da2e11173fc85b5c48612c33aa10 deleted file mode 100644 index 7d79870..0000000 Binary files a/_git_of_git_commit_id/objects/3c/cadd320bb5da2e11173fc85b5c48612c33aa10 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3c/dc93dc60366bead9a278f6a7555b651f26993a b/_git_of_git_commit_id/objects/3c/dc93dc60366bead9a278f6a7555b651f26993a deleted file mode 100644 index 6972ce7..0000000 Binary files a/_git_of_git_commit_id/objects/3c/dc93dc60366bead9a278f6a7555b651f26993a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3d/2920d38d112b74348c2ba43d7baf1d48790626 b/_git_of_git_commit_id/objects/3d/2920d38d112b74348c2ba43d7baf1d48790626 deleted file mode 100644 index 954b4bc..0000000 --- a/_git_of_git_commit_id/objects/3d/2920d38d112b74348c2ba43d7baf1d48790626 +++ /dev/null @@ -1 +0,0 @@ -x+)JMU03c040031QH4L631641440L22RR͒S R̒R-S -IIiai4hKKlYص \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/3d/5eba50d8fd317a5013af1385669b96c30845e8 b/_git_of_git_commit_id/objects/3d/5eba50d8fd317a5013af1385669b96c30845e8 deleted file mode 100644 index 909216f..0000000 Binary files a/_git_of_git_commit_id/objects/3d/5eba50d8fd317a5013af1385669b96c30845e8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3d/c50ae7d681da8af987040f69eba21d49921183 b/_git_of_git_commit_id/objects/3d/c50ae7d681da8af987040f69eba21d49921183 deleted file mode 100644 index 4ced98d..0000000 Binary files a/_git_of_git_commit_id/objects/3d/c50ae7d681da8af987040f69eba21d49921183 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3d/df51a04848c952ec9f15279944671b637a55ce b/_git_of_git_commit_id/objects/3d/df51a04848c952ec9f15279944671b637a55ce deleted file mode 100644 index 03c474d..0000000 Binary files a/_git_of_git_commit_id/objects/3d/df51a04848c952ec9f15279944671b637a55ce and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3d/e59414b4bdd27dbc2a763e080024bb3e285acc b/_git_of_git_commit_id/objects/3d/e59414b4bdd27dbc2a763e080024bb3e285acc deleted file mode 100644 index f2886dc..0000000 Binary files a/_git_of_git_commit_id/objects/3d/e59414b4bdd27dbc2a763e080024bb3e285acc and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3d/eae7d2c16a4b3de9d1d9ae6a6f194b13db12b9 b/_git_of_git_commit_id/objects/3d/eae7d2c16a4b3de9d1d9ae6a6f194b13db12b9 deleted file mode 100644 index 3a3e0f8..0000000 --- a/_git_of_git_commit_id/objects/3d/eae7d2c16a4b3de9d1d9ae6a6f194b13db12b9 +++ /dev/null @@ -1,2 +0,0 @@ -x-έJDA V5,"s|MFI3gFnkA&Mb0־ _ #>xs *%AD1ILDW/jÉf˜:|oٿ~ ٕ( -m*C%`Rw^6n_Wx0mU ,4 $gٳT{O÷M'dj#CqNtBĶ 9yY'X)q_s.7_jf2x[!U \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/3e/726b605fe54ce439367037e00cbaa1b2348dc0 b/_git_of_git_commit_id/objects/3e/726b605fe54ce439367037e00cbaa1b2348dc0 deleted file mode 100644 index 5a62b70..0000000 Binary files a/_git_of_git_commit_id/objects/3e/726b605fe54ce439367037e00cbaa1b2348dc0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3e/82eaeaa264eab082cc339571f44d9acb3ee7a6 b/_git_of_git_commit_id/objects/3e/82eaeaa264eab082cc339571f44d9acb3ee7a6 deleted file mode 100644 index 29e186b..0000000 Binary files a/_git_of_git_commit_id/objects/3e/82eaeaa264eab082cc339571f44d9acb3ee7a6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3e/c17dcf9222aebb5e534079a3da0f5ea552bc7e b/_git_of_git_commit_id/objects/3e/c17dcf9222aebb5e534079a3da0f5ea552bc7e deleted file mode 100644 index 765a414..0000000 Binary files a/_git_of_git_commit_id/objects/3e/c17dcf9222aebb5e534079a3da0f5ea552bc7e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3e/d9dc52167de1d4306ebf616622e204b1abe7a5 b/_git_of_git_commit_id/objects/3e/d9dc52167de1d4306ebf616622e204b1abe7a5 deleted file mode 100644 index e24360d..0000000 Binary files a/_git_of_git_commit_id/objects/3e/d9dc52167de1d4306ebf616622e204b1abe7a5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3e/eea7938c591036ad567c1fbdff48e5362527e4 b/_git_of_git_commit_id/objects/3e/eea7938c591036ad567c1fbdff48e5362527e4 deleted file mode 100644 index ad41d83..0000000 Binary files a/_git_of_git_commit_id/objects/3e/eea7938c591036ad567c1fbdff48e5362527e4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3f/4d64778b43b9ad980cfa17a4123bad1ece2f9f b/_git_of_git_commit_id/objects/3f/4d64778b43b9ad980cfa17a4123bad1ece2f9f deleted file mode 100644 index 69d24e2..0000000 Binary files a/_git_of_git_commit_id/objects/3f/4d64778b43b9ad980cfa17a4123bad1ece2f9f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3f/a6df437d2484b5169fa311ad568dce89480020 b/_git_of_git_commit_id/objects/3f/a6df437d2484b5169fa311ad568dce89480020 deleted file mode 100644 index 46aff32..0000000 Binary files a/_git_of_git_commit_id/objects/3f/a6df437d2484b5169fa311ad568dce89480020 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3f/aba01b8bf85331adbeb677d3a36e4733073695 b/_git_of_git_commit_id/objects/3f/aba01b8bf85331adbeb677d3a36e4733073695 deleted file mode 100644 index 8ed1a3c..0000000 Binary files a/_git_of_git_commit_id/objects/3f/aba01b8bf85331adbeb677d3a36e4733073695 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3f/b90844f70dab66995903045496c300f75b2cc3 b/_git_of_git_commit_id/objects/3f/b90844f70dab66995903045496c300f75b2cc3 deleted file mode 100644 index cec3604..0000000 Binary files a/_git_of_git_commit_id/objects/3f/b90844f70dab66995903045496c300f75b2cc3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3f/d6634c985f5dd35237c215deb4c0cbc4a2ca22 b/_git_of_git_commit_id/objects/3f/d6634c985f5dd35237c215deb4c0cbc4a2ca22 deleted file mode 100644 index dcc6edf..0000000 Binary files a/_git_of_git_commit_id/objects/3f/d6634c985f5dd35237c215deb4c0cbc4a2ca22 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/3f/d9ba8339c5a6ad25df59a110fc7af5139866f7 b/_git_of_git_commit_id/objects/3f/d9ba8339c5a6ad25df59a110fc7af5139866f7 deleted file mode 100644 index a6a8374..0000000 --- a/_git_of_git_commit_id/objects/3f/d9ba8339c5a6ad25df59a110fc7af5139866f7 +++ /dev/null @@ -1,4 +0,0 @@ -x-ϭKQYPhPD`繗,@}"" c AX`Uâeb tw8R3J -3MC -'l1XoV{Zx \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/47/2b5c4f783072582c9348322ac92346547685d4 b/_git_of_git_commit_id/objects/47/2b5c4f783072582c9348322ac92346547685d4 deleted file mode 100644 index ba6d629..0000000 Binary files a/_git_of_git_commit_id/objects/47/2b5c4f783072582c9348322ac92346547685d4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/47/4a53c1f6f40a763f75841b955169d2e5574c26 b/_git_of_git_commit_id/objects/47/4a53c1f6f40a763f75841b955169d2e5574c26 deleted file mode 100644 index 84f8e15..0000000 Binary files a/_git_of_git_commit_id/objects/47/4a53c1f6f40a763f75841b955169d2e5574c26 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/47/5c4a650fc2fe4afb499d5fcaad254c08022c6d b/_git_of_git_commit_id/objects/47/5c4a650fc2fe4afb499d5fcaad254c08022c6d deleted file mode 100644 index 18eddfd..0000000 Binary files a/_git_of_git_commit_id/objects/47/5c4a650fc2fe4afb499d5fcaad254c08022c6d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/47/65f827806bdf86e45612db0c002256468f216c b/_git_of_git_commit_id/objects/47/65f827806bdf86e45612db0c002256468f216c deleted file mode 100644 index dead6f4..0000000 Binary files a/_git_of_git_commit_id/objects/47/65f827806bdf86e45612db0c002256468f216c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/47/89bb7bdd08c26b5f8ff4432c1a6a955acf3ff1 b/_git_of_git_commit_id/objects/47/89bb7bdd08c26b5f8ff4432c1a6a955acf3ff1 deleted file mode 100644 index 9247232..0000000 Binary files a/_git_of_git_commit_id/objects/47/89bb7bdd08c26b5f8ff4432c1a6a955acf3ff1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/47/90aa8acb8897a21204206164496156ea5e75d1 b/_git_of_git_commit_id/objects/47/90aa8acb8897a21204206164496156ea5e75d1 deleted file mode 100644 index 207854c..0000000 Binary files a/_git_of_git_commit_id/objects/47/90aa8acb8897a21204206164496156ea5e75d1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/47/edbafb597d9079a5a4f183b858af838796e30f b/_git_of_git_commit_id/objects/47/edbafb597d9079a5a4f183b858af838796e30f deleted file mode 100644 index d1b0bd9..0000000 Binary files a/_git_of_git_commit_id/objects/47/edbafb597d9079a5a4f183b858af838796e30f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/48/096bdc0aafd44cebdb61ac3a96af9a52ab536e b/_git_of_git_commit_id/objects/48/096bdc0aafd44cebdb61ac3a96af9a52ab536e deleted file mode 100644 index 81e833f..0000000 Binary files a/_git_of_git_commit_id/objects/48/096bdc0aafd44cebdb61ac3a96af9a52ab536e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/48/0e37a40f75d189ca03669beb42be332a5d5f68 b/_git_of_git_commit_id/objects/48/0e37a40f75d189ca03669beb42be332a5d5f68 deleted file mode 100644 index bbad5eb..0000000 Binary files a/_git_of_git_commit_id/objects/48/0e37a40f75d189ca03669beb42be332a5d5f68 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/48/5a47c645f5f51d1c4c939dfceae50ce15a35b9 b/_git_of_git_commit_id/objects/48/5a47c645f5f51d1c4c939dfceae50ce15a35b9 deleted file mode 100644 index 2ba18cd..0000000 Binary files a/_git_of_git_commit_id/objects/48/5a47c645f5f51d1c4c939dfceae50ce15a35b9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/49/36dceab0aac0e797537e382b42e1637bc85491 b/_git_of_git_commit_id/objects/49/36dceab0aac0e797537e382b42e1637bc85491 deleted file mode 100644 index 386a346..0000000 Binary files a/_git_of_git_commit_id/objects/49/36dceab0aac0e797537e382b42e1637bc85491 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/49/408c4300266cca3b41b2ad78a1a6fd6086db35 b/_git_of_git_commit_id/objects/49/408c4300266cca3b41b2ad78a1a6fd6086db35 deleted file mode 100644 index d66d3fe..0000000 Binary files a/_git_of_git_commit_id/objects/49/408c4300266cca3b41b2ad78a1a6fd6086db35 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/49/7d50b7a85db12aa642d3c99b2c24a8f9e23032 b/_git_of_git_commit_id/objects/49/7d50b7a85db12aa642d3c99b2c24a8f9e23032 deleted file mode 100644 index 0317785..0000000 Binary files a/_git_of_git_commit_id/objects/49/7d50b7a85db12aa642d3c99b2c24a8f9e23032 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/49/8b267a8c7812490d6479839c5577eaaec79d62 b/_git_of_git_commit_id/objects/49/8b267a8c7812490d6479839c5577eaaec79d62 deleted file mode 100644 index b558235..0000000 Binary files a/_git_of_git_commit_id/objects/49/8b267a8c7812490d6479839c5577eaaec79d62 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/49/96c89dd743270bfd5a68860cfa12efc8904e58 b/_git_of_git_commit_id/objects/49/96c89dd743270bfd5a68860cfa12efc8904e58 deleted file mode 100644 index e62d439..0000000 --- a/_git_of_git_commit_id/objects/49/96c89dd743270bfd5a68860cfa12efc8904e58 +++ /dev/null @@ -1,2 +0,0 @@ -x--KDAkt69` dgp`nl5VEآXDL AowgR0- ,J( -ER3g'O_fzf#8eGBȉu@WC,G_ocO; @ m(2 Coum=/ʪ5]nf ˜#_D4Zu`Z;8 ] \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/49/abbe5e29e5a1917737e1a66eea33bdbb0497b7 b/_git_of_git_commit_id/objects/49/abbe5e29e5a1917737e1a66eea33bdbb0497b7 deleted file mode 100644 index 6cc2fc1..0000000 Binary files a/_git_of_git_commit_id/objects/49/abbe5e29e5a1917737e1a66eea33bdbb0497b7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/49/bfd68cc8dd83e3be9b7b095e566523c89bf85f b/_git_of_git_commit_id/objects/49/bfd68cc8dd83e3be9b7b095e566523c89bf85f deleted file mode 100644 index 74560b8..0000000 Binary files a/_git_of_git_commit_id/objects/49/bfd68cc8dd83e3be9b7b095e566523c89bf85f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/49/c3b64ccb5dc87e8397dd333104dda8de9224d2 b/_git_of_git_commit_id/objects/49/c3b64ccb5dc87e8397dd333104dda8de9224d2 deleted file mode 100644 index 62b1937..0000000 Binary files a/_git_of_git_commit_id/objects/49/c3b64ccb5dc87e8397dd333104dda8de9224d2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4a/011064c38441d6056b9e1bf65278539f1f0ecf b/_git_of_git_commit_id/objects/4a/011064c38441d6056b9e1bf65278539f1f0ecf deleted file mode 100644 index 41697ed..0000000 Binary files a/_git_of_git_commit_id/objects/4a/011064c38441d6056b9e1bf65278539f1f0ecf and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4a/4fd7d38059f84524f4bcebd3d79ff80ca053f4 b/_git_of_git_commit_id/objects/4a/4fd7d38059f84524f4bcebd3d79ff80ca053f4 deleted file mode 100644 index ad2f3a7..0000000 Binary files a/_git_of_git_commit_id/objects/4a/4fd7d38059f84524f4bcebd3d79ff80ca053f4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4a/68c84f45a3525d4448d07a7e86edd01f3c5e81 b/_git_of_git_commit_id/objects/4a/68c84f45a3525d4448d07a7e86edd01f3c5e81 deleted file mode 100644 index f92e351..0000000 Binary files a/_git_of_git_commit_id/objects/4a/68c84f45a3525d4448d07a7e86edd01f3c5e81 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4a/6dc478590449f121f6b0a926e8735dc8040cdd b/_git_of_git_commit_id/objects/4a/6dc478590449f121f6b0a926e8735dc8040cdd deleted file mode 100644 index b5d8798..0000000 Binary files a/_git_of_git_commit_id/objects/4a/6dc478590449f121f6b0a926e8735dc8040cdd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4a/94d7881bf4b383d34d9f70b549cfde4db73308 b/_git_of_git_commit_id/objects/4a/94d7881bf4b383d34d9f70b549cfde4db73308 deleted file mode 100644 index cf8e625..0000000 Binary files a/_git_of_git_commit_id/objects/4a/94d7881bf4b383d34d9f70b549cfde4db73308 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4a/d668f13e6fa32c7e2b17884e875010b5aecbde b/_git_of_git_commit_id/objects/4a/d668f13e6fa32c7e2b17884e875010b5aecbde deleted file mode 100644 index 4016ea7..0000000 Binary files a/_git_of_git_commit_id/objects/4a/d668f13e6fa32c7e2b17884e875010b5aecbde and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4b/e824edc3e7880b1671a7169555494b9481c0ad b/_git_of_git_commit_id/objects/4b/e824edc3e7880b1671a7169555494b9481c0ad deleted file mode 100644 index 6ae79bb..0000000 Binary files a/_git_of_git_commit_id/objects/4b/e824edc3e7880b1671a7169555494b9481c0ad and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4c/1333b2edabe924dcdaf3202b0eafe040b94784 b/_git_of_git_commit_id/objects/4c/1333b2edabe924dcdaf3202b0eafe040b94784 deleted file mode 100644 index 7a4f6a4..0000000 Binary files a/_git_of_git_commit_id/objects/4c/1333b2edabe924dcdaf3202b0eafe040b94784 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4c/49515673997f9b4646559fd46504bfa710796c b/_git_of_git_commit_id/objects/4c/49515673997f9b4646559fd46504bfa710796c deleted file mode 100644 index ed1c72a..0000000 Binary files a/_git_of_git_commit_id/objects/4c/49515673997f9b4646559fd46504bfa710796c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4c/67d92c82c45d0ce194e45456fabab9787bbf6a b/_git_of_git_commit_id/objects/4c/67d92c82c45d0ce194e45456fabab9787bbf6a deleted file mode 100644 index 09305a8..0000000 Binary files a/_git_of_git_commit_id/objects/4c/67d92c82c45d0ce194e45456fabab9787bbf6a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4c/6f20ad2b4ee815031315821b8b80ca5e7f9d07 b/_git_of_git_commit_id/objects/4c/6f20ad2b4ee815031315821b8b80ca5e7f9d07 deleted file mode 100644 index c138fe3..0000000 Binary files a/_git_of_git_commit_id/objects/4c/6f20ad2b4ee815031315821b8b80ca5e7f9d07 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4c/a2c395d6c851a67c0d281b78f11e48b5c6734c b/_git_of_git_commit_id/objects/4c/a2c395d6c851a67c0d281b78f11e48b5c6734c deleted file mode 100644 index b0b94f4..0000000 Binary files a/_git_of_git_commit_id/objects/4c/a2c395d6c851a67c0d281b78f11e48b5c6734c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4c/a8e6f6edb9eaf268f1ff6239426f57b794252b b/_git_of_git_commit_id/objects/4c/a8e6f6edb9eaf268f1ff6239426f57b794252b deleted file mode 100644 index 032736e..0000000 Binary files a/_git_of_git_commit_id/objects/4c/a8e6f6edb9eaf268f1ff6239426f57b794252b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4c/beb71510e296a1e25cb248202e5a31f08c6bfd b/_git_of_git_commit_id/objects/4c/beb71510e296a1e25cb248202e5a31f08c6bfd deleted file mode 100644 index a208d93..0000000 Binary files a/_git_of_git_commit_id/objects/4c/beb71510e296a1e25cb248202e5a31f08c6bfd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4c/e7e847d140572c72c2a0b9c189f1e8e6c17249 b/_git_of_git_commit_id/objects/4c/e7e847d140572c72c2a0b9c189f1e8e6c17249 deleted file mode 100644 index 01ef961..0000000 Binary files a/_git_of_git_commit_id/objects/4c/e7e847d140572c72c2a0b9c189f1e8e6c17249 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4d/0e50e503672eacbc7f364c37286e6cd32f5e69 b/_git_of_git_commit_id/objects/4d/0e50e503672eacbc7f364c37286e6cd32f5e69 deleted file mode 100644 index a020c1f..0000000 Binary files a/_git_of_git_commit_id/objects/4d/0e50e503672eacbc7f364c37286e6cd32f5e69 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4d/1fdb452ff546f448378fae732088b095324a14 b/_git_of_git_commit_id/objects/4d/1fdb452ff546f448378fae732088b095324a14 deleted file mode 100644 index 2849e32..0000000 Binary files a/_git_of_git_commit_id/objects/4d/1fdb452ff546f448378fae732088b095324a14 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4d/3ffccd4212259b5051e0aa00aa08ec636442f6 b/_git_of_git_commit_id/objects/4d/3ffccd4212259b5051e0aa00aa08ec636442f6 deleted file mode 100644 index 588a4e4..0000000 Binary files a/_git_of_git_commit_id/objects/4d/3ffccd4212259b5051e0aa00aa08ec636442f6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4d/48f9383eb441b5fca017b2f1cef6472f2e9477 b/_git_of_git_commit_id/objects/4d/48f9383eb441b5fca017b2f1cef6472f2e9477 deleted file mode 100644 index 08a2ccd..0000000 Binary files a/_git_of_git_commit_id/objects/4d/48f9383eb441b5fca017b2f1cef6472f2e9477 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4d/a77b872985c2e857de7468c30216b57a362ff4 b/_git_of_git_commit_id/objects/4d/a77b872985c2e857de7468c30216b57a362ff4 deleted file mode 100644 index 909225a..0000000 Binary files a/_git_of_git_commit_id/objects/4d/a77b872985c2e857de7468c30216b57a362ff4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4d/ada0c136e823c09f419a05f242b5f952b3381e b/_git_of_git_commit_id/objects/4d/ada0c136e823c09f419a05f242b5f952b3381e deleted file mode 100644 index ce23d73..0000000 Binary files a/_git_of_git_commit_id/objects/4d/ada0c136e823c09f419a05f242b5f952b3381e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4d/b9cb22a21f789207ed96596d1657b109bd42e3 b/_git_of_git_commit_id/objects/4d/b9cb22a21f789207ed96596d1657b109bd42e3 deleted file mode 100644 index 13ecaca..0000000 Binary files a/_git_of_git_commit_id/objects/4d/b9cb22a21f789207ed96596d1657b109bd42e3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4d/f131b1d7f45d96c7dde5a7064995f9af283f1b b/_git_of_git_commit_id/objects/4d/f131b1d7f45d96c7dde5a7064995f9af283f1b deleted file mode 100644 index 6a3cf3c..0000000 Binary files a/_git_of_git_commit_id/objects/4d/f131b1d7f45d96c7dde5a7064995f9af283f1b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4d/f5782e8e1c99745e3d6e543b062c3efd5a61c1 b/_git_of_git_commit_id/objects/4d/f5782e8e1c99745e3d6e543b062c3efd5a61c1 deleted file mode 100644 index d8ce297..0000000 Binary files a/_git_of_git_commit_id/objects/4d/f5782e8e1c99745e3d6e543b062c3efd5a61c1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4d/f6224750db63b5d65bcb6562c6e7b1cc45ade9 b/_git_of_git_commit_id/objects/4d/f6224750db63b5d65bcb6562c6e7b1cc45ade9 deleted file mode 100644 index c4692ff..0000000 Binary files a/_git_of_git_commit_id/objects/4d/f6224750db63b5d65bcb6562c6e7b1cc45ade9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4e/60352a52047e9d131b4cb7f2a188d89bfb6084 b/_git_of_git_commit_id/objects/4e/60352a52047e9d131b4cb7f2a188d89bfb6084 deleted file mode 100644 index a639736..0000000 Binary files a/_git_of_git_commit_id/objects/4e/60352a52047e9d131b4cb7f2a188d89bfb6084 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4e/d496e2f2b5808fb2f33b336cffa9bdc54aa1a5 b/_git_of_git_commit_id/objects/4e/d496e2f2b5808fb2f33b336cffa9bdc54aa1a5 deleted file mode 100644 index 285ddec..0000000 Binary files a/_git_of_git_commit_id/objects/4e/d496e2f2b5808fb2f33b336cffa9bdc54aa1a5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4e/ea8188e43b21e93b2c22bfac1a97fb156c4fc6 b/_git_of_git_commit_id/objects/4e/ea8188e43b21e93b2c22bfac1a97fb156c4fc6 deleted file mode 100644 index 4c23036..0000000 Binary files a/_git_of_git_commit_id/objects/4e/ea8188e43b21e93b2c22bfac1a97fb156c4fc6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4e/fdaa9ccab4af8525a2af3c4606293d4daf7862 b/_git_of_git_commit_id/objects/4e/fdaa9ccab4af8525a2af3c4606293d4daf7862 deleted file mode 100644 index 5f6868a..0000000 Binary files a/_git_of_git_commit_id/objects/4e/fdaa9ccab4af8525a2af3c4606293d4daf7862 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4f/007e39b29b5918e98911ad3aec58ea3848ec12 b/_git_of_git_commit_id/objects/4f/007e39b29b5918e98911ad3aec58ea3848ec12 deleted file mode 100644 index daea560..0000000 Binary files a/_git_of_git_commit_id/objects/4f/007e39b29b5918e98911ad3aec58ea3848ec12 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4f/289286c0a6a552bdc59b558ff08f465cd0b100 b/_git_of_git_commit_id/objects/4f/289286c0a6a552bdc59b558ff08f465cd0b100 deleted file mode 100644 index b2287e2..0000000 Binary files a/_git_of_git_commit_id/objects/4f/289286c0a6a552bdc59b558ff08f465cd0b100 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4f/2f6f6eab5852939ac34deeb886d1dbe3bce592 b/_git_of_git_commit_id/objects/4f/2f6f6eab5852939ac34deeb886d1dbe3bce592 deleted file mode 100644 index 8da8389..0000000 Binary files a/_git_of_git_commit_id/objects/4f/2f6f6eab5852939ac34deeb886d1dbe3bce592 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4f/37c4301549060abf7297cda53910d31d35c219 b/_git_of_git_commit_id/objects/4f/37c4301549060abf7297cda53910d31d35c219 deleted file mode 100644 index 8912de9..0000000 Binary files a/_git_of_git_commit_id/objects/4f/37c4301549060abf7297cda53910d31d35c219 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4f/43f8ec45338151c50a4b14286842cda291f4d1 b/_git_of_git_commit_id/objects/4f/43f8ec45338151c50a4b14286842cda291f4d1 deleted file mode 100644 index 4ffafd6..0000000 Binary files a/_git_of_git_commit_id/objects/4f/43f8ec45338151c50a4b14286842cda291f4d1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/4f/445f8edc9ddd981e719c20553f6227712dada9 b/_git_of_git_commit_id/objects/4f/445f8edc9ddd981e719c20553f6227712dada9 deleted file mode 100644 index 22c1751..0000000 --- a/_git_of_git_commit_id/objects/4f/445f8edc9ddd981e719c20553f6227712dada9 +++ /dev/null @@ -1 +0,0 @@ -xMJD1]t x Ipb$ pWAUvLDs&lnUU%WKܙbbC?'NI0zBV1z6K#|S#/) < rͽ 'k"zh:wH <.6C*PI6] \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/53/2f3f4dc86d9055bb7d198f8a2daddd95b2e923 b/_git_of_git_commit_id/objects/53/2f3f4dc86d9055bb7d198f8a2daddd95b2e923 deleted file mode 100644 index f22f2f6..0000000 Binary files a/_git_of_git_commit_id/objects/53/2f3f4dc86d9055bb7d198f8a2daddd95b2e923 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/53/87e4cfa6c774ae387365d9a1f04584880f15c3 b/_git_of_git_commit_id/objects/53/87e4cfa6c774ae387365d9a1f04584880f15c3 deleted file mode 100644 index c2a8b54..0000000 Binary files a/_git_of_git_commit_id/objects/53/87e4cfa6c774ae387365d9a1f04584880f15c3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/53/956e7eccfdbd05a82db0a0b8a7ea1fea13c4c6 b/_git_of_git_commit_id/objects/53/956e7eccfdbd05a82db0a0b8a7ea1fea13c4c6 deleted file mode 100644 index 9ebfee8..0000000 Binary files a/_git_of_git_commit_id/objects/53/956e7eccfdbd05a82db0a0b8a7ea1fea13c4c6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/53/c18e44ffc8df35d4aec8e468f595579710b004 b/_git_of_git_commit_id/objects/53/c18e44ffc8df35d4aec8e468f595579710b004 deleted file mode 100644 index 3221c1d..0000000 Binary files a/_git_of_git_commit_id/objects/53/c18e44ffc8df35d4aec8e468f595579710b004 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/53/d6e5b7e6f432076660a198f9698bbe94cf3f0f b/_git_of_git_commit_id/objects/53/d6e5b7e6f432076660a198f9698bbe94cf3f0f deleted file mode 100644 index c25084a..0000000 Binary files a/_git_of_git_commit_id/objects/53/d6e5b7e6f432076660a198f9698bbe94cf3f0f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/54/1a5e21d31eabaf9dd94a8b2ab381c4ca664766 b/_git_of_git_commit_id/objects/54/1a5e21d31eabaf9dd94a8b2ab381c4ca664766 deleted file mode 100644 index 5e1bf6d..0000000 --- a/_git_of_git_commit_id/objects/54/1a5e21d31eabaf9dd94a8b2ab381c4ca664766 +++ /dev/null @@ -1 +0,0 @@ -xKOR05d` 50K60d`jmZg͕'Bmknݣ|rEQǠ4_7r \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/54/473774ac28fe67ff71eacc94dd2611fe54b716 b/_git_of_git_commit_id/objects/54/473774ac28fe67ff71eacc94dd2611fe54b716 deleted file mode 100644 index 24d65f1..0000000 Binary files a/_git_of_git_commit_id/objects/54/473774ac28fe67ff71eacc94dd2611fe54b716 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/54/4e606000473a74e20e4a89b28ec8d14197a13b b/_git_of_git_commit_id/objects/54/4e606000473a74e20e4a89b28ec8d14197a13b deleted file mode 100644 index b039a59..0000000 Binary files a/_git_of_git_commit_id/objects/54/4e606000473a74e20e4a89b28ec8d14197a13b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/54/5a19bfdc9dcdea58664b982575e82489335e17 b/_git_of_git_commit_id/objects/54/5a19bfdc9dcdea58664b982575e82489335e17 deleted file mode 100644 index e7ea5b7..0000000 Binary files a/_git_of_git_commit_id/objects/54/5a19bfdc9dcdea58664b982575e82489335e17 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/54/7976bfe3528a00c0acbaa9e2cc9d2478ccabda b/_git_of_git_commit_id/objects/54/7976bfe3528a00c0acbaa9e2cc9d2478ccabda deleted file mode 100644 index d0b7a78..0000000 Binary files a/_git_of_git_commit_id/objects/54/7976bfe3528a00c0acbaa9e2cc9d2478ccabda and /dev/null differ diff --git a/_git_of_git_commit_id/objects/54/ae14b5823ad671056cc9b9ccdfed77d28bfb4c b/_git_of_git_commit_id/objects/54/ae14b5823ad671056cc9b9ccdfed77d28bfb4c deleted file mode 100644 index aa83aa8..0000000 Binary files a/_git_of_git_commit_id/objects/54/ae14b5823ad671056cc9b9ccdfed77d28bfb4c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/54/c7e957c579c609b265f7ba5a64d5444e0202eb b/_git_of_git_commit_id/objects/54/c7e957c579c609b265f7ba5a64d5444e0202eb deleted file mode 100644 index 9620dbc..0000000 Binary files a/_git_of_git_commit_id/objects/54/c7e957c579c609b265f7ba5a64d5444e0202eb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/54/f5ff3546eed7850453387f229b6961c9c3e4d9 b/_git_of_git_commit_id/objects/54/f5ff3546eed7850453387f229b6961c9c3e4d9 deleted file mode 100644 index 3a18f1f..0000000 Binary files a/_git_of_git_commit_id/objects/54/f5ff3546eed7850453387f229b6961c9c3e4d9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/55/031a71add7f614f2bd4711044a42f9982d3224 b/_git_of_git_commit_id/objects/55/031a71add7f614f2bd4711044a42f9982d3224 deleted file mode 100644 index d3ec085..0000000 Binary files a/_git_of_git_commit_id/objects/55/031a71add7f614f2bd4711044a42f9982d3224 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/55/07b68cd9dff31051fe43da2a53b6451546f6d2 b/_git_of_git_commit_id/objects/55/07b68cd9dff31051fe43da2a53b6451546f6d2 deleted file mode 100644 index ac40c32..0000000 Binary files a/_git_of_git_commit_id/objects/55/07b68cd9dff31051fe43da2a53b6451546f6d2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/55/6e08a9e90ff0307baec26fcf9fdcc73e5199e7 b/_git_of_git_commit_id/objects/55/6e08a9e90ff0307baec26fcf9fdcc73e5199e7 deleted file mode 100644 index 11ed1ec..0000000 Binary files a/_git_of_git_commit_id/objects/55/6e08a9e90ff0307baec26fcf9fdcc73e5199e7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/55/a918de6e1458b6a2028b8e64273ca09bcf334c b/_git_of_git_commit_id/objects/55/a918de6e1458b6a2028b8e64273ca09bcf334c deleted file mode 100644 index 1b7386e..0000000 Binary files a/_git_of_git_commit_id/objects/55/a918de6e1458b6a2028b8e64273ca09bcf334c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/56/5d4a20d486f53f6b03dae6cce10a63d69caf99 b/_git_of_git_commit_id/objects/56/5d4a20d486f53f6b03dae6cce10a63d69caf99 deleted file mode 100644 index 0323680..0000000 Binary files a/_git_of_git_commit_id/objects/56/5d4a20d486f53f6b03dae6cce10a63d69caf99 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/56/6dead442cf3de0efa642f88a676cda2ff4eb75 b/_git_of_git_commit_id/objects/56/6dead442cf3de0efa642f88a676cda2ff4eb75 deleted file mode 100644 index e59364b..0000000 Binary files a/_git_of_git_commit_id/objects/56/6dead442cf3de0efa642f88a676cda2ff4eb75 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/56/700b81c8c0b7cfd082b7f1ae45c165c3d924f8 b/_git_of_git_commit_id/objects/56/700b81c8c0b7cfd082b7f1ae45c165c3d924f8 deleted file mode 100644 index e404022..0000000 Binary files a/_git_of_git_commit_id/objects/56/700b81c8c0b7cfd082b7f1ae45c165c3d924f8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/56/8669b89bb45012271f337ab5b8ffcd04d92e90 b/_git_of_git_commit_id/objects/56/8669b89bb45012271f337ab5b8ffcd04d92e90 deleted file mode 100644 index 84e1f0f..0000000 Binary files a/_git_of_git_commit_id/objects/56/8669b89bb45012271f337ab5b8ffcd04d92e90 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/56/942baa82f2e8a240a79d8af254809253e16e65 b/_git_of_git_commit_id/objects/56/942baa82f2e8a240a79d8af254809253e16e65 deleted file mode 100644 index c5caed7..0000000 Binary files a/_git_of_git_commit_id/objects/56/942baa82f2e8a240a79d8af254809253e16e65 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/56/c2f241158dafbc0e31c42fcfa7b97596003814 b/_git_of_git_commit_id/objects/56/c2f241158dafbc0e31c42fcfa7b97596003814 deleted file mode 100644 index 4dada0c..0000000 Binary files a/_git_of_git_commit_id/objects/56/c2f241158dafbc0e31c42fcfa7b97596003814 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/56/c4637a90e28661c3316074e8ca4b7c6021b87b b/_git_of_git_commit_id/objects/56/c4637a90e28661c3316074e8ca4b7c6021b87b deleted file mode 100644 index 888eb96..0000000 Binary files a/_git_of_git_commit_id/objects/56/c4637a90e28661c3316074e8ca4b7c6021b87b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/56/d4f44449e8ca67ba5c180c3a900d480b00beb5 b/_git_of_git_commit_id/objects/56/d4f44449e8ca67ba5c180c3a900d480b00beb5 deleted file mode 100644 index ec3764d..0000000 Binary files a/_git_of_git_commit_id/objects/56/d4f44449e8ca67ba5c180c3a900d480b00beb5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/56/e23d191f25c634ec65153d8af7e928ce14f026 b/_git_of_git_commit_id/objects/56/e23d191f25c634ec65153d8af7e928ce14f026 deleted file mode 100644 index 1ee7d6f..0000000 Binary files a/_git_of_git_commit_id/objects/56/e23d191f25c634ec65153d8af7e928ce14f026 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/56/ef8f88dd1cc63fe493884463dafcaa2082e7ae b/_git_of_git_commit_id/objects/56/ef8f88dd1cc63fe493884463dafcaa2082e7ae deleted file mode 100644 index 169cbc1..0000000 Binary files a/_git_of_git_commit_id/objects/56/ef8f88dd1cc63fe493884463dafcaa2082e7ae and /dev/null differ diff --git a/_git_of_git_commit_id/objects/56/f2f391fb987cefa22d622200b79a178b36b15b b/_git_of_git_commit_id/objects/56/f2f391fb987cefa22d622200b79a178b36b15b deleted file mode 100644 index b3df6fd..0000000 Binary files a/_git_of_git_commit_id/objects/56/f2f391fb987cefa22d622200b79a178b36b15b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/56/fd3e0ce6c52581bd2d84ad71ccacd030a1be4d b/_git_of_git_commit_id/objects/56/fd3e0ce6c52581bd2d84ad71ccacd030a1be4d deleted file mode 100644 index 26b51dd..0000000 Binary files a/_git_of_git_commit_id/objects/56/fd3e0ce6c52581bd2d84ad71ccacd030a1be4d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/57/46318df0250978cf77314f7e42efa21ee14a5f b/_git_of_git_commit_id/objects/57/46318df0250978cf77314f7e42efa21ee14a5f deleted file mode 100644 index dab5cbd..0000000 Binary files a/_git_of_git_commit_id/objects/57/46318df0250978cf77314f7e42efa21ee14a5f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/57/47dce753bb55edc2cd81af0262fedfa6865778 b/_git_of_git_commit_id/objects/57/47dce753bb55edc2cd81af0262fedfa6865778 deleted file mode 100644 index df0e14b..0000000 Binary files a/_git_of_git_commit_id/objects/57/47dce753bb55edc2cd81af0262fedfa6865778 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/57/81089447a05e6993bcd514c788e4782b34c990 b/_git_of_git_commit_id/objects/57/81089447a05e6993bcd514c788e4782b34c990 deleted file mode 100644 index 191983c..0000000 Binary files a/_git_of_git_commit_id/objects/57/81089447a05e6993bcd514c788e4782b34c990 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/57/909f0c71829e440b759b0de5a0457aa51e91c7 b/_git_of_git_commit_id/objects/57/909f0c71829e440b759b0de5a0457aa51e91c7 deleted file mode 100644 index 5adf325..0000000 Binary files a/_git_of_git_commit_id/objects/57/909f0c71829e440b759b0de5a0457aa51e91c7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/57/9676ce553e91a334d559e33b586f1f4045284a b/_git_of_git_commit_id/objects/57/9676ce553e91a334d559e33b586f1f4045284a deleted file mode 100644 index 28c6a47..0000000 Binary files a/_git_of_git_commit_id/objects/57/9676ce553e91a334d559e33b586f1f4045284a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/57/a9cfaae88f886233951b082a0ca5e656c85461 b/_git_of_git_commit_id/objects/57/a9cfaae88f886233951b082a0ca5e656c85461 deleted file mode 100644 index b5a3c6b..0000000 Binary files a/_git_of_git_commit_id/objects/57/a9cfaae88f886233951b082a0ca5e656c85461 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/57/d280946660de6f230180c308edae5d6258197e b/_git_of_git_commit_id/objects/57/d280946660de6f230180c308edae5d6258197e deleted file mode 100644 index 71031d9..0000000 Binary files a/_git_of_git_commit_id/objects/57/d280946660de6f230180c308edae5d6258197e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/57/d2e8b438b28d0620476ab54399b47c6b377598 b/_git_of_git_commit_id/objects/57/d2e8b438b28d0620476ab54399b47c6b377598 deleted file mode 100644 index cbd1a35..0000000 Binary files a/_git_of_git_commit_id/objects/57/d2e8b438b28d0620476ab54399b47c6b377598 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/57/ddb717c534aaceb1100cc2e17a63202164b7f0 b/_git_of_git_commit_id/objects/57/ddb717c534aaceb1100cc2e17a63202164b7f0 deleted file mode 100644 index 9c8906f..0000000 Binary files a/_git_of_git_commit_id/objects/57/ddb717c534aaceb1100cc2e17a63202164b7f0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/58/4a1a8d9e41df78b86e1becee6e725d7e2536a9 b/_git_of_git_commit_id/objects/58/4a1a8d9e41df78b86e1becee6e725d7e2536a9 deleted file mode 100644 index b8befbf..0000000 Binary files a/_git_of_git_commit_id/objects/58/4a1a8d9e41df78b86e1becee6e725d7e2536a9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/58/758862ab9a30427cb5d511ba070f535d972e08 b/_git_of_git_commit_id/objects/58/758862ab9a30427cb5d511ba070f535d972e08 deleted file mode 100644 index 145a5f1..0000000 Binary files a/_git_of_git_commit_id/objects/58/758862ab9a30427cb5d511ba070f535d972e08 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/58/95e80771ad3344b77bce09bff764beabe055eb b/_git_of_git_commit_id/objects/58/95e80771ad3344b77bce09bff764beabe055eb deleted file mode 100644 index 8ad1ab5..0000000 Binary files a/_git_of_git_commit_id/objects/58/95e80771ad3344b77bce09bff764beabe055eb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/58/b3f07c0a39cd663a6f02a0d0e670a8b334ad17 b/_git_of_git_commit_id/objects/58/b3f07c0a39cd663a6f02a0d0e670a8b334ad17 deleted file mode 100644 index 8d7982b..0000000 Binary files a/_git_of_git_commit_id/objects/58/b3f07c0a39cd663a6f02a0d0e670a8b334ad17 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/58/b42521117d577169645694b1660ffda50ebf70 b/_git_of_git_commit_id/objects/58/b42521117d577169645694b1660ffda50ebf70 deleted file mode 100644 index e86bf26..0000000 Binary files a/_git_of_git_commit_id/objects/58/b42521117d577169645694b1660ffda50ebf70 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/59/0d9a71779e1ed9f617fd72a7223ef8c40c11ca b/_git_of_git_commit_id/objects/59/0d9a71779e1ed9f617fd72a7223ef8c40c11ca deleted file mode 100644 index ab35469..0000000 Binary files a/_git_of_git_commit_id/objects/59/0d9a71779e1ed9f617fd72a7223ef8c40c11ca and /dev/null differ diff --git a/_git_of_git_commit_id/objects/59/2fe5edc6f915bdcdb380c6db08783d11179043 b/_git_of_git_commit_id/objects/59/2fe5edc6f915bdcdb380c6db08783d11179043 deleted file mode 100644 index 92cf284..0000000 Binary files a/_git_of_git_commit_id/objects/59/2fe5edc6f915bdcdb380c6db08783d11179043 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/59/347adaa9a64200a3d95d2c05070a2ae34d6465 b/_git_of_git_commit_id/objects/59/347adaa9a64200a3d95d2c05070a2ae34d6465 deleted file mode 100644 index 0bcd3a9..0000000 Binary files a/_git_of_git_commit_id/objects/59/347adaa9a64200a3d95d2c05070a2ae34d6465 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/59/6702d0862895c65a5387c4fe049a477d9e5b79 b/_git_of_git_commit_id/objects/59/6702d0862895c65a5387c4fe049a477d9e5b79 deleted file mode 100644 index 8d1b462..0000000 Binary files a/_git_of_git_commit_id/objects/59/6702d0862895c65a5387c4fe049a477d9e5b79 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/59/778da950d9384e140db014202486ca9c17f225 b/_git_of_git_commit_id/objects/59/778da950d9384e140db014202486ca9c17f225 deleted file mode 100644 index a38cac8..0000000 Binary files a/_git_of_git_commit_id/objects/59/778da950d9384e140db014202486ca9c17f225 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/59/df51386808acd2207b053f3b1cc58d47b753c6 b/_git_of_git_commit_id/objects/59/df51386808acd2207b053f3b1cc58d47b753c6 deleted file mode 100644 index 424fa52..0000000 Binary files a/_git_of_git_commit_id/objects/59/df51386808acd2207b053f3b1cc58d47b753c6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/59/faa1e990844f586c09ffdd197d88fb7c192860 b/_git_of_git_commit_id/objects/59/faa1e990844f586c09ffdd197d88fb7c192860 deleted file mode 100644 index efbf2a9..0000000 Binary files a/_git_of_git_commit_id/objects/59/faa1e990844f586c09ffdd197d88fb7c192860 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5a/0239b212258b4cb672e5e954757304a08cf2a1 b/_git_of_git_commit_id/objects/5a/0239b212258b4cb672e5e954757304a08cf2a1 deleted file mode 100644 index 752fac8..0000000 Binary files a/_git_of_git_commit_id/objects/5a/0239b212258b4cb672e5e954757304a08cf2a1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5a/363bea9bef99cb187b9984dc14af49d9293870 b/_git_of_git_commit_id/objects/5a/363bea9bef99cb187b9984dc14af49d9293870 deleted file mode 100644 index 7163f30..0000000 --- a/_git_of_git_commit_id/objects/5a/363bea9bef99cb187b9984dc14af49d9293870 +++ /dev/null @@ -1 +0,0 @@ -xKOR01a` 5ؔb`$i,<׬[Sg2ݹR"۷y=Ę \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/5a/37b45068253ec0f4e5608503e35cecd97ef74c b/_git_of_git_commit_id/objects/5a/37b45068253ec0f4e5608503e35cecd97ef74c deleted file mode 100644 index 4efdaa9..0000000 Binary files a/_git_of_git_commit_id/objects/5a/37b45068253ec0f4e5608503e35cecd97ef74c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5a/480b02f7003358b5f337b21c2488456dadf393 b/_git_of_git_commit_id/objects/5a/480b02f7003358b5f337b21c2488456dadf393 deleted file mode 100644 index 3f7e386..0000000 Binary files a/_git_of_git_commit_id/objects/5a/480b02f7003358b5f337b21c2488456dadf393 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5a/ca179356de09c45054bd18779d290cf6b4533a b/_git_of_git_commit_id/objects/5a/ca179356de09c45054bd18779d290cf6b4533a deleted file mode 100644 index a295935..0000000 Binary files a/_git_of_git_commit_id/objects/5a/ca179356de09c45054bd18779d290cf6b4533a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5a/da561d367dcbf9965f5f41df7bcb046599ccd7 b/_git_of_git_commit_id/objects/5a/da561d367dcbf9965f5f41df7bcb046599ccd7 deleted file mode 100644 index e136f09..0000000 Binary files a/_git_of_git_commit_id/objects/5a/da561d367dcbf9965f5f41df7bcb046599ccd7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5a/df3252789c8b462edf353d076aab93b8ff91e9 b/_git_of_git_commit_id/objects/5a/df3252789c8b462edf353d076aab93b8ff91e9 deleted file mode 100644 index 533274d..0000000 Binary files a/_git_of_git_commit_id/objects/5a/df3252789c8b462edf353d076aab93b8ff91e9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5a/f827342b58b68254081700390d042a0b8bc839 b/_git_of_git_commit_id/objects/5a/f827342b58b68254081700390d042a0b8bc839 deleted file mode 100644 index d249cc0..0000000 Binary files a/_git_of_git_commit_id/objects/5a/f827342b58b68254081700390d042a0b8bc839 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5b/5a426f9bcdb2cee5b13a3842e11285bc347103 b/_git_of_git_commit_id/objects/5b/5a426f9bcdb2cee5b13a3842e11285bc347103 deleted file mode 100644 index 1d410ba..0000000 Binary files a/_git_of_git_commit_id/objects/5b/5a426f9bcdb2cee5b13a3842e11285bc347103 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5b/95f3b877863f6c339ad933189ddb47d5de9ddf b/_git_of_git_commit_id/objects/5b/95f3b877863f6c339ad933189ddb47d5de9ddf deleted file mode 100644 index 23d1e87..0000000 Binary files a/_git_of_git_commit_id/objects/5b/95f3b877863f6c339ad933189ddb47d5de9ddf and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5b/a1c674b116833169dcb30698c2cec2e1a74a62 b/_git_of_git_commit_id/objects/5b/a1c674b116833169dcb30698c2cec2e1a74a62 deleted file mode 100644 index 8fe50a8..0000000 Binary files a/_git_of_git_commit_id/objects/5b/a1c674b116833169dcb30698c2cec2e1a74a62 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5b/d429a6c91815c8cec509e38f577ab116ae8e22 b/_git_of_git_commit_id/objects/5b/d429a6c91815c8cec509e38f577ab116ae8e22 deleted file mode 100644 index 26a9c4d..0000000 Binary files a/_git_of_git_commit_id/objects/5b/d429a6c91815c8cec509e38f577ab116ae8e22 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5b/eac8c4abd0ff9562b907b68e09d7cdd8db6e25 b/_git_of_git_commit_id/objects/5b/eac8c4abd0ff9562b907b68e09d7cdd8db6e25 deleted file mode 100644 index 477cb18..0000000 Binary files a/_git_of_git_commit_id/objects/5b/eac8c4abd0ff9562b907b68e09d7cdd8db6e25 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5c/5b9294180b4b4c309f6e58125e803a9d9f4d99 b/_git_of_git_commit_id/objects/5c/5b9294180b4b4c309f6e58125e803a9d9f4d99 deleted file mode 100644 index 802fc89..0000000 Binary files a/_git_of_git_commit_id/objects/5c/5b9294180b4b4c309f6e58125e803a9d9f4d99 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5c/7bf9b85e1125b4ab9f6e5de8eac4f9dcbee837 b/_git_of_git_commit_id/objects/5c/7bf9b85e1125b4ab9f6e5de8eac4f9dcbee837 deleted file mode 100644 index d1e7a81..0000000 Binary files a/_git_of_git_commit_id/objects/5c/7bf9b85e1125b4ab9f6e5de8eac4f9dcbee837 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5c/a20c44fa22b4a36449d4e4c7db18b5dfcadf07 b/_git_of_git_commit_id/objects/5c/a20c44fa22b4a36449d4e4c7db18b5dfcadf07 deleted file mode 100644 index 059e9c5..0000000 Binary files a/_git_of_git_commit_id/objects/5c/a20c44fa22b4a36449d4e4c7db18b5dfcadf07 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5c/af1cd931c9c9317198d76dbbfeaf8d65b8d3eb b/_git_of_git_commit_id/objects/5c/af1cd931c9c9317198d76dbbfeaf8d65b8d3eb deleted file mode 100644 index 2b3243c..0000000 Binary files a/_git_of_git_commit_id/objects/5c/af1cd931c9c9317198d76dbbfeaf8d65b8d3eb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5c/d9c30454ce641856471a7a4ede47d3c6a2256b b/_git_of_git_commit_id/objects/5c/d9c30454ce641856471a7a4ede47d3c6a2256b deleted file mode 100644 index f6577be..0000000 Binary files a/_git_of_git_commit_id/objects/5c/d9c30454ce641856471a7a4ede47d3c6a2256b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5c/e8b7beb7ac6fbdd743e2a9c3f54428547c6c50 b/_git_of_git_commit_id/objects/5c/e8b7beb7ac6fbdd743e2a9c3f54428547c6c50 deleted file mode 100644 index 72e9ce3..0000000 Binary files a/_git_of_git_commit_id/objects/5c/e8b7beb7ac6fbdd743e2a9c3f54428547c6c50 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5c/f0746a54d28c9ef1ad81d00eaa5f0c028e92aa b/_git_of_git_commit_id/objects/5c/f0746a54d28c9ef1ad81d00eaa5f0c028e92aa deleted file mode 100644 index b6b9953..0000000 Binary files a/_git_of_git_commit_id/objects/5c/f0746a54d28c9ef1ad81d00eaa5f0c028e92aa and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5d/11c6b61cc963e3ebb51c46961e637740aff516 b/_git_of_git_commit_id/objects/5d/11c6b61cc963e3ebb51c46961e637740aff516 deleted file mode 100644 index 37953f9..0000000 --- a/_git_of_git_commit_id/objects/5d/11c6b61cc963e3ebb51c46961e637740aff516 +++ /dev/null @@ -1 +0,0 @@ -xKOR05d` 50K60d`jmZg͕'Blw>oVܵ)MLqY \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/5d/376207c4dacb99a5d19b73ae0d68075e3e1e9d b/_git_of_git_commit_id/objects/5d/376207c4dacb99a5d19b73ae0d68075e3e1e9d deleted file mode 100644 index f29c21a..0000000 Binary files a/_git_of_git_commit_id/objects/5d/376207c4dacb99a5d19b73ae0d68075e3e1e9d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5d/5b104922c53c0d5b2dc6b9ec416d8b675d3882 b/_git_of_git_commit_id/objects/5d/5b104922c53c0d5b2dc6b9ec416d8b675d3882 deleted file mode 100644 index ec95357..0000000 Binary files a/_git_of_git_commit_id/objects/5d/5b104922c53c0d5b2dc6b9ec416d8b675d3882 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5d/a24e0ee6ad9f5d35c7fc97ef76725aad100c31 b/_git_of_git_commit_id/objects/5d/a24e0ee6ad9f5d35c7fc97ef76725aad100c31 deleted file mode 100644 index a78311b..0000000 Binary files a/_git_of_git_commit_id/objects/5d/a24e0ee6ad9f5d35c7fc97ef76725aad100c31 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5d/ab29e00ef13d0926786052a88a31f58eebb7fb b/_git_of_git_commit_id/objects/5d/ab29e00ef13d0926786052a88a31f58eebb7fb deleted file mode 100644 index 51556a6..0000000 Binary files a/_git_of_git_commit_id/objects/5d/ab29e00ef13d0926786052a88a31f58eebb7fb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5d/d86e7c8c04284fd1aedafcf4de762240bb5a35 b/_git_of_git_commit_id/objects/5d/d86e7c8c04284fd1aedafcf4de762240bb5a35 deleted file mode 100644 index ee7f7df..0000000 Binary files a/_git_of_git_commit_id/objects/5d/d86e7c8c04284fd1aedafcf4de762240bb5a35 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5d/fce9ed3870d3e3a356174ecf564d2efae4d08b b/_git_of_git_commit_id/objects/5d/fce9ed3870d3e3a356174ecf564d2efae4d08b deleted file mode 100644 index cf3b0cd..0000000 Binary files a/_git_of_git_commit_id/objects/5d/fce9ed3870d3e3a356174ecf564d2efae4d08b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5e/12d05b318408649edf4fdd37a378e87f00dd98 b/_git_of_git_commit_id/objects/5e/12d05b318408649edf4fdd37a378e87f00dd98 deleted file mode 100644 index b9594f2..0000000 Binary files a/_git_of_git_commit_id/objects/5e/12d05b318408649edf4fdd37a378e87f00dd98 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5e/20cb18485c9cb8cb9248d7ed979800cae21a39 b/_git_of_git_commit_id/objects/5e/20cb18485c9cb8cb9248d7ed979800cae21a39 deleted file mode 100644 index 24ec00a..0000000 Binary files a/_git_of_git_commit_id/objects/5e/20cb18485c9cb8cb9248d7ed979800cae21a39 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5e/5f1f1d87d0df6706a45bdf1c1eabcf49139194 b/_git_of_git_commit_id/objects/5e/5f1f1d87d0df6706a45bdf1c1eabcf49139194 deleted file mode 100644 index a0b7386..0000000 Binary files a/_git_of_git_commit_id/objects/5e/5f1f1d87d0df6706a45bdf1c1eabcf49139194 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5e/83225b7ef74dbdf8b104347cdff2727119656f b/_git_of_git_commit_id/objects/5e/83225b7ef74dbdf8b104347cdff2727119656f deleted file mode 100644 index e229798..0000000 Binary files a/_git_of_git_commit_id/objects/5e/83225b7ef74dbdf8b104347cdff2727119656f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5e/9bd255c4e5041ec6f026b0aa56b9c167c7f9c1 b/_git_of_git_commit_id/objects/5e/9bd255c4e5041ec6f026b0aa56b9c167c7f9c1 deleted file mode 100644 index 778d178..0000000 Binary files a/_git_of_git_commit_id/objects/5e/9bd255c4e5041ec6f026b0aa56b9c167c7f9c1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5e/fd94a490ca740eb2894499c4d083ed60c23571 b/_git_of_git_commit_id/objects/5e/fd94a490ca740eb2894499c4d083ed60c23571 deleted file mode 100644 index d55d782..0000000 Binary files a/_git_of_git_commit_id/objects/5e/fd94a490ca740eb2894499c4d083ed60c23571 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5f/1410a3f2f1b7f849e72ecf2a46e722de0fae78 b/_git_of_git_commit_id/objects/5f/1410a3f2f1b7f849e72ecf2a46e722de0fae78 deleted file mode 100644 index 530c25c..0000000 Binary files a/_git_of_git_commit_id/objects/5f/1410a3f2f1b7f849e72ecf2a46e722de0fae78 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5f/244b01afd2fbe743495ec2f682b149ae5c17b4 b/_git_of_git_commit_id/objects/5f/244b01afd2fbe743495ec2f682b149ae5c17b4 deleted file mode 100644 index 198ae37..0000000 Binary files a/_git_of_git_commit_id/objects/5f/244b01afd2fbe743495ec2f682b149ae5c17b4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5f/8540c2d6b264c58805bc4481db1225bfda514f b/_git_of_git_commit_id/objects/5f/8540c2d6b264c58805bc4481db1225bfda514f deleted file mode 100644 index dab280f..0000000 Binary files a/_git_of_git_commit_id/objects/5f/8540c2d6b264c58805bc4481db1225bfda514f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/5f/90763766ab3e661fd736948dfc2e52663dab27 b/_git_of_git_commit_id/objects/5f/90763766ab3e661fd736948dfc2e52663dab27 deleted file mode 100644 index 09be9c2..0000000 Binary files a/_git_of_git_commit_id/objects/5f/90763766ab3e661fd736948dfc2e52663dab27 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/60/38c51212d7d4252d7f360c1d14cdb4b645b53b b/_git_of_git_commit_id/objects/60/38c51212d7d4252d7f360c1d14cdb4b645b53b deleted file mode 100644 index 68f1ca8..0000000 Binary files a/_git_of_git_commit_id/objects/60/38c51212d7d4252d7f360c1d14cdb4b645b53b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/60/c342d8bd4213dde74f3d2165fc17eb9431af44 b/_git_of_git_commit_id/objects/60/c342d8bd4213dde74f3d2165fc17eb9431af44 deleted file mode 100644 index 8b092a0..0000000 Binary files a/_git_of_git_commit_id/objects/60/c342d8bd4213dde74f3d2165fc17eb9431af44 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/60/c9f2d9f5e1d7fe21988d7b707ec51ed3b15329 b/_git_of_git_commit_id/objects/60/c9f2d9f5e1d7fe21988d7b707ec51ed3b15329 deleted file mode 100644 index d5a9f15..0000000 Binary files a/_git_of_git_commit_id/objects/60/c9f2d9f5e1d7fe21988d7b707ec51ed3b15329 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/61/00ac25950c9fab6af29eeb463b7d233eecb2e7 b/_git_of_git_commit_id/objects/61/00ac25950c9fab6af29eeb463b7d233eecb2e7 deleted file mode 100644 index 2b74383..0000000 Binary files a/_git_of_git_commit_id/objects/61/00ac25950c9fab6af29eeb463b7d233eecb2e7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/61/28bc82a614cf140d63397abea5c30d72d92240 b/_git_of_git_commit_id/objects/61/28bc82a614cf140d63397abea5c30d72d92240 deleted file mode 100644 index 939794b..0000000 Binary files a/_git_of_git_commit_id/objects/61/28bc82a614cf140d63397abea5c30d72d92240 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/61/43b692279e374b00c038b91935867d3d7c292b b/_git_of_git_commit_id/objects/61/43b692279e374b00c038b91935867d3d7c292b deleted file mode 100644 index 197aad9..0000000 Binary files a/_git_of_git_commit_id/objects/61/43b692279e374b00c038b91935867d3d7c292b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/61/732c8dd9e2b049204b5ce8e94ac43a723df9a0 b/_git_of_git_commit_id/objects/61/732c8dd9e2b049204b5ce8e94ac43a723df9a0 deleted file mode 100644 index 884f0a2..0000000 Binary files a/_git_of_git_commit_id/objects/61/732c8dd9e2b049204b5ce8e94ac43a723df9a0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/61/de8fb6d41505e49eeb5f7919374ddab69f6499 b/_git_of_git_commit_id/objects/61/de8fb6d41505e49eeb5f7919374ddab69f6499 deleted file mode 100644 index 1a4235e..0000000 Binary files a/_git_of_git_commit_id/objects/61/de8fb6d41505e49eeb5f7919374ddab69f6499 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/62/016dff40cde671564869c12665b62d894e137a b/_git_of_git_commit_id/objects/62/016dff40cde671564869c12665b62d894e137a deleted file mode 100644 index 252f74b..0000000 Binary files a/_git_of_git_commit_id/objects/62/016dff40cde671564869c12665b62d894e137a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/62/04480842592211d324b10a307f40429f4259cc b/_git_of_git_commit_id/objects/62/04480842592211d324b10a307f40429f4259cc deleted file mode 100644 index 547e322..0000000 Binary files a/_git_of_git_commit_id/objects/62/04480842592211d324b10a307f40429f4259cc and /dev/null differ diff --git a/_git_of_git_commit_id/objects/62/78de72d10ad966fcb8bdb9e0ff7082535c2f90 b/_git_of_git_commit_id/objects/62/78de72d10ad966fcb8bdb9e0ff7082535c2f90 deleted file mode 100644 index 6fd1310..0000000 Binary files a/_git_of_git_commit_id/objects/62/78de72d10ad966fcb8bdb9e0ff7082535c2f90 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/62/9a5f9504c71b07a32f53cf4a4eebd77d88fdaf b/_git_of_git_commit_id/objects/62/9a5f9504c71b07a32f53cf4a4eebd77d88fdaf deleted file mode 100644 index ba07fe6..0000000 Binary files a/_git_of_git_commit_id/objects/62/9a5f9504c71b07a32f53cf4a4eebd77d88fdaf and /dev/null differ diff --git a/_git_of_git_commit_id/objects/62/de872c7a211921e16d7adb66b9e4c7a2d2d3f4 b/_git_of_git_commit_id/objects/62/de872c7a211921e16d7adb66b9e4c7a2d2d3f4 deleted file mode 100644 index 62d95e2..0000000 Binary files a/_git_of_git_commit_id/objects/62/de872c7a211921e16d7adb66b9e4c7a2d2d3f4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/62/e94368d3c17b745f15d6358dc5e9a307ba4c97 b/_git_of_git_commit_id/objects/62/e94368d3c17b745f15d6358dc5e9a307ba4c97 deleted file mode 100644 index 44ab383..0000000 Binary files a/_git_of_git_commit_id/objects/62/e94368d3c17b745f15d6358dc5e9a307ba4c97 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/63/2d24d0b2529cd5a37f68f64d615bc493e6bbe2 b/_git_of_git_commit_id/objects/63/2d24d0b2529cd5a37f68f64d615bc493e6bbe2 deleted file mode 100644 index 58b4252..0000000 Binary files a/_git_of_git_commit_id/objects/63/2d24d0b2529cd5a37f68f64d615bc493e6bbe2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/63/332e855f47a9bce193baf043e4738d264460e5 b/_git_of_git_commit_id/objects/63/332e855f47a9bce193baf043e4738d264460e5 deleted file mode 100644 index 95513ab..0000000 Binary files a/_git_of_git_commit_id/objects/63/332e855f47a9bce193baf043e4738d264460e5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/63/53b7fad02436cfd1173bd93f93c2a08d4dfe7c b/_git_of_git_commit_id/objects/63/53b7fad02436cfd1173bd93f93c2a08d4dfe7c deleted file mode 100644 index 6143b69..0000000 Binary files a/_git_of_git_commit_id/objects/63/53b7fad02436cfd1173bd93f93c2a08d4dfe7c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/63/5cd53e93349299ccceddd049d3d3ea010c87da b/_git_of_git_commit_id/objects/63/5cd53e93349299ccceddd049d3d3ea010c87da deleted file mode 100644 index 9d4c7b9..0000000 Binary files a/_git_of_git_commit_id/objects/63/5cd53e93349299ccceddd049d3d3ea010c87da and /dev/null differ diff --git a/_git_of_git_commit_id/objects/63/9ee8a3bda0944a7462f35dcbb0bdb22c76b8bd b/_git_of_git_commit_id/objects/63/9ee8a3bda0944a7462f35dcbb0bdb22c76b8bd deleted file mode 100644 index 7a4d69e..0000000 Binary files a/_git_of_git_commit_id/objects/63/9ee8a3bda0944a7462f35dcbb0bdb22c76b8bd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/63/e48f6ab2f77d1c333c769ec83a0bb1c09b00d7 b/_git_of_git_commit_id/objects/63/e48f6ab2f77d1c333c769ec83a0bb1c09b00d7 deleted file mode 100644 index f7696f9..0000000 Binary files a/_git_of_git_commit_id/objects/63/e48f6ab2f77d1c333c769ec83a0bb1c09b00d7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/63/ed4a2de791c57cfffc0aa643293377987f5295 b/_git_of_git_commit_id/objects/63/ed4a2de791c57cfffc0aa643293377987f5295 deleted file mode 100644 index de47a03..0000000 Binary files a/_git_of_git_commit_id/objects/63/ed4a2de791c57cfffc0aa643293377987f5295 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/64/05cb598294b1fa1f1412944c15393821bbd725 b/_git_of_git_commit_id/objects/64/05cb598294b1fa1f1412944c15393821bbd725 deleted file mode 100644 index 8b19352..0000000 --- a/_git_of_git_commit_id/objects/64/05cb598294b1fa1f1412944c15393821bbd725 +++ /dev/null @@ -1,4 +0,0 @@ -x51kTA'bgE -wޙ+Y;3wDH6 -Y)2S6*E -,Xm""9zW h*19ϔ& 9BmF5`:VL|^4n,_=tkvb#@Jj޺LB =S/O}Ǿ5K^HCF\V9 PXٽ}`OwևG;{mf1k$@ʐ H4+c쥝c{^]zt:/dm2&V\(#~g(U5|yLM^3Fb_kBFllp)Z΅w'GSpRAsttcSN9752juۻ>X \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/64/06c2ba9ca70336d185f8bf4e1440ec478ef4b2 b/_git_of_git_commit_id/objects/64/06c2ba9ca70336d185f8bf4e1440ec478ef4b2 deleted file mode 100644 index 16dd8aa..0000000 Binary files a/_git_of_git_commit_id/objects/64/06c2ba9ca70336d185f8bf4e1440ec478ef4b2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/64/3c6244b9d27507738939bd3f2b30509c08e04b b/_git_of_git_commit_id/objects/64/3c6244b9d27507738939bd3f2b30509c08e04b deleted file mode 100644 index 0a51c58..0000000 Binary files a/_git_of_git_commit_id/objects/64/3c6244b9d27507738939bd3f2b30509c08e04b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/64/599ed10878c40f0dcd8a9f02a6992b44fbba36 b/_git_of_git_commit_id/objects/64/599ed10878c40f0dcd8a9f02a6992b44fbba36 deleted file mode 100644 index f85f3b9..0000000 Binary files a/_git_of_git_commit_id/objects/64/599ed10878c40f0dcd8a9f02a6992b44fbba36 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/64/66661fb2e03f7d1d6bb4b7193071c1b2615b9b b/_git_of_git_commit_id/objects/64/66661fb2e03f7d1d6bb4b7193071c1b2615b9b deleted file mode 100644 index 911437e..0000000 Binary files a/_git_of_git_commit_id/objects/64/66661fb2e03f7d1d6bb4b7193071c1b2615b9b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/64/7e58c6020ae7f117522ea8100f30bf815e0f91 b/_git_of_git_commit_id/objects/64/7e58c6020ae7f117522ea8100f30bf815e0f91 deleted file mode 100644 index 67897e6..0000000 Binary files a/_git_of_git_commit_id/objects/64/7e58c6020ae7f117522ea8100f30bf815e0f91 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/64/e485da2f06b789f15c6646af92a3d85fed1cc0 b/_git_of_git_commit_id/objects/64/e485da2f06b789f15c6646af92a3d85fed1cc0 deleted file mode 100644 index 50fd98e..0000000 Binary files a/_git_of_git_commit_id/objects/64/e485da2f06b789f15c6646af92a3d85fed1cc0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/65/2cec00320c23140ed99f78c99c26449d46091e b/_git_of_git_commit_id/objects/65/2cec00320c23140ed99f78c99c26449d46091e deleted file mode 100644 index b207b15..0000000 Binary files a/_git_of_git_commit_id/objects/65/2cec00320c23140ed99f78c99c26449d46091e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/65/2f4875a87de513fd452c614f1688d734e3a08c b/_git_of_git_commit_id/objects/65/2f4875a87de513fd452c614f1688d734e3a08c deleted file mode 100644 index be6a576..0000000 Binary files a/_git_of_git_commit_id/objects/65/2f4875a87de513fd452c614f1688d734e3a08c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/65/51bf50b3f9c849da0f2c7e69c4ba9fcc4051ac b/_git_of_git_commit_id/objects/65/51bf50b3f9c849da0f2c7e69c4ba9fcc4051ac deleted file mode 100644 index 08a75cb..0000000 Binary files a/_git_of_git_commit_id/objects/65/51bf50b3f9c849da0f2c7e69c4ba9fcc4051ac and /dev/null differ diff --git a/_git_of_git_commit_id/objects/65/72486cd0fd26ab3cb48cf19b38efec7162b458 b/_git_of_git_commit_id/objects/65/72486cd0fd26ab3cb48cf19b38efec7162b458 deleted file mode 100644 index 5bb9b04..0000000 Binary files a/_git_of_git_commit_id/objects/65/72486cd0fd26ab3cb48cf19b38efec7162b458 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/65/899ffc7a2478c93f0adb03ca24f928494aa7d8 b/_git_of_git_commit_id/objects/65/899ffc7a2478c93f0adb03ca24f928494aa7d8 deleted file mode 100644 index 06a21c7..0000000 Binary files a/_git_of_git_commit_id/objects/65/899ffc7a2478c93f0adb03ca24f928494aa7d8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/65/b2b2973e8ecb2fe726903fb2cf26cd9c52d664 b/_git_of_git_commit_id/objects/65/b2b2973e8ecb2fe726903fb2cf26cd9c52d664 deleted file mode 100644 index b2ce538..0000000 Binary files a/_git_of_git_commit_id/objects/65/b2b2973e8ecb2fe726903fb2cf26cd9c52d664 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/65/cc07c87b799e1dc2ddf7e7b4cbd317c6adaa19 b/_git_of_git_commit_id/objects/65/cc07c87b799e1dc2ddf7e7b4cbd317c6adaa19 deleted file mode 100644 index cdbaceb..0000000 Binary files a/_git_of_git_commit_id/objects/65/cc07c87b799e1dc2ddf7e7b4cbd317c6adaa19 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/66/2017bf3fd4d377894d1d1b24a388774a26eafd b/_git_of_git_commit_id/objects/66/2017bf3fd4d377894d1d1b24a388774a26eafd deleted file mode 100644 index 6bfc925..0000000 --- a/_git_of_git_commit_id/objects/66/2017bf3fd4d377894d1d1b24a388774a26eafd +++ /dev/null @@ -1,4 +0,0 @@ -x-?(Q/e-,{?ݤnȎyO& J7NB$$ݺ-E[~Os2PRV!89$EB" Ebs6?z>Y?}SU(X -6ddI:sB"㲭fbkahmvS -ʀC -"Kҁenr(I>5т`VK!(%1zR mľ@"HYi0<:NwR E:(sQ)8[}H4ۜۿ?=l \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/66/3b6735c99f390da904948c7e6d3897ec25ed84 b/_git_of_git_commit_id/objects/66/3b6735c99f390da904948c7e6d3897ec25ed84 deleted file mode 100644 index 122d801..0000000 Binary files a/_git_of_git_commit_id/objects/66/3b6735c99f390da904948c7e6d3897ec25ed84 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/66/4f3937dfb04b596537d28bd2325f98e96ffe0f b/_git_of_git_commit_id/objects/66/4f3937dfb04b596537d28bd2325f98e96ffe0f deleted file mode 100644 index ac088b1..0000000 --- a/_git_of_git_commit_id/objects/66/4f3937dfb04b596537d28bd2325f98e96ffe0f +++ /dev/null @@ -1,2 +0,0 @@ -x+)JMU03c040031QputaJ= -ʿ7$ώ_{EzkϢLfK2A S \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/66/6feb6e737b4f49b6adf7298e1cdf6d39869abb b/_git_of_git_commit_id/objects/66/6feb6e737b4f49b6adf7298e1cdf6d39869abb deleted file mode 100644 index 643c624..0000000 Binary files a/_git_of_git_commit_id/objects/66/6feb6e737b4f49b6adf7298e1cdf6d39869abb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/66/74398bf970d9af6bce5efb88d4624cc43e6372 b/_git_of_git_commit_id/objects/66/74398bf970d9af6bce5efb88d4624cc43e6372 deleted file mode 100644 index b42b7c8..0000000 Binary files a/_git_of_git_commit_id/objects/66/74398bf970d9af6bce5efb88d4624cc43e6372 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/66/b820a57e1e4ba26b710567b27fb5835bf9b180 b/_git_of_git_commit_id/objects/66/b820a57e1e4ba26b710567b27fb5835bf9b180 deleted file mode 100644 index 78a8a1c..0000000 Binary files a/_git_of_git_commit_id/objects/66/b820a57e1e4ba26b710567b27fb5835bf9b180 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/66/be783b4a0592d620e965ed6f246954bc282f5f b/_git_of_git_commit_id/objects/66/be783b4a0592d620e965ed6f246954bc282f5f deleted file mode 100644 index de504d8..0000000 Binary files a/_git_of_git_commit_id/objects/66/be783b4a0592d620e965ed6f246954bc282f5f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/66/beb60f1b6ac02c7bb4ffc8de8f50046d29591f b/_git_of_git_commit_id/objects/66/beb60f1b6ac02c7bb4ffc8de8f50046d29591f deleted file mode 100644 index 384d824..0000000 Binary files a/_git_of_git_commit_id/objects/66/beb60f1b6ac02c7bb4ffc8de8f50046d29591f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/66/eee8fe38b4e402ec543698b4d7768e94d84cd8 b/_git_of_git_commit_id/objects/66/eee8fe38b4e402ec543698b4d7768e94d84cd8 deleted file mode 100644 index 54ae14b..0000000 Binary files a/_git_of_git_commit_id/objects/66/eee8fe38b4e402ec543698b4d7768e94d84cd8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/66/f45f9996d7aeda629f1adce35ddcf280f0b471 b/_git_of_git_commit_id/objects/66/f45f9996d7aeda629f1adce35ddcf280f0b471 deleted file mode 100644 index 2a76bcc..0000000 Binary files a/_git_of_git_commit_id/objects/66/f45f9996d7aeda629f1adce35ddcf280f0b471 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/67/11228b14df1785684d33cf7ca4a33ad1770dcc b/_git_of_git_commit_id/objects/67/11228b14df1785684d33cf7ca4a33ad1770dcc deleted file mode 100644 index 034ab6c..0000000 Binary files a/_git_of_git_commit_id/objects/67/11228b14df1785684d33cf7ca4a33ad1770dcc and /dev/null differ diff --git a/_git_of_git_commit_id/objects/67/460d1eccbe5f7ffe3ad8cf6081c9c02acd2863 b/_git_of_git_commit_id/objects/67/460d1eccbe5f7ffe3ad8cf6081c9c02acd2863 deleted file mode 100644 index 3459301..0000000 --- a/_git_of_git_commit_id/objects/67/460d1eccbe5f7ffe3ad8cf6081c9c02acd2863 +++ /dev/null @@ -1 +0,0 @@ -xKj0D) X!drqlKBcAyP+,t0ʿ hɨH61)oZ8wH1$TdQ I!9-:g_%@{ p۟೶ؕvޤR÷"&8ZK\vWp3;Cy 3CP5?gk+'./ĥг611oW{C7,rLjō6S KnږmO%e \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/6a/912f1799210daeb34efcd0f304fbf5a7cc8e93 b/_git_of_git_commit_id/objects/6a/912f1799210daeb34efcd0f304fbf5a7cc8e93 deleted file mode 100644 index b430a4e..0000000 Binary files a/_git_of_git_commit_id/objects/6a/912f1799210daeb34efcd0f304fbf5a7cc8e93 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/6a/a8dc9095c5c641fcafaaf450c39e3b8e149388 b/_git_of_git_commit_id/objects/6a/a8dc9095c5c641fcafaaf450c39e3b8e149388 deleted file mode 100644 index 396730d..0000000 Binary files a/_git_of_git_commit_id/objects/6a/a8dc9095c5c641fcafaaf450c39e3b8e149388 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/6a/e4c3c826421e728b4022434de83731acab63af b/_git_of_git_commit_id/objects/6a/e4c3c826421e728b4022434de83731acab63af deleted file mode 100644 index 8db302c..0000000 Binary files a/_git_of_git_commit_id/objects/6a/e4c3c826421e728b4022434de83731acab63af and /dev/null differ diff --git a/_git_of_git_commit_id/objects/6a/e79bbb861e213c310cb8794cea192604164027 b/_git_of_git_commit_id/objects/6a/e79bbb861e213c310cb8794cea192604164027 deleted file mode 100644 index d2d46f2..0000000 Binary files a/_git_of_git_commit_id/objects/6a/e79bbb861e213c310cb8794cea192604164027 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/6b/0a431a9f5e16cd1132409564514504e8fff814 b/_git_of_git_commit_id/objects/6b/0a431a9f5e16cd1132409564514504e8fff814 deleted file mode 100644 index 475c4a6..0000000 Binary files a/_git_of_git_commit_id/objects/6b/0a431a9f5e16cd1132409564514504e8fff814 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/6b/1ee484a85f9d64e3ef4bde07fbd6391d968bd0 b/_git_of_git_commit_id/objects/6b/1ee484a85f9d64e3ef4bde07fbd6391d968bd0 deleted file mode 100644 index 0071801..0000000 Binary files a/_git_of_git_commit_id/objects/6b/1ee484a85f9d64e3ef4bde07fbd6391d968bd0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/6b/724f7a9f28cf24db72f6d31c1f407f965804c0 b/_git_of_git_commit_id/objects/6b/724f7a9f28cf24db72f6d31c1f407f965804c0 deleted file mode 100644 index 3575520..0000000 --- a/_git_of_git_commit_id/objects/6b/724f7a9f28cf24db72f6d31c1f407f965804c0 +++ /dev/null @@ -1,2 +0,0 @@ -x5Mj0@}4%Bɾa49d$BO`xjQ(m#bDQBqbV1At3+h9%FKM -^t/o><n{^G+w8M%U ? C6[k[dR #\+eonܯ;_Mѯ<YC \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/71/8c5a8a0c549c2130342427c278eb226924ade7 b/_git_of_git_commit_id/objects/71/8c5a8a0c549c2130342427c278eb226924ade7 deleted file mode 100644 index 704de05..0000000 --- a/_git_of_git_commit_id/objects/71/8c5a8a0c549c2130342427c278eb226924ade7 +++ /dev/null @@ -1 +0,0 @@ -x+)JMU0`040031Q0H62N473L4I1LM50251J1MJI4IN64NK217Jbx|ӎM'3$-`PLML ,ӒSR̒͌R- L,M,SR,Mv'r+nP- M- LL͍RR-,RRO8s '*U'GbD \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/71/ab04edc09be7aeefa1e8a0f609a974ffd55a9f b/_git_of_git_commit_id/objects/71/ab04edc09be7aeefa1e8a0f609a974ffd55a9f deleted file mode 100644 index 1f4330a..0000000 Binary files a/_git_of_git_commit_id/objects/71/ab04edc09be7aeefa1e8a0f609a974ffd55a9f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/71/f3ef31fb0c6ceec51fc58f8fd5df5ba1d477d4 b/_git_of_git_commit_id/objects/71/f3ef31fb0c6ceec51fc58f8fd5df5ba1d477d4 deleted file mode 100644 index 941ed07..0000000 Binary files a/_git_of_git_commit_id/objects/71/f3ef31fb0c6ceec51fc58f8fd5df5ba1d477d4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/72/03e08f0940b33ec0ddb5cc39776435143e724e b/_git_of_git_commit_id/objects/72/03e08f0940b33ec0ddb5cc39776435143e724e deleted file mode 100644 index bd88078..0000000 Binary files a/_git_of_git_commit_id/objects/72/03e08f0940b33ec0ddb5cc39776435143e724e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/72/9684b5ba1f2547d2f33c3da89ca574b4ae1ea1 b/_git_of_git_commit_id/objects/72/9684b5ba1f2547d2f33c3da89ca574b4ae1ea1 deleted file mode 100644 index 1975420..0000000 Binary files a/_git_of_git_commit_id/objects/72/9684b5ba1f2547d2f33c3da89ca574b4ae1ea1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/72/9b4b65c106deb827b005fd53faeba2ff02f5e3 b/_git_of_git_commit_id/objects/72/9b4b65c106deb827b005fd53faeba2ff02f5e3 deleted file mode 100644 index 730ad0a..0000000 Binary files a/_git_of_git_commit_id/objects/72/9b4b65c106deb827b005fd53faeba2ff02f5e3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/72/9d99108532193cc199b4682dc9eed04b1895fa b/_git_of_git_commit_id/objects/72/9d99108532193cc199b4682dc9eed04b1895fa deleted file mode 100644 index 6204480..0000000 Binary files a/_git_of_git_commit_id/objects/72/9d99108532193cc199b4682dc9eed04b1895fa and /dev/null differ diff --git a/_git_of_git_commit_id/objects/72/f2ee3619c5722f644c44225efe924e14e205d8 b/_git_of_git_commit_id/objects/72/f2ee3619c5722f644c44225efe924e14e205d8 deleted file mode 100644 index b655498..0000000 Binary files a/_git_of_git_commit_id/objects/72/f2ee3619c5722f644c44225efe924e14e205d8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/73/3fc5c07c9dbdcc642a364ef6abdf3aadd7e9d4 b/_git_of_git_commit_id/objects/73/3fc5c07c9dbdcc642a364ef6abdf3aadd7e9d4 deleted file mode 100644 index e1331a7..0000000 Binary files a/_git_of_git_commit_id/objects/73/3fc5c07c9dbdcc642a364ef6abdf3aadd7e9d4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/73/adecfa4cdaaab633a660c0766b7f40de444166 b/_git_of_git_commit_id/objects/73/adecfa4cdaaab633a660c0766b7f40de444166 deleted file mode 100644 index e8469cb..0000000 Binary files a/_git_of_git_commit_id/objects/73/adecfa4cdaaab633a660c0766b7f40de444166 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/73/af45bb9835fe8eeb5e1b8c58286cd127b568e5 b/_git_of_git_commit_id/objects/73/af45bb9835fe8eeb5e1b8c58286cd127b568e5 deleted file mode 100644 index 4ac17e5..0000000 Binary files a/_git_of_git_commit_id/objects/73/af45bb9835fe8eeb5e1b8c58286cd127b568e5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/73/b490a2dfcf7940fece8eacf99b5fb76b3f56db b/_git_of_git_commit_id/objects/73/b490a2dfcf7940fece8eacf99b5fb76b3f56db deleted file mode 100644 index 3da1bcd..0000000 Binary files a/_git_of_git_commit_id/objects/73/b490a2dfcf7940fece8eacf99b5fb76b3f56db and /dev/null differ diff --git a/_git_of_git_commit_id/objects/74/091df0d349e52f04edf43b1e5734c8a9d54227 b/_git_of_git_commit_id/objects/74/091df0d349e52f04edf43b1e5734c8a9d54227 deleted file mode 100644 index b67ef9f..0000000 Binary files a/_git_of_git_commit_id/objects/74/091df0d349e52f04edf43b1e5734c8a9d54227 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/74/22ebf285b9628072b9b9bf6c5e9bb4008b5433 b/_git_of_git_commit_id/objects/74/22ebf285b9628072b9b9bf6c5e9bb4008b5433 deleted file mode 100644 index fcf4b6e..0000000 Binary files a/_git_of_git_commit_id/objects/74/22ebf285b9628072b9b9bf6c5e9bb4008b5433 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/74/32a0030923cb21e56bcc226a59dc63213cb98a b/_git_of_git_commit_id/objects/74/32a0030923cb21e56bcc226a59dc63213cb98a deleted file mode 100644 index 1e88a6c..0000000 Binary files a/_git_of_git_commit_id/objects/74/32a0030923cb21e56bcc226a59dc63213cb98a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/74/3465a963b3235466bca15031b076a818c8e7fa b/_git_of_git_commit_id/objects/74/3465a963b3235466bca15031b076a818c8e7fa deleted file mode 100644 index c799b48..0000000 Binary files a/_git_of_git_commit_id/objects/74/3465a963b3235466bca15031b076a818c8e7fa and /dev/null differ diff --git a/_git_of_git_commit_id/objects/74/560b8c9ac89f4c1bc5d4cde957843b288f886c b/_git_of_git_commit_id/objects/74/560b8c9ac89f4c1bc5d4cde957843b288f886c deleted file mode 100644 index 63ae750..0000000 Binary files a/_git_of_git_commit_id/objects/74/560b8c9ac89f4c1bc5d4cde957843b288f886c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/74/7d371a7c911cc4f3cf1987f8ca5896384bba2f b/_git_of_git_commit_id/objects/74/7d371a7c911cc4f3cf1987f8ca5896384bba2f deleted file mode 100644 index f3d8ea2..0000000 Binary files a/_git_of_git_commit_id/objects/74/7d371a7c911cc4f3cf1987f8ca5896384bba2f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/74/87ad7c7f71ff0e3045bbfe0983d69df3740a4c b/_git_of_git_commit_id/objects/74/87ad7c7f71ff0e3045bbfe0983d69df3740a4c deleted file mode 100644 index 9c03ac8..0000000 --- a/_git_of_git_commit_id/objects/74/87ad7c7f71ff0e3045bbfe0983d69df3740a4c +++ /dev/null @@ -1,9 +0,0 @@ -xVMG͙_Q47,KVJ!0jf -h3LO{X#k{?z0`9]WU޽O%K7lPq)gLwW\ߵZ|[ -AUTlP1I\ݝ9񣉙8cl@x%RsQЍM nொ`Ez<-AiYZ@*iQX/4$3A֔',^C$BkgG%GmP\ [sI /rz<>{! )` s*7Ha)$(lM@oB*C[A<Їn9O!͙R`4ƭdJT.ja!Ki4%/XSm Mz)7D#j/)xcbCX2)RĀLD:4#@EE$* Jj%5WR4&V*$CF2=eg^y2OƳp6 <>m%ӮOWYu]Z߻3v 7NYÝ9䵐Bh/\: c5Fg9rq.8t>r|AYNTλ2|̃2kkxWn8-:XĤ-Z%L܃G?@'xtdN N#͡*[]=MkKM׭JXǮMSIte(Bń=E"Pޥ`X"{sw-Niq`V@ %']Qlv 8l $WdVy.~/&c-vl \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/7a/db253299c9511eb5f65a69e3a95e0cd0df768b b/_git_of_git_commit_id/objects/7a/db253299c9511eb5f65a69e3a95e0cd0df768b deleted file mode 100644 index a5665b0..0000000 Binary files a/_git_of_git_commit_id/objects/7a/db253299c9511eb5f65a69e3a95e0cd0df768b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7a/e0a659349400afa26e0fcf00d59cdc5446c7f0 b/_git_of_git_commit_id/objects/7a/e0a659349400afa26e0fcf00d59cdc5446c7f0 deleted file mode 100644 index 635cd53..0000000 --- a/_git_of_git_commit_id/objects/7a/e0a659349400afa26e0fcf00d59cdc5446c7f0 +++ /dev/null @@ -1,2 +0,0 @@ -xAj0uنli$ZhV%B0؍mInrn?~/e*jfw};{剃,;2`:gnKF -¿$*"VEuL>Қ)…f/;4^釚m>광;YvRpZ_#kT>osD:$H+S);(c=C-_.^ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/7b/b73631950b241d1d8cfbe664a1365527baa386 b/_git_of_git_commit_id/objects/7b/b73631950b241d1d8cfbe664a1365527baa386 deleted file mode 100644 index a3d72b3..0000000 Binary files a/_git_of_git_commit_id/objects/7b/b73631950b241d1d8cfbe664a1365527baa386 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7b/e3b9e1865618822521bd43e9b25b34bd1cb260 b/_git_of_git_commit_id/objects/7b/e3b9e1865618822521bd43e9b25b34bd1cb260 deleted file mode 100644 index f5a0df6..0000000 Binary files a/_git_of_git_commit_id/objects/7b/e3b9e1865618822521bd43e9b25b34bd1cb260 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7b/fe851cdb623b32bc3042074233e93df7bc1a31 b/_git_of_git_commit_id/objects/7b/fe851cdb623b32bc3042074233e93df7bc1a31 deleted file mode 100644 index 33e863c..0000000 Binary files a/_git_of_git_commit_id/objects/7b/fe851cdb623b32bc3042074233e93df7bc1a31 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7c/433e75d2f36dd4ccb9f512b1ffb23f4c76d406 b/_git_of_git_commit_id/objects/7c/433e75d2f36dd4ccb9f512b1ffb23f4c76d406 deleted file mode 100644 index 1aebcd4..0000000 Binary files a/_git_of_git_commit_id/objects/7c/433e75d2f36dd4ccb9f512b1ffb23f4c76d406 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7c/a049247b1cdf9b39c009834149c6e3e245a254 b/_git_of_git_commit_id/objects/7c/a049247b1cdf9b39c009834149c6e3e245a254 deleted file mode 100644 index 2711639..0000000 Binary files a/_git_of_git_commit_id/objects/7c/a049247b1cdf9b39c009834149c6e3e245a254 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7c/be81bcf5e7fde86186354ba33e9f57c2b819a7 b/_git_of_git_commit_id/objects/7c/be81bcf5e7fde86186354ba33e9f57c2b819a7 deleted file mode 100644 index 9d15cfc..0000000 Binary files a/_git_of_git_commit_id/objects/7c/be81bcf5e7fde86186354ba33e9f57c2b819a7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7c/e8fd92a1cc0cf0e69be2281a080233b2645315 b/_git_of_git_commit_id/objects/7c/e8fd92a1cc0cf0e69be2281a080233b2645315 deleted file mode 100644 index ddc4c51..0000000 Binary files a/_git_of_git_commit_id/objects/7c/e8fd92a1cc0cf0e69be2281a080233b2645315 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7c/fe8b1aeabb292dfb9fb574cdb911b77749e6f4 b/_git_of_git_commit_id/objects/7c/fe8b1aeabb292dfb9fb574cdb911b77749e6f4 deleted file mode 100644 index d1834c7..0000000 --- a/_git_of_git_commit_id/objects/7c/fe8b1aeabb292dfb9fb574cdb911b77749e6f4 +++ /dev/null @@ -1 +0,0 @@ -x+)JMU06e040031Q(իapphIhAZ!Rs-_ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/7d/0db92d4209e9db281bcc317df0560eee974382 b/_git_of_git_commit_id/objects/7d/0db92d4209e9db281bcc317df0560eee974382 deleted file mode 100644 index f96cf43..0000000 Binary files a/_git_of_git_commit_id/objects/7d/0db92d4209e9db281bcc317df0560eee974382 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7d/5b62bd3ad7e525b0070f2eeb7bd25051ffe021 b/_git_of_git_commit_id/objects/7d/5b62bd3ad7e525b0070f2eeb7bd25051ffe021 deleted file mode 100644 index 1dd4ac2..0000000 Binary files a/_git_of_git_commit_id/objects/7d/5b62bd3ad7e525b0070f2eeb7bd25051ffe021 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7d/7987024e2894736c2f4e635dff5679a2a1c9cd b/_git_of_git_commit_id/objects/7d/7987024e2894736c2f4e635dff5679a2a1c9cd deleted file mode 100644 index aa530a7..0000000 Binary files a/_git_of_git_commit_id/objects/7d/7987024e2894736c2f4e635dff5679a2a1c9cd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7d/a49efee4129ad5113ca2627b22295225641bf0 b/_git_of_git_commit_id/objects/7d/a49efee4129ad5113ca2627b22295225641bf0 deleted file mode 100644 index 55031a7..0000000 Binary files a/_git_of_git_commit_id/objects/7d/a49efee4129ad5113ca2627b22295225641bf0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7d/cf8a55058fed92eae3cbd849f2951378c2898c b/_git_of_git_commit_id/objects/7d/cf8a55058fed92eae3cbd849f2951378c2898c deleted file mode 100644 index c8911a5..0000000 Binary files a/_git_of_git_commit_id/objects/7d/cf8a55058fed92eae3cbd849f2951378c2898c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7d/d61f9500b6af9c9030e6e95db2cbd1f7314fcc b/_git_of_git_commit_id/objects/7d/d61f9500b6af9c9030e6e95db2cbd1f7314fcc deleted file mode 100644 index a381bf3..0000000 Binary files a/_git_of_git_commit_id/objects/7d/d61f9500b6af9c9030e6e95db2cbd1f7314fcc and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7d/ecb421bc38a486eb7be3edbc10d8aed085e114 b/_git_of_git_commit_id/objects/7d/ecb421bc38a486eb7be3edbc10d8aed085e114 deleted file mode 100644 index ab6dc55..0000000 Binary files a/_git_of_git_commit_id/objects/7d/ecb421bc38a486eb7be3edbc10d8aed085e114 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7d/fa0373ae7f12102e0426a77248631dbc9395de b/_git_of_git_commit_id/objects/7d/fa0373ae7f12102e0426a77248631dbc9395de deleted file mode 100644 index 8f07812..0000000 Binary files a/_git_of_git_commit_id/objects/7d/fa0373ae7f12102e0426a77248631dbc9395de and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7e/1b752485236f1c26d1b8785ec8cc3ed1f31850 b/_git_of_git_commit_id/objects/7e/1b752485236f1c26d1b8785ec8cc3ed1f31850 deleted file mode 100644 index 2329968..0000000 Binary files a/_git_of_git_commit_id/objects/7e/1b752485236f1c26d1b8785ec8cc3ed1f31850 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7e/3d4e8ba7fa5259e892ca6b677095195ce1dbd1 b/_git_of_git_commit_id/objects/7e/3d4e8ba7fa5259e892ca6b677095195ce1dbd1 deleted file mode 100644 index 746cd95..0000000 Binary files a/_git_of_git_commit_id/objects/7e/3d4e8ba7fa5259e892ca6b677095195ce1dbd1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7e/8b521399d6a0740c98737b442124ae39f5133e b/_git_of_git_commit_id/objects/7e/8b521399d6a0740c98737b442124ae39f5133e deleted file mode 100644 index 0d8f570..0000000 Binary files a/_git_of_git_commit_id/objects/7e/8b521399d6a0740c98737b442124ae39f5133e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7e/a6615dd8b2011f568246a38d72f4534971129b b/_git_of_git_commit_id/objects/7e/a6615dd8b2011f568246a38d72f4534971129b deleted file mode 100644 index 3a377d6..0000000 Binary files a/_git_of_git_commit_id/objects/7e/a6615dd8b2011f568246a38d72f4534971129b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7f/248e4de815cb94c6130ccc1cb5a012f108437d b/_git_of_git_commit_id/objects/7f/248e4de815cb94c6130ccc1cb5a012f108437d deleted file mode 100644 index b08f138..0000000 Binary files a/_git_of_git_commit_id/objects/7f/248e4de815cb94c6130ccc1cb5a012f108437d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7f/9c90ab28019735187ced466f44d5decdfa66c7 b/_git_of_git_commit_id/objects/7f/9c90ab28019735187ced466f44d5decdfa66c7 deleted file mode 100644 index e71f7d8..0000000 Binary files a/_git_of_git_commit_id/objects/7f/9c90ab28019735187ced466f44d5decdfa66c7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7f/f955a5a33fd55c9b14616fef4ef826d6e743c2 b/_git_of_git_commit_id/objects/7f/f955a5a33fd55c9b14616fef4ef826d6e743c2 deleted file mode 100644 index 6f1673c..0000000 Binary files a/_git_of_git_commit_id/objects/7f/f955a5a33fd55c9b14616fef4ef826d6e743c2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7f/f9ba3aa5c1ad9c8be8194ae7e3722fbf3bb4a4 b/_git_of_git_commit_id/objects/7f/f9ba3aa5c1ad9c8be8194ae7e3722fbf3bb4a4 deleted file mode 100644 index 85b0e6c..0000000 Binary files a/_git_of_git_commit_id/objects/7f/f9ba3aa5c1ad9c8be8194ae7e3722fbf3bb4a4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/7f/fe03450186618fe012eddf4ea826d9d2dcabad b/_git_of_git_commit_id/objects/7f/fe03450186618fe012eddf4ea826d9d2dcabad deleted file mode 100644 index 067da39..0000000 Binary files a/_git_of_git_commit_id/objects/7f/fe03450186618fe012eddf4ea826d9d2dcabad and /dev/null differ diff --git a/_git_of_git_commit_id/objects/80/2408ae4228f2f4409acb687e4d5fa1ce718b47 b/_git_of_git_commit_id/objects/80/2408ae4228f2f4409acb687e4d5fa1ce718b47 deleted file mode 100644 index 61550d9..0000000 Binary files a/_git_of_git_commit_id/objects/80/2408ae4228f2f4409acb687e4d5fa1ce718b47 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/80/2b86c7e06b4cd74768baceeb9c723eaebcd543 b/_git_of_git_commit_id/objects/80/2b86c7e06b4cd74768baceeb9c723eaebcd543 deleted file mode 100644 index 4287b8a..0000000 Binary files a/_git_of_git_commit_id/objects/80/2b86c7e06b4cd74768baceeb9c723eaebcd543 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/80/32af14122108970babcc127e79fb25e497b4e7 b/_git_of_git_commit_id/objects/80/32af14122108970babcc127e79fb25e497b4e7 deleted file mode 100644 index e9c14a0..0000000 Binary files a/_git_of_git_commit_id/objects/80/32af14122108970babcc127e79fb25e497b4e7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/80/42c13a18e14c96df2962b9808e651e46b75ab5 b/_git_of_git_commit_id/objects/80/42c13a18e14c96df2962b9808e651e46b75ab5 deleted file mode 100644 index 3074782..0000000 Binary files a/_git_of_git_commit_id/objects/80/42c13a18e14c96df2962b9808e651e46b75ab5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/80/6678e9f7539dfa2218b7930281fbfe4a47a037 b/_git_of_git_commit_id/objects/80/6678e9f7539dfa2218b7930281fbfe4a47a037 deleted file mode 100644 index 7ac00b4..0000000 Binary files a/_git_of_git_commit_id/objects/80/6678e9f7539dfa2218b7930281fbfe4a47a037 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/80/7e7f1462bd0c4458b185ef7552f55ffc4f34ae b/_git_of_git_commit_id/objects/80/7e7f1462bd0c4458b185ef7552f55ffc4f34ae deleted file mode 100644 index 6f4f8d7..0000000 Binary files a/_git_of_git_commit_id/objects/80/7e7f1462bd0c4458b185ef7552f55ffc4f34ae and /dev/null differ diff --git a/_git_of_git_commit_id/objects/80/daae4dcf6713e3c9d064472bc552ce09f806cb b/_git_of_git_commit_id/objects/80/daae4dcf6713e3c9d064472bc552ce09f806cb deleted file mode 100644 index 29e2f98..0000000 Binary files a/_git_of_git_commit_id/objects/80/daae4dcf6713e3c9d064472bc552ce09f806cb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/80/faff3b710419f5cf1d6b8166444c3e5f0c3720 b/_git_of_git_commit_id/objects/80/faff3b710419f5cf1d6b8166444c3e5f0c3720 deleted file mode 100644 index 1ec6d60..0000000 Binary files a/_git_of_git_commit_id/objects/80/faff3b710419f5cf1d6b8166444c3e5f0c3720 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/81/021fef10bf769c74e2c5a282bc39a190242507 b/_git_of_git_commit_id/objects/81/021fef10bf769c74e2c5a282bc39a190242507 deleted file mode 100644 index 7db353b..0000000 Binary files a/_git_of_git_commit_id/objects/81/021fef10bf769c74e2c5a282bc39a190242507 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/81/058db73cd456a809549fd75538d391106413c8 b/_git_of_git_commit_id/objects/81/058db73cd456a809549fd75538d391106413c8 deleted file mode 100644 index 6e0207b..0000000 Binary files a/_git_of_git_commit_id/objects/81/058db73cd456a809549fd75538d391106413c8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/81/1df125dc1a8f8e42c7439bc9c9bd503a1693df b/_git_of_git_commit_id/objects/81/1df125dc1a8f8e42c7439bc9c9bd503a1693df deleted file mode 100644 index 56c4637..0000000 Binary files a/_git_of_git_commit_id/objects/81/1df125dc1a8f8e42c7439bc9c9bd503a1693df and /dev/null differ diff --git a/_git_of_git_commit_id/objects/81/21fb1339406cbf4d2ceaff3723edd5fdc5ded1 b/_git_of_git_commit_id/objects/81/21fb1339406cbf4d2ceaff3723edd5fdc5ded1 deleted file mode 100644 index 126a5c2..0000000 Binary files a/_git_of_git_commit_id/objects/81/21fb1339406cbf4d2ceaff3723edd5fdc5ded1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/81/257fe3371d7e5c58841b78f0bf32b8e75d1787 b/_git_of_git_commit_id/objects/81/257fe3371d7e5c58841b78f0bf32b8e75d1787 deleted file mode 100644 index 7f9c90a..0000000 Binary files a/_git_of_git_commit_id/objects/81/257fe3371d7e5c58841b78f0bf32b8e75d1787 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/81/97b015ce4d6e702b0a7f5c24fa7e96d72fb736 b/_git_of_git_commit_id/objects/81/97b015ce4d6e702b0a7f5c24fa7e96d72fb736 deleted file mode 100644 index 839634e..0000000 Binary files a/_git_of_git_commit_id/objects/81/97b015ce4d6e702b0a7f5c24fa7e96d72fb736 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/81/ae04dbfe7f1176758521f6dd73d11256483871 b/_git_of_git_commit_id/objects/81/ae04dbfe7f1176758521f6dd73d11256483871 deleted file mode 100644 index 54175bc..0000000 --- a/_git_of_git_commit_id/objects/81/ae04dbfe7f1176758521f6dd73d11256483871 +++ /dev/null @@ -1 +0,0 @@ -x5ο+QS%nn,9s=@6:2)ݍ[B "ED"lʂ榼õ}OJ΅aR5J$#@6|L!儒:i,ѹ1^==].އ˿@цʱMDhP|zC+ 5\6P_`KƱC"z,Q,ylU 9Z`l{>W \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/81/f535a6ed9c92fd6582bdd93680b02cbbba04f0 b/_git_of_git_commit_id/objects/81/f535a6ed9c92fd6582bdd93680b02cbbba04f0 deleted file mode 100644 index 69b5d26..0000000 Binary files a/_git_of_git_commit_id/objects/81/f535a6ed9c92fd6582bdd93680b02cbbba04f0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/82/5def21ceffaad1b0bc0f60a4174f525cc443a4 b/_git_of_git_commit_id/objects/82/5def21ceffaad1b0bc0f60a4174f525cc443a4 deleted file mode 100644 index 73b490a..0000000 Binary files a/_git_of_git_commit_id/objects/82/5def21ceffaad1b0bc0f60a4174f525cc443a4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/82/648ff591d5e40c7c39473f92e566c093ff5fc5 b/_git_of_git_commit_id/objects/82/648ff591d5e40c7c39473f92e566c093ff5fc5 deleted file mode 100644 index 891cbcf..0000000 --- a/_git_of_git_commit_id/objects/82/648ff591d5e40c7c39473f92e566c093ff5fc5 +++ /dev/null @@ -1 +0,0 @@ -xMj0F)fk+JR7e ~Ct>x<>n2)_@D\ȳH"09qleUxli(*BB|8b:|cOv|}㲃oauoBLvy`*4tv̍p.A}|^/@^ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/82/64b5efe43412001784af81d30f955d5be0809f b/_git_of_git_commit_id/objects/82/64b5efe43412001784af81d30f955d5be0809f deleted file mode 100644 index 3b59d25..0000000 Binary files a/_git_of_git_commit_id/objects/82/64b5efe43412001784af81d30f955d5be0809f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/82/73e826eade3e261a690899eaf4d9b203e41882 b/_git_of_git_commit_id/objects/82/73e826eade3e261a690899eaf4d9b203e41882 deleted file mode 100644 index 0abd2ba..0000000 Binary files a/_git_of_git_commit_id/objects/82/73e826eade3e261a690899eaf4d9b203e41882 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/82/74a245abd7872ff2244c14e425840ee03a209b b/_git_of_git_commit_id/objects/82/74a245abd7872ff2244c14e425840ee03a209b deleted file mode 100644 index a35eb2b..0000000 Binary files a/_git_of_git_commit_id/objects/82/74a245abd7872ff2244c14e425840ee03a209b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/82/bd2808f90ef3286c2827fd0ced70d42d57610d b/_git_of_git_commit_id/objects/82/bd2808f90ef3286c2827fd0ced70d42d57610d deleted file mode 100644 index 43a6990..0000000 Binary files a/_git_of_git_commit_id/objects/82/bd2808f90ef3286c2827fd0ced70d42d57610d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/83/06b07d845a26c867e6ac09064dd364de6f8263 b/_git_of_git_commit_id/objects/83/06b07d845a26c867e6ac09064dd364de6f8263 deleted file mode 100644 index 3040c8d..0000000 Binary files a/_git_of_git_commit_id/objects/83/06b07d845a26c867e6ac09064dd364de6f8263 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/83/7dca5ed9c5099db94611ba06e9c35840338d72 b/_git_of_git_commit_id/objects/83/7dca5ed9c5099db94611ba06e9c35840338d72 deleted file mode 100644 index a505251..0000000 Binary files a/_git_of_git_commit_id/objects/83/7dca5ed9c5099db94611ba06e9c35840338d72 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/83/873a6f00ef57e6e4a96b1fe640cd4668b337fd b/_git_of_git_commit_id/objects/83/873a6f00ef57e6e4a96b1fe640cd4668b337fd deleted file mode 100644 index a858023..0000000 --- a/_git_of_git_commit_id/objects/83/873a6f00ef57e6e4a96b1fe640cd4668b337fd +++ /dev/null @@ -1,2 +0,0 @@ -xK -0@]J2{ko{<^r*wZDC%aI(^SLG%V*2W :aŧ6%;k$hm ED8yAຖ)\mƢ?yD਍֊*TY`[#UQ5Sb \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/84/4130c5c4ad9a8409172bba29864380f164ccd8 b/_git_of_git_commit_id/objects/84/4130c5c4ad9a8409172bba29864380f164ccd8 deleted file mode 100644 index b2a8c45..0000000 Binary files a/_git_of_git_commit_id/objects/84/4130c5c4ad9a8409172bba29864380f164ccd8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/84/43480e4acc9afb36d0906ba33d16217dd31d1e b/_git_of_git_commit_id/objects/84/43480e4acc9afb36d0906ba33d16217dd31d1e deleted file mode 100644 index a59bd6d..0000000 Binary files a/_git_of_git_commit_id/objects/84/43480e4acc9afb36d0906ba33d16217dd31d1e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/84/6cd36ff01b0c38179e7591eb52a87c34481f81 b/_git_of_git_commit_id/objects/84/6cd36ff01b0c38179e7591eb52a87c34481f81 deleted file mode 100644 index 9595b53..0000000 Binary files a/_git_of_git_commit_id/objects/84/6cd36ff01b0c38179e7591eb52a87c34481f81 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/84/919b1370d44f510f3f20edbda0c449663c8de1 b/_git_of_git_commit_id/objects/84/919b1370d44f510f3f20edbda0c449663c8de1 deleted file mode 100644 index 3bc69ad..0000000 Binary files a/_git_of_git_commit_id/objects/84/919b1370d44f510f3f20edbda0c449663c8de1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/84/b5a42066a52eba7e81a32c8aa64ce165be417a b/_git_of_git_commit_id/objects/84/b5a42066a52eba7e81a32c8aa64ce165be417a deleted file mode 100644 index d92ea0b..0000000 Binary files a/_git_of_git_commit_id/objects/84/b5a42066a52eba7e81a32c8aa64ce165be417a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/84/eff6e13e825ace463feb41cede71871bc78cef b/_git_of_git_commit_id/objects/84/eff6e13e825ace463feb41cede71871bc78cef deleted file mode 100644 index f3b0433..0000000 Binary files a/_git_of_git_commit_id/objects/84/eff6e13e825ace463feb41cede71871bc78cef and /dev/null differ diff --git a/_git_of_git_commit_id/objects/85/11805b8383787a764fbee5ddef6c206398e146 b/_git_of_git_commit_id/objects/85/11805b8383787a764fbee5ddef6c206398e146 deleted file mode 100644 index 65e01e5..0000000 Binary files a/_git_of_git_commit_id/objects/85/11805b8383787a764fbee5ddef6c206398e146 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/85/2f3680d1b321f91d385bf9133bafcfa514064a b/_git_of_git_commit_id/objects/85/2f3680d1b321f91d385bf9133bafcfa514064a deleted file mode 100644 index 3c7d5cd..0000000 Binary files a/_git_of_git_commit_id/objects/85/2f3680d1b321f91d385bf9133bafcfa514064a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/85/33257a1861b7bd304716a77d84bb47edff5a80 b/_git_of_git_commit_id/objects/85/33257a1861b7bd304716a77d84bb47edff5a80 deleted file mode 100644 index dba5e4c..0000000 Binary files a/_git_of_git_commit_id/objects/85/33257a1861b7bd304716a77d84bb47edff5a80 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/85/818dd10bda666cd2fb4eabdc0b71040f3301cf b/_git_of_git_commit_id/objects/85/818dd10bda666cd2fb4eabdc0b71040f3301cf deleted file mode 100644 index 8c3581e..0000000 Binary files a/_git_of_git_commit_id/objects/85/818dd10bda666cd2fb4eabdc0b71040f3301cf and /dev/null differ diff --git a/_git_of_git_commit_id/objects/85/a6c1a47f45212bd7973f3b200b3cc641565aea b/_git_of_git_commit_id/objects/85/a6c1a47f45212bd7973f3b200b3cc641565aea deleted file mode 100644 index 0fca09a..0000000 Binary files a/_git_of_git_commit_id/objects/85/a6c1a47f45212bd7973f3b200b3cc641565aea and /dev/null differ diff --git a/_git_of_git_commit_id/objects/85/ad0f58e6d696488f5cbea3eae136889dfd1e0c b/_git_of_git_commit_id/objects/85/ad0f58e6d696488f5cbea3eae136889dfd1e0c deleted file mode 100644 index d4a15f0..0000000 Binary files a/_git_of_git_commit_id/objects/85/ad0f58e6d696488f5cbea3eae136889dfd1e0c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/85/b54a05e2ecb5363403e4e53b05b063e0c7a7ea b/_git_of_git_commit_id/objects/85/b54a05e2ecb5363403e4e53b05b063e0c7a7ea deleted file mode 100644 index 3854f3c..0000000 Binary files a/_git_of_git_commit_id/objects/85/b54a05e2ecb5363403e4e53b05b063e0c7a7ea and /dev/null differ diff --git a/_git_of_git_commit_id/objects/85/c420bbd9e0d9cce8300d5baca83829c8d888e3 b/_git_of_git_commit_id/objects/85/c420bbd9e0d9cce8300d5baca83829c8d888e3 deleted file mode 100644 index a3f807a..0000000 Binary files a/_git_of_git_commit_id/objects/85/c420bbd9e0d9cce8300d5baca83829c8d888e3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/85/c96c1cba5484ecedefc5b74de7f21f39e4adc9 b/_git_of_git_commit_id/objects/85/c96c1cba5484ecedefc5b74de7f21f39e4adc9 deleted file mode 100644 index 8dec7cd..0000000 Binary files a/_git_of_git_commit_id/objects/85/c96c1cba5484ecedefc5b74de7f21f39e4adc9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/86/179a9767cd2c5d94080b7c077ffe0d23ad145f b/_git_of_git_commit_id/objects/86/179a9767cd2c5d94080b7c077ffe0d23ad145f deleted file mode 100644 index 358fb6b..0000000 Binary files a/_git_of_git_commit_id/objects/86/179a9767cd2c5d94080b7c077ffe0d23ad145f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/86/2317036ca1124840d7a1fa6a7c435b34947eee b/_git_of_git_commit_id/objects/86/2317036ca1124840d7a1fa6a7c435b34947eee deleted file mode 100644 index 6a40323..0000000 Binary files a/_git_of_git_commit_id/objects/86/2317036ca1124840d7a1fa6a7c435b34947eee and /dev/null differ diff --git a/_git_of_git_commit_id/objects/86/b708d3633b4fac95aba5aef49b2aea07ab2524 b/_git_of_git_commit_id/objects/86/b708d3633b4fac95aba5aef49b2aea07ab2524 deleted file mode 100644 index 5d3d029..0000000 Binary files a/_git_of_git_commit_id/objects/86/b708d3633b4fac95aba5aef49b2aea07ab2524 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/86/d27d701eceaa868cc9c0bf77087aefc0d8cf65 b/_git_of_git_commit_id/objects/86/d27d701eceaa868cc9c0bf77087aefc0d8cf65 deleted file mode 100644 index a7d9464..0000000 Binary files a/_git_of_git_commit_id/objects/86/d27d701eceaa868cc9c0bf77087aefc0d8cf65 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/87/11f60c2601030c19c29e467500a1b1c167345c b/_git_of_git_commit_id/objects/87/11f60c2601030c19c29e467500a1b1c167345c deleted file mode 100644 index dd91394..0000000 Binary files a/_git_of_git_commit_id/objects/87/11f60c2601030c19c29e467500a1b1c167345c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/87/67b3af2cf06556ce09015d889a26c97524d282 b/_git_of_git_commit_id/objects/87/67b3af2cf06556ce09015d889a26c97524d282 deleted file mode 100644 index f57d216..0000000 Binary files a/_git_of_git_commit_id/objects/87/67b3af2cf06556ce09015d889a26c97524d282 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/87/87a73a836fd0e6f2cf619cd4521a9d154605b7 b/_git_of_git_commit_id/objects/87/87a73a836fd0e6f2cf619cd4521a9d154605b7 deleted file mode 100644 index c177c4b..0000000 Binary files a/_git_of_git_commit_id/objects/87/87a73a836fd0e6f2cf619cd4521a9d154605b7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/87/8985ab1dd0c062c201da2a47f5bd3365545245 b/_git_of_git_commit_id/objects/87/8985ab1dd0c062c201da2a47f5bd3365545245 deleted file mode 100644 index c9c08b3..0000000 Binary files a/_git_of_git_commit_id/objects/87/8985ab1dd0c062c201da2a47f5bd3365545245 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/87/9802e832db924fe832544e93aecb9f011a7350 b/_git_of_git_commit_id/objects/87/9802e832db924fe832544e93aecb9f011a7350 deleted file mode 100644 index c9e3b84..0000000 Binary files a/_git_of_git_commit_id/objects/87/9802e832db924fe832544e93aecb9f011a7350 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/88/2190afff165cb2953037e958e82af515f55f09 b/_git_of_git_commit_id/objects/88/2190afff165cb2953037e958e82af515f55f09 deleted file mode 100644 index f096995..0000000 Binary files a/_git_of_git_commit_id/objects/88/2190afff165cb2953037e958e82af515f55f09 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/88/adcb5021859e12ff0a5b445578ea1d46ca5bd9 b/_git_of_git_commit_id/objects/88/adcb5021859e12ff0a5b445578ea1d46ca5bd9 deleted file mode 100644 index 6c91abf..0000000 Binary files a/_git_of_git_commit_id/objects/88/adcb5021859e12ff0a5b445578ea1d46ca5bd9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/89/1cbcfa7868ec97689a3aafe5eb02dbc11b3df5 b/_git_of_git_commit_id/objects/89/1cbcfa7868ec97689a3aafe5eb02dbc11b3df5 deleted file mode 100644 index 319a116..0000000 Binary files a/_git_of_git_commit_id/objects/89/1cbcfa7868ec97689a3aafe5eb02dbc11b3df5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/89/6806b057b8a32b0f17f3d44b649c56696a1ce6 b/_git_of_git_commit_id/objects/89/6806b057b8a32b0f17f3d44b649c56696a1ce6 deleted file mode 100644 index cbe797e..0000000 Binary files a/_git_of_git_commit_id/objects/89/6806b057b8a32b0f17f3d44b649c56696a1ce6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/89/afd33075be19d5c514d7667f9f1c7daeef9b67 b/_git_of_git_commit_id/objects/89/afd33075be19d5c514d7667f9f1c7daeef9b67 deleted file mode 100644 index 10b90f5..0000000 Binary files a/_git_of_git_commit_id/objects/89/afd33075be19d5c514d7667f9f1c7daeef9b67 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/89/b44944a34c9c3a96b67e624651acfa0cbd1467 b/_git_of_git_commit_id/objects/89/b44944a34c9c3a96b67e624651acfa0cbd1467 deleted file mode 100644 index 7408878..0000000 Binary files a/_git_of_git_commit_id/objects/89/b44944a34c9c3a96b67e624651acfa0cbd1467 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8a/462951b7578c511f6639ef72ab37aa12cd7e62 b/_git_of_git_commit_id/objects/8a/462951b7578c511f6639ef72ab37aa12cd7e62 deleted file mode 100644 index 5e20cb1..0000000 Binary files a/_git_of_git_commit_id/objects/8a/462951b7578c511f6639ef72ab37aa12cd7e62 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8a/67a9fee3512b9c60820899a865000fbfbe5538 b/_git_of_git_commit_id/objects/8a/67a9fee3512b9c60820899a865000fbfbe5538 deleted file mode 100644 index 419219a..0000000 Binary files a/_git_of_git_commit_id/objects/8a/67a9fee3512b9c60820899a865000fbfbe5538 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8a/c26ed9dd1e3df2b1b31938d32a97c3a159d2eb b/_git_of_git_commit_id/objects/8a/c26ed9dd1e3df2b1b31938d32a97c3a159d2eb deleted file mode 100644 index 0d9d98f..0000000 Binary files a/_git_of_git_commit_id/objects/8a/c26ed9dd1e3df2b1b31938d32a97c3a159d2eb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8a/fcb876fff58d1503eff5f5da984ca2980236a5 b/_git_of_git_commit_id/objects/8a/fcb876fff58d1503eff5f5da984ca2980236a5 deleted file mode 100644 index 9e54f63..0000000 Binary files a/_git_of_git_commit_id/objects/8a/fcb876fff58d1503eff5f5da984ca2980236a5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8b/092a07fcde2fe39dce8b5cd6de2a683fef3ccf b/_git_of_git_commit_id/objects/8b/092a07fcde2fe39dce8b5cd6de2a683fef3ccf deleted file mode 100644 index 93ddd41..0000000 Binary files a/_git_of_git_commit_id/objects/8b/092a07fcde2fe39dce8b5cd6de2a683fef3ccf and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8b/1cc7901fbf57db49e2eb2cbb8e6e5c28f0fdf6 b/_git_of_git_commit_id/objects/8b/1cc7901fbf57db49e2eb2cbb8e6e5c28f0fdf6 deleted file mode 100644 index 56fd3e0..0000000 Binary files a/_git_of_git_commit_id/objects/8b/1cc7901fbf57db49e2eb2cbb8e6e5c28f0fdf6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8b/2a2fe84feaeaba56953d6d4d0d649b3cf755eb b/_git_of_git_commit_id/objects/8b/2a2fe84feaeaba56953d6d4d0d649b3cf755eb deleted file mode 100644 index fe1744d..0000000 --- a/_git_of_git_commit_id/objects/8b/2a2fe84feaeaba56953d6d4d0d649b3cf755eb +++ /dev/null @@ -1,4 +0,0 @@ -x}N@Eiٯ8Q-4T !(=Z;c*g$ u@E;sqnl٨9v'G01n`@"ZCbm -\Y -hSr53ں:2`5#V B  ,ZFXц>CLBg*l%?i+p.ni=Ii;ꬣS, -ɣ|}!2I'T۾Rz+%IƤXPP_[=q uI;j?oS7鵙 \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/8b/4d16d8dbdae30b646b04c4a6311e76b2ab83f8 b/_git_of_git_commit_id/objects/8b/4d16d8dbdae30b646b04c4a6311e76b2ab83f8 deleted file mode 100644 index a71c16e..0000000 Binary files a/_git_of_git_commit_id/objects/8b/4d16d8dbdae30b646b04c4a6311e76b2ab83f8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8b/87bfe2f1665a5ed0bec544e1b3842e3a6e3d05 b/_git_of_git_commit_id/objects/8b/87bfe2f1665a5ed0bec544e1b3842e3a6e3d05 deleted file mode 100644 index 881a559..0000000 Binary files a/_git_of_git_commit_id/objects/8b/87bfe2f1665a5ed0bec544e1b3842e3a6e3d05 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8b/d1ce85516cdc79f32292b84ab6d69017f2e277 b/_git_of_git_commit_id/objects/8b/d1ce85516cdc79f32292b84ab6d69017f2e277 deleted file mode 100644 index 6f2dc85..0000000 Binary files a/_git_of_git_commit_id/objects/8b/d1ce85516cdc79f32292b84ab6d69017f2e277 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8c/3581e366cbef9316e1c7866f6bfdc06d41dd21 b/_git_of_git_commit_id/objects/8c/3581e366cbef9316e1c7866f6bfdc06d41dd21 deleted file mode 100644 index 28635a0..0000000 Binary files a/_git_of_git_commit_id/objects/8c/3581e366cbef9316e1c7866f6bfdc06d41dd21 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8c/447053b2156a1d573523f73c5fdb6571817558 b/_git_of_git_commit_id/objects/8c/447053b2156a1d573523f73c5fdb6571817558 deleted file mode 100644 index 6cd5c9c..0000000 --- a/_git_of_git_commit_id/objects/8c/447053b2156a1d573523f73c5fdb6571817558 +++ /dev/null @@ -1 +0,0 @@ -x-̻JD1m!{J&3䀅+:Y_g&IZk}_@[_`APF-͹r%Ċ='($4bǒ$FeHmZgۼ=v~ޞ/HRD\H8Ze-d(33鰷p31yx>넗HP )0Ï bѦ\jKfخ.߱Z:nM_gGBSX'R[pr ;OG봲38~7MW \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/8c/4c1d9107d115cb77b7df142475bf9427edecac b/_git_of_git_commit_id/objects/8c/4c1d9107d115cb77b7df142475bf9427edecac deleted file mode 100644 index 9ce54f2..0000000 Binary files a/_git_of_git_commit_id/objects/8c/4c1d9107d115cb77b7df142475bf9427edecac and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8c/7578d885cf26b8437fba4b17c4f081b359afee b/_git_of_git_commit_id/objects/8c/7578d885cf26b8437fba4b17c4f081b359afee deleted file mode 100644 index 3f986b7..0000000 Binary files a/_git_of_git_commit_id/objects/8c/7578d885cf26b8437fba4b17c4f081b359afee and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8c/8510d2dc96ded4850f3430085db628875bf4a5 b/_git_of_git_commit_id/objects/8c/8510d2dc96ded4850f3430085db628875bf4a5 deleted file mode 100644 index 4a4fd7d..0000000 Binary files a/_git_of_git_commit_id/objects/8c/8510d2dc96ded4850f3430085db628875bf4a5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8c/b3a84241b17517e0264945f10a66fba77726f8 b/_git_of_git_commit_id/objects/8c/b3a84241b17517e0264945f10a66fba77726f8 deleted file mode 100644 index 0ec4c20..0000000 Binary files a/_git_of_git_commit_id/objects/8c/b3a84241b17517e0264945f10a66fba77726f8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8c/dbbc98f32fb6aecd07ff8a3e604abfb5ff11eb b/_git_of_git_commit_id/objects/8c/dbbc98f32fb6aecd07ff8a3e604abfb5ff11eb deleted file mode 100644 index e8e3ee8..0000000 Binary files a/_git_of_git_commit_id/objects/8c/dbbc98f32fb6aecd07ff8a3e604abfb5ff11eb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8c/f669848038762904c69dee0e23ba243175d77d b/_git_of_git_commit_id/objects/8c/f669848038762904c69dee0e23ba243175d77d deleted file mode 100644 index 8eed7de..0000000 Binary files a/_git_of_git_commit_id/objects/8c/f669848038762904c69dee0e23ba243175d77d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8d/1257fcb8253c7b7eec86ed9a6de7a0f7a43cf3 b/_git_of_git_commit_id/objects/8d/1257fcb8253c7b7eec86ed9a6de7a0f7a43cf3 deleted file mode 100644 index 8b9496a..0000000 Binary files a/_git_of_git_commit_id/objects/8d/1257fcb8253c7b7eec86ed9a6de7a0f7a43cf3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8d/3dd3139d9e7b4e831b7416743c2d160d73c52f b/_git_of_git_commit_id/objects/8d/3dd3139d9e7b4e831b7416743c2d160d73c52f deleted file mode 100644 index f447146..0000000 Binary files a/_git_of_git_commit_id/objects/8d/3dd3139d9e7b4e831b7416743c2d160d73c52f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8d/547676cddcd3351c522ec162762724b2e8781f b/_git_of_git_commit_id/objects/8d/547676cddcd3351c522ec162762724b2e8781f deleted file mode 100644 index cc75e82..0000000 Binary files a/_git_of_git_commit_id/objects/8d/547676cddcd3351c522ec162762724b2e8781f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8d/8173cf0e4a332ddd83179d36b18f1ea2b3c055 b/_git_of_git_commit_id/objects/8d/8173cf0e4a332ddd83179d36b18f1ea2b3c055 deleted file mode 100644 index ac3d08e..0000000 Binary files a/_git_of_git_commit_id/objects/8d/8173cf0e4a332ddd83179d36b18f1ea2b3c055 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8d/8d0f3e0fa07770832b48f6eb643a951b7a0755 b/_git_of_git_commit_id/objects/8d/8d0f3e0fa07770832b48f6eb643a951b7a0755 deleted file mode 100644 index 123407b..0000000 --- a/_git_of_git_commit_id/objects/8d/8d0f3e0fa07770832b48f6eb643a951b7a0755 +++ /dev/null @@ -1,2 +0,0 @@ -x5-KDA[6j0=sL0 bs),AX F‚`3ns -k U`oZlM djUbm}wB9~ևۯK6DBIMNUcHq1pWG٥A{͔Q!Hg-:[S8]}tֻ?_'BF(8@Q>O۶>.w;?V \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/8d/ec7cd0a8f635f6e5478bfd6486f3ffe380b167 b/_git_of_git_commit_id/objects/8d/ec7cd0a8f635f6e5478bfd6486f3ffe380b167 deleted file mode 100644 index c0b9768..0000000 Binary files a/_git_of_git_commit_id/objects/8d/ec7cd0a8f635f6e5478bfd6486f3ffe380b167 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8e/2dc9b2791ea597027eda96bda70b915a2f9640 b/_git_of_git_commit_id/objects/8e/2dc9b2791ea597027eda96bda70b915a2f9640 deleted file mode 100644 index 623f472..0000000 Binary files a/_git_of_git_commit_id/objects/8e/2dc9b2791ea597027eda96bda70b915a2f9640 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8e/572bdbaae94d3dc30373a041172cefdc456950 b/_git_of_git_commit_id/objects/8e/572bdbaae94d3dc30373a041172cefdc456950 deleted file mode 100644 index 72067cb..0000000 Binary files a/_git_of_git_commit_id/objects/8e/572bdbaae94d3dc30373a041172cefdc456950 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8e/c5f6ba841e8a65d1f15be7560f53f730e5c933 b/_git_of_git_commit_id/objects/8e/c5f6ba841e8a65d1f15be7560f53f730e5c933 deleted file mode 100644 index 35dbd88..0000000 Binary files a/_git_of_git_commit_id/objects/8e/c5f6ba841e8a65d1f15be7560f53f730e5c933 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8e/d1a3cc7ea7449cbf9eada18d42433efb43387c b/_git_of_git_commit_id/objects/8e/d1a3cc7ea7449cbf9eada18d42433efb43387c deleted file mode 100644 index 7577ed2..0000000 Binary files a/_git_of_git_commit_id/objects/8e/d1a3cc7ea7449cbf9eada18d42433efb43387c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8e/ed7de09afaf4ad524c509f6b778f9fe74de288 b/_git_of_git_commit_id/objects/8e/ed7de09afaf4ad524c509f6b778f9fe74de288 deleted file mode 100644 index 769db9f..0000000 Binary files a/_git_of_git_commit_id/objects/8e/ed7de09afaf4ad524c509f6b778f9fe74de288 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8e/f22f5eb8a7096316bac5f928beee667da5d105 b/_git_of_git_commit_id/objects/8e/f22f5eb8a7096316bac5f928beee667da5d105 deleted file mode 100644 index a9146a2..0000000 Binary files a/_git_of_git_commit_id/objects/8e/f22f5eb8a7096316bac5f928beee667da5d105 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8f/078125c202ba135f60a6c1ce7fdc9c6a72c5f1 b/_git_of_git_commit_id/objects/8f/078125c202ba135f60a6c1ce7fdc9c6a72c5f1 deleted file mode 100644 index d584059..0000000 Binary files a/_git_of_git_commit_id/objects/8f/078125c202ba135f60a6c1ce7fdc9c6a72c5f1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/8f/143b9428b7dad540e811c90556c17e7bb7c28d b/_git_of_git_commit_id/objects/8f/143b9428b7dad540e811c90556c17e7bb7c28d deleted file mode 100644 index 9c4c222..0000000 --- a/_git_of_git_commit_id/objects/8f/143b9428b7dad540e811c90556c17e7bb7c28d +++ /dev/null @@ -1 +0,0 @@ -x+)JMU041c040031Qp,q,LJ,Kd5'p5C:֭fAmyUo"P1oc6rMO2 hh$qA-d=MɘCghxXDNJ278S'q`wfaiUrG,= @-5j%ť zPQ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/91/1437ed0d38e5034c6aef6dd4bf037189bfe23e b/_git_of_git_commit_id/objects/91/1437ed0d38e5034c6aef6dd4bf037189bfe23e deleted file mode 100644 index 098d479..0000000 Binary files a/_git_of_git_commit_id/objects/91/1437ed0d38e5034c6aef6dd4bf037189bfe23e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/91/2ddd2f6a5a4a9195c8a7d1e78be1b95ccea2fd b/_git_of_git_commit_id/objects/91/2ddd2f6a5a4a9195c8a7d1e78be1b95ccea2fd deleted file mode 100644 index f8ebc72..0000000 Binary files a/_git_of_git_commit_id/objects/91/2ddd2f6a5a4a9195c8a7d1e78be1b95ccea2fd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/91/ab546cf04071726eaac37103fa54371d3ea796 b/_git_of_git_commit_id/objects/91/ab546cf04071726eaac37103fa54371d3ea796 deleted file mode 100644 index d63116c..0000000 Binary files a/_git_of_git_commit_id/objects/91/ab546cf04071726eaac37103fa54371d3ea796 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/91/ccdd53b2da1a34a9a2e9f85d071ec2462d014d b/_git_of_git_commit_id/objects/91/ccdd53b2da1a34a9a2e9f85d071ec2462d014d deleted file mode 100644 index a52a8a3..0000000 Binary files a/_git_of_git_commit_id/objects/91/ccdd53b2da1a34a9a2e9f85d071ec2462d014d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/91/e51dc1181dfd7e2c8f8e892967a52ab7f4678e b/_git_of_git_commit_id/objects/91/e51dc1181dfd7e2c8f8e892967a52ab7f4678e deleted file mode 100644 index 566dead..0000000 Binary files a/_git_of_git_commit_id/objects/91/e51dc1181dfd7e2c8f8e892967a52ab7f4678e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/91/fcba9daff44c4280742342936eeb9eb1826b1d b/_git_of_git_commit_id/objects/91/fcba9daff44c4280742342936eeb9eb1826b1d deleted file mode 100644 index 930e446..0000000 Binary files a/_git_of_git_commit_id/objects/91/fcba9daff44c4280742342936eeb9eb1826b1d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/92/1bd2d16cadcc45d47675f5180e726e975532dc b/_git_of_git_commit_id/objects/92/1bd2d16cadcc45d47675f5180e726e975532dc deleted file mode 100644 index 89afd33..0000000 Binary files a/_git_of_git_commit_id/objects/92/1bd2d16cadcc45d47675f5180e726e975532dc and /dev/null differ diff --git a/_git_of_git_commit_id/objects/92/337cc4ac3e1095bd2e67b47192475c2c0aa25d b/_git_of_git_commit_id/objects/92/337cc4ac3e1095bd2e67b47192475c2c0aa25d deleted file mode 100644 index d5fe2d7..0000000 Binary files a/_git_of_git_commit_id/objects/92/337cc4ac3e1095bd2e67b47192475c2c0aa25d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/92/3c6c254a5720941892f73089d6c8cd7bfba260 b/_git_of_git_commit_id/objects/92/3c6c254a5720941892f73089d6c8cd7bfba260 deleted file mode 100644 index 94368d4..0000000 Binary files a/_git_of_git_commit_id/objects/92/3c6c254a5720941892f73089d6c8cd7bfba260 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/92/6a635ceb67ba6e60669e3a926b8316713f5cfa b/_git_of_git_commit_id/objects/92/6a635ceb67ba6e60669e3a926b8316713f5cfa deleted file mode 100644 index 0858213..0000000 Binary files a/_git_of_git_commit_id/objects/92/6a635ceb67ba6e60669e3a926b8316713f5cfa and /dev/null differ diff --git a/_git_of_git_commit_id/objects/92/966e9410e192f79fb2efd292a8e4e851c5f728 b/_git_of_git_commit_id/objects/92/966e9410e192f79fb2efd292a8e4e851c5f728 deleted file mode 100644 index c65ff9f..0000000 Binary files a/_git_of_git_commit_id/objects/92/966e9410e192f79fb2efd292a8e4e851c5f728 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/92/c7ba5faaca535f0156314f2f98a0cef943edbd b/_git_of_git_commit_id/objects/92/c7ba5faaca535f0156314f2f98a0cef943edbd deleted file mode 100644 index 5e073a1..0000000 Binary files a/_git_of_git_commit_id/objects/92/c7ba5faaca535f0156314f2f98a0cef943edbd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/92/d96560028e8287220276b242b4d9285ac9d11d b/_git_of_git_commit_id/objects/92/d96560028e8287220276b242b4d9285ac9d11d deleted file mode 100644 index 942e99e..0000000 Binary files a/_git_of_git_commit_id/objects/92/d96560028e8287220276b242b4d9285ac9d11d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/92/fe0f7ad02de0025e48d9adf49d06808ee4bf77 b/_git_of_git_commit_id/objects/92/fe0f7ad02de0025e48d9adf49d06808ee4bf77 deleted file mode 100644 index 421acea..0000000 Binary files a/_git_of_git_commit_id/objects/92/fe0f7ad02de0025e48d9adf49d06808ee4bf77 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/93/20ebc548b11dd2a262c9d5f7ef89d6aba98291 b/_git_of_git_commit_id/objects/93/20ebc548b11dd2a262c9d5f7ef89d6aba98291 deleted file mode 100644 index 7f8c974..0000000 Binary files a/_git_of_git_commit_id/objects/93/20ebc548b11dd2a262c9d5f7ef89d6aba98291 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/93/eef30b2702eba09c5fafb69707bd17e7f9f34f b/_git_of_git_commit_id/objects/93/eef30b2702eba09c5fafb69707bd17e7f9f34f deleted file mode 100644 index 88b6732..0000000 Binary files a/_git_of_git_commit_id/objects/93/eef30b2702eba09c5fafb69707bd17e7f9f34f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/93/f54ffe08ca902fd0e019f15ef77df14d320ab7 b/_git_of_git_commit_id/objects/93/f54ffe08ca902fd0e019f15ef77df14d320ab7 deleted file mode 100644 index 0f8d84d..0000000 Binary files a/_git_of_git_commit_id/objects/93/f54ffe08ca902fd0e019f15ef77df14d320ab7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/94/1ed07219e6c7f2fb241f5c0415e5959b6970fc b/_git_of_git_commit_id/objects/94/1ed07219e6c7f2fb241f5c0415e5959b6970fc deleted file mode 100644 index ee8805d..0000000 Binary files a/_git_of_git_commit_id/objects/94/1ed07219e6c7f2fb241f5c0415e5959b6970fc and /dev/null differ diff --git a/_git_of_git_commit_id/objects/94/2e99e9b360c4cdbc96c4810e5a5dbb61212c9b b/_git_of_git_commit_id/objects/94/2e99e9b360c4cdbc96c4810e5a5dbb61212c9b deleted file mode 100644 index 5390438..0000000 Binary files a/_git_of_git_commit_id/objects/94/2e99e9b360c4cdbc96c4810e5a5dbb61212c9b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/94/368d432f70f48519ec8ff667caaf0b9bbf5d8d b/_git_of_git_commit_id/objects/94/368d432f70f48519ec8ff667caaf0b9bbf5d8d deleted file mode 100644 index 3b72030..0000000 Binary files a/_git_of_git_commit_id/objects/94/368d432f70f48519ec8ff667caaf0b9bbf5d8d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/94/4e5230db336be8a3b43d982373a22acc48d833 b/_git_of_git_commit_id/objects/94/4e5230db336be8a3b43d982373a22acc48d833 deleted file mode 100644 index 66eddfe..0000000 Binary files a/_git_of_git_commit_id/objects/94/4e5230db336be8a3b43d982373a22acc48d833 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/94/4f86523f4de211f5a0bf333e6be298c10e6d64 b/_git_of_git_commit_id/objects/94/4f86523f4de211f5a0bf333e6be298c10e6d64 deleted file mode 100644 index 43fb9b3..0000000 Binary files a/_git_of_git_commit_id/objects/94/4f86523f4de211f5a0bf333e6be298c10e6d64 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/94/650e8110e2ff1ab56e8fe7a9e6a9cd783abcf4 b/_git_of_git_commit_id/objects/94/650e8110e2ff1ab56e8fe7a9e6a9cd783abcf4 deleted file mode 100644 index dd88fb0..0000000 Binary files a/_git_of_git_commit_id/objects/94/650e8110e2ff1ab56e8fe7a9e6a9cd783abcf4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/94/8468fcdd6d0ecef919ad62e380e92908a7eaf5 b/_git_of_git_commit_id/objects/94/8468fcdd6d0ecef919ad62e380e92908a7eaf5 deleted file mode 100644 index b78b3af..0000000 Binary files a/_git_of_git_commit_id/objects/94/8468fcdd6d0ecef919ad62e380e92908a7eaf5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/94/b81a3ea9cadbd263139924d5a589f8343d8dd5 b/_git_of_git_commit_id/objects/94/b81a3ea9cadbd263139924d5a589f8343d8dd5 deleted file mode 100644 index b87161d..0000000 --- a/_git_of_git_commit_id/objects/94/b81a3ea9cadbd263139924d5a589f8343d8dd5 +++ /dev/null @@ -1,3 +0,0 @@ -x-ίJDA\}A[L̜,M3g,k7 ^AQ T6mQ ogT -)(QI aJ*BLbn;haܪdIjY`Q4*9,)q1~|u?>l7B: -uYX)S"o-X\ o>:3/ٵ^ouxnɺ*L( $XG]|߃ϓw'p}ϹZ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/94/e10500404e957d85cba77fc6650bfff1f9738f b/_git_of_git_commit_id/objects/94/e10500404e957d85cba77fc6650bfff1f9738f deleted file mode 100644 index d6c0e5b..0000000 Binary files a/_git_of_git_commit_id/objects/94/e10500404e957d85cba77fc6650bfff1f9738f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/94/efecc500a73df9c27b450960676721ec803752 b/_git_of_git_commit_id/objects/94/efecc500a73df9c27b450960676721ec803752 deleted file mode 100644 index 8fc6298..0000000 Binary files a/_git_of_git_commit_id/objects/94/efecc500a73df9c27b450960676721ec803752 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/95/592c9b6fb3dca0bf906440574369815c590b87 b/_git_of_git_commit_id/objects/95/592c9b6fb3dca0bf906440574369815c590b87 deleted file mode 100644 index c7a9410..0000000 Binary files a/_git_of_git_commit_id/objects/95/592c9b6fb3dca0bf906440574369815c590b87 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/95/aa47f03be22fc4dacde1664725fc437fb5152c b/_git_of_git_commit_id/objects/95/aa47f03be22fc4dacde1664725fc437fb5152c deleted file mode 100644 index 4d39b49..0000000 Binary files a/_git_of_git_commit_id/objects/95/aa47f03be22fc4dacde1664725fc437fb5152c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/95/ab69268b76d13dbb5119f35c71700a8a5aee76 b/_git_of_git_commit_id/objects/95/ab69268b76d13dbb5119f35c71700a8a5aee76 deleted file mode 100644 index f56ee27..0000000 Binary files a/_git_of_git_commit_id/objects/95/ab69268b76d13dbb5119f35c71700a8a5aee76 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/95/bdc6dd21c867d1222cfb00752873052cd89168 b/_git_of_git_commit_id/objects/95/bdc6dd21c867d1222cfb00752873052cd89168 deleted file mode 100644 index 9edcdea..0000000 Binary files a/_git_of_git_commit_id/objects/95/bdc6dd21c867d1222cfb00752873052cd89168 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/96/416c95a78391178da1b7a4ab4d34a92cc4321d b/_git_of_git_commit_id/objects/96/416c95a78391178da1b7a4ab4d34a92cc4321d deleted file mode 100644 index eae1aaa..0000000 Binary files a/_git_of_git_commit_id/objects/96/416c95a78391178da1b7a4ab4d34a92cc4321d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/96/8228d72b998439116eb01ef0562c98de42b21f b/_git_of_git_commit_id/objects/96/8228d72b998439116eb01ef0562c98de42b21f deleted file mode 100644 index 692be46..0000000 Binary files a/_git_of_git_commit_id/objects/96/8228d72b998439116eb01ef0562c98de42b21f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/96/a4a5a6adc49138b6bc2c72f07a8fdb88ca1746 b/_git_of_git_commit_id/objects/96/a4a5a6adc49138b6bc2c72f07a8fdb88ca1746 deleted file mode 100644 index 1f00198..0000000 Binary files a/_git_of_git_commit_id/objects/96/a4a5a6adc49138b6bc2c72f07a8fdb88ca1746 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/96/bffbb27d4af1a80ca5e0a1a6c6be1b0d6d11c2 b/_git_of_git_commit_id/objects/96/bffbb27d4af1a80ca5e0a1a6c6be1b0d6d11c2 deleted file mode 100644 index ec802b7..0000000 Binary files a/_git_of_git_commit_id/objects/96/bffbb27d4af1a80ca5e0a1a6c6be1b0d6d11c2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/96/ca8c71dc1aa8c95abe1af447e80def30665d4e b/_git_of_git_commit_id/objects/96/ca8c71dc1aa8c95abe1af447e80def30665d4e deleted file mode 100644 index 6faebc1..0000000 Binary files a/_git_of_git_commit_id/objects/96/ca8c71dc1aa8c95abe1af447e80def30665d4e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/96/fba8a5d85b906b2bb3044e9a34f6e8b15211e2 b/_git_of_git_commit_id/objects/96/fba8a5d85b906b2bb3044e9a34f6e8b15211e2 deleted file mode 100644 index 31c9eb7..0000000 Binary files a/_git_of_git_commit_id/objects/96/fba8a5d85b906b2bb3044e9a34f6e8b15211e2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/97/1ea0a502e29e4fdea38d8388188e6533d63731 b/_git_of_git_commit_id/objects/97/1ea0a502e29e4fdea38d8388188e6533d63731 deleted file mode 100644 index b308bf0..0000000 Binary files a/_git_of_git_commit_id/objects/97/1ea0a502e29e4fdea38d8388188e6533d63731 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/97/473b450763e7d3e3511f533b26157456f121fe b/_git_of_git_commit_id/objects/97/473b450763e7d3e3511f533b26157456f121fe deleted file mode 100644 index 3c4d332..0000000 Binary files a/_git_of_git_commit_id/objects/97/473b450763e7d3e3511f533b26157456f121fe and /dev/null differ diff --git a/_git_of_git_commit_id/objects/97/5e777bc909ac5ea3e29506b5d1abe271e1d56d b/_git_of_git_commit_id/objects/97/5e777bc909ac5ea3e29506b5d1abe271e1d56d deleted file mode 100644 index d346916..0000000 Binary files a/_git_of_git_commit_id/objects/97/5e777bc909ac5ea3e29506b5d1abe271e1d56d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/97/6f30525b39f56f0eb012f44caa95b4f68e1a8e b/_git_of_git_commit_id/objects/97/6f30525b39f56f0eb012f44caa95b4f68e1a8e deleted file mode 100644 index 8fe9844..0000000 Binary files a/_git_of_git_commit_id/objects/97/6f30525b39f56f0eb012f44caa95b4f68e1a8e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/97/73ed4cb298f6883adcd1269de5c9f97fc6d8fe b/_git_of_git_commit_id/objects/97/73ed4cb298f6883adcd1269de5c9f97fc6d8fe deleted file mode 100644 index d51d80a..0000000 Binary files a/_git_of_git_commit_id/objects/97/73ed4cb298f6883adcd1269de5c9f97fc6d8fe and /dev/null differ diff --git a/_git_of_git_commit_id/objects/97/af0c1ab8335fe3a01be73d8b7b3eebf0ceab00 b/_git_of_git_commit_id/objects/97/af0c1ab8335fe3a01be73d8b7b3eebf0ceab00 deleted file mode 100644 index 14afc9d..0000000 Binary files a/_git_of_git_commit_id/objects/97/af0c1ab8335fe3a01be73d8b7b3eebf0ceab00 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/97/e4b5c56dd0beb0bb8b16a16f99021dee7c7b75 b/_git_of_git_commit_id/objects/97/e4b5c56dd0beb0bb8b16a16f99021dee7c7b75 deleted file mode 100644 index fcbb6b5..0000000 --- a/_git_of_git_commit_id/objects/97/e4b5c56dd0beb0bb8b16a16f99021dee7c7b75 +++ /dev/null @@ -1,3 +0,0 @@ -xZmo6W 22+e֡nq%f"I9q=GQ䗦l,w;R=b?|o -ߊdE od^~319('O1S1f:.)[_^Vwx93*ʝ4HyTʍrr﹕$ 1lr#f+*a}, 2'{'Tܾ0JT !` *rr~o17hWٝ19aߔr?6 cmX\QM7{q8Nf^rQ*E~Mz(G)p0E#eʝ$Z :tN?S5VY\'g>&^jZ)3*a"ѤNbcG]'D[#:[[YcT(8BT}cQF ESӸ2'tuS,kܓXiV%S]ɥ:eAtN;L: !c2/ٺō0/*RY?=p?GS&5CcFHDJv?cpr9|6X jzém}+p؍Z*ZZʜ.ɹ\'Z0.P!u>R04%KtIP&` -+kYVs3| -{cTDO*9.ĭΣ.@iWyGhdlwG%Bػx.2(e&T;sS(Ik_q"p@q;Sx~ϴ, PphHٕhaS>O*]0㏐Mqip>#|?߶}/P+WQDMfqBPD@y5f 3,@RPࡇ*pbZQW%w}G:}?|j=y؟`&p|pT=}s]:0+A3|=g#j..R~&V7/i+ kRf론\CC@SM[&*VfEQ2Q&ꡥHoPE.[҈,Gδo6S?ẉUp^`E]FRQ\'k;&2KbC2z@AЖ :ť=饏Їl+,z% \Եp쾁p)l4'RqKS)3!g?'_մV1. < \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/9b/2a330d37ff3935e2e3019595d30306d89c5a9f b/_git_of_git_commit_id/objects/9b/2a330d37ff3935e2e3019595d30306d89c5a9f deleted file mode 100644 index f466c88..0000000 Binary files a/_git_of_git_commit_id/objects/9b/2a330d37ff3935e2e3019595d30306d89c5a9f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/9b/5d2f39e62e3aa545e55f78efcc789809735204 b/_git_of_git_commit_id/objects/9b/5d2f39e62e3aa545e55f78efcc789809735204 deleted file mode 100644 index 4c67d92..0000000 Binary files a/_git_of_git_commit_id/objects/9b/5d2f39e62e3aa545e55f78efcc789809735204 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/9b/bbfa9677ea3badae80f9d7b7e429a8549a50e7 b/_git_of_git_commit_id/objects/9b/bbfa9677ea3badae80f9d7b7e429a8549a50e7 deleted file mode 100644 index da508e4..0000000 Binary files a/_git_of_git_commit_id/objects/9b/bbfa9677ea3badae80f9d7b7e429a8549a50e7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/9b/c3e2194c6bffb63c9225cea817505fd24354db b/_git_of_git_commit_id/objects/9b/c3e2194c6bffb63c9225cea817505fd24354db deleted file mode 100644 index ed347e1..0000000 Binary files a/_git_of_git_commit_id/objects/9b/c3e2194c6bffb63c9225cea817505fd24354db and /dev/null differ diff --git a/_git_of_git_commit_id/objects/9b/eb1e0603aac8981c136191f05f3b58851d1b08 b/_git_of_git_commit_id/objects/9b/eb1e0603aac8981c136191f05f3b58851d1b08 deleted file mode 100644 index bc39961..0000000 Binary files a/_git_of_git_commit_id/objects/9b/eb1e0603aac8981c136191f05f3b58851d1b08 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/9b/f5b5e4bb0705f636f5360afb3bc69b7e8cd61d b/_git_of_git_commit_id/objects/9b/f5b5e4bb0705f636f5360afb3bc69b7e8cd61d deleted file mode 100644 index 6c413d7..0000000 Binary files a/_git_of_git_commit_id/objects/9b/f5b5e4bb0705f636f5360afb3bc69b7e8cd61d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/9c/03ac83369f5925fe1725aa867237ec86f763c1 b/_git_of_git_commit_id/objects/9c/03ac83369f5925fe1725aa867237ec86f763c1 deleted file mode 100644 index 40216fb..0000000 Binary files a/_git_of_git_commit_id/objects/9c/03ac83369f5925fe1725aa867237ec86f763c1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/9c/292f83c83b3ab597d81e0ddbe008264993bb2e b/_git_of_git_commit_id/objects/9c/292f83c83b3ab597d81e0ddbe008264993bb2e deleted file mode 100644 index 0c7e056..0000000 Binary files a/_git_of_git_commit_id/objects/9c/292f83c83b3ab597d81e0ddbe008264993bb2e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/9c/4c222b378c52df5692fd16cca425ceda7d5353 b/_git_of_git_commit_id/objects/9c/4c222b378c52df5692fd16cca425ceda7d5353 deleted file mode 100644 index dccf88d..0000000 Binary files a/_git_of_git_commit_id/objects/9c/4c222b378c52df5692fd16cca425ceda7d5353 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/9c/722a85b54207a71edb5cfebcc1b4379a6408cd b/_git_of_git_commit_id/objects/9c/722a85b54207a71edb5cfebcc1b4379a6408cd deleted file mode 100644 index e0109a2..0000000 Binary files a/_git_of_git_commit_id/objects/9c/722a85b54207a71edb5cfebcc1b4379a6408cd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/9c/757e282456e01786bfe09c9d3e65ac9fe6c67b b/_git_of_git_commit_id/objects/9c/757e282456e01786bfe09c9d3e65ac9fe6c67b deleted file mode 100644 index 2bea3b1..0000000 Binary files a/_git_of_git_commit_id/objects/9c/757e282456e01786bfe09c9d3e65ac9fe6c67b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/9c/8906f973c49acf0757ada0766d192edbd9bf9c b/_git_of_git_commit_id/objects/9c/8906f973c49acf0757ada0766d192edbd9bf9c deleted file mode 100644 index cec4999..0000000 Binary files a/_git_of_git_commit_id/objects/9c/8906f973c49acf0757ada0766d192edbd9bf9c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/9c/92e791afd66db510ac9325aacd655d89a0197f b/_git_of_git_commit_id/objects/9c/92e791afd66db510ac9325aacd655d89a0197f deleted file mode 100644 index 864d061..0000000 --- a/_git_of_git_commit_id/objects/9c/92e791afd66db510ac9325aacd655d89a0197f +++ /dev/null @@ -1,3 +0,0 @@ -x5/KAC1,Z\Դ瞻{Y -7ܿb{ 6/%A-Q a)b6p ʹ kZ H*hBR՘V2;\R5CIbɞ=hP$/G_uaK¿(B.Sf$,͍D1=7gV5?89 -vJ\ `p3b(^Soݭ\c_] \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/9c/b3ade618aa2841dc080c13d3fa9cff83c005a9 b/_git_of_git_commit_id/objects/9c/b3ade618aa2841dc080c13d3fa9cff83c005a9 deleted file mode 100644 index ba1f37e..0000000 --- a/_git_of_git_commit_id/objects/9c/b3ade618aa2841dc080c13d3fa9cff83c005a9 +++ /dev/null @@ -1,3 +0,0 @@ -x}N0 `} -VB`&aLJ43#M-w'ƵJۣ櫅ՈVt,޻W#L~h i@;p7*25&n0 z[m8C ΃sd3}FO=&t -WYD&&IO,d8%LnS|i?kݺTNO#_WbCە:4H> l]T%*˶$|m.rR ^ӝS72\0 \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/a3/c2a454aa916c386243f3e289397c5fe4c23cbe b/_git_of_git_commit_id/objects/a3/c2a454aa916c386243f3e289397c5fe4c23cbe deleted file mode 100644 index 2d84d98..0000000 Binary files a/_git_of_git_commit_id/objects/a3/c2a454aa916c386243f3e289397c5fe4c23cbe and /dev/null differ diff --git a/_git_of_git_commit_id/objects/a3/f7f5d6a71c53620ad28eaeffa88408bc3a763c b/_git_of_git_commit_id/objects/a3/f7f5d6a71c53620ad28eaeffa88408bc3a763c deleted file mode 100644 index f2c1d89..0000000 --- a/_git_of_git_commit_id/objects/a3/f7f5d6a71c53620ad28eaeffa88408bc3a763c +++ /dev/null @@ -1 +0,0 @@ -xKn!DlA3EG9AMO;9~Vne+Ws$ǧщ)Ѭb%~RFO8- Zfl2I4(DXg$5N-'75d9(i;u2%1 -uq2=>.Gcʡ<8=\ 6(G(6v{;$J}G؎1/TSA \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/b0/46330cfe9fb92b53fbf6a01b089c29270c4bf4 b/_git_of_git_commit_id/objects/b0/46330cfe9fb92b53fbf6a01b089c29270c4bf4 deleted file mode 100644 index 7d3330b..0000000 Binary files a/_git_of_git_commit_id/objects/b0/46330cfe9fb92b53fbf6a01b089c29270c4bf4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b0/57b90c7f0520c2771441e32a615538e6ad14be b/_git_of_git_commit_id/objects/b0/57b90c7f0520c2771441e32a615538e6ad14be deleted file mode 100644 index e2c0579..0000000 Binary files a/_git_of_git_commit_id/objects/b0/57b90c7f0520c2771441e32a615538e6ad14be and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b0/b94f4f90d96a5f1738080509c3680d87cd137f b/_git_of_git_commit_id/objects/b0/b94f4f90d96a5f1738080509c3680d87cd137f deleted file mode 100644 index 98d91e1..0000000 Binary files a/_git_of_git_commit_id/objects/b0/b94f4f90d96a5f1738080509c3680d87cd137f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b0/d3aa7ca5c701c48b680f4b9e39d146bae78bb1 b/_git_of_git_commit_id/objects/b0/d3aa7ca5c701c48b680f4b9e39d146bae78bb1 deleted file mode 100644 index 90ac489..0000000 Binary files a/_git_of_git_commit_id/objects/b0/d3aa7ca5c701c48b680f4b9e39d146bae78bb1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b1/15368e183e6397766fe92c8b9dacf33bf83c44 b/_git_of_git_commit_id/objects/b1/15368e183e6397766fe92c8b9dacf33bf83c44 deleted file mode 100644 index 26b3026..0000000 Binary files a/_git_of_git_commit_id/objects/b1/15368e183e6397766fe92c8b9dacf33bf83c44 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b1/31db0af9fa42d45843f843d2f46f41b63367a4 b/_git_of_git_commit_id/objects/b1/31db0af9fa42d45843f843d2f46f41b63367a4 deleted file mode 100644 index c6c92b8..0000000 Binary files a/_git_of_git_commit_id/objects/b1/31db0af9fa42d45843f843d2f46f41b63367a4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b1/4078e898feb010022bcccd2ea923d3ab53e861 b/_git_of_git_commit_id/objects/b1/4078e898feb010022bcccd2ea923d3ab53e861 deleted file mode 100644 index 98d094c..0000000 Binary files a/_git_of_git_commit_id/objects/b1/4078e898feb010022bcccd2ea923d3ab53e861 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b1/540bd4dd056351cd75b9f48695c7d2d1c2af3b b/_git_of_git_commit_id/objects/b1/540bd4dd056351cd75b9f48695c7d2d1c2af3b deleted file mode 100644 index f1580fc..0000000 Binary files a/_git_of_git_commit_id/objects/b1/540bd4dd056351cd75b9f48695c7d2d1c2af3b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b1/9c5bb21c778f4f3c2c1f66de96615e17aaf70a b/_git_of_git_commit_id/objects/b1/9c5bb21c778f4f3c2c1f66de96615e17aaf70a deleted file mode 100644 index a0d0118..0000000 Binary files a/_git_of_git_commit_id/objects/b1/9c5bb21c778f4f3c2c1f66de96615e17aaf70a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b1/d60ec0e7b0795d7ac7ad3656bc1c29558f96de b/_git_of_git_commit_id/objects/b1/d60ec0e7b0795d7ac7ad3656bc1c29558f96de deleted file mode 100644 index 1c391a7..0000000 Binary files a/_git_of_git_commit_id/objects/b1/d60ec0e7b0795d7ac7ad3656bc1c29558f96de and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b1/f187c2e9acaba942639bca90a63c5b4f058967 b/_git_of_git_commit_id/objects/b1/f187c2e9acaba942639bca90a63c5b4f058967 deleted file mode 100644 index 59faa1e..0000000 --- a/_git_of_git_commit_id/objects/b1/f187c2e9acaba942639bca90a63c5b4f058967 +++ /dev/null @@ -1,2 +0,0 @@ -x}N0E⯸U7F  uGv:-beOh q;wfΙk6{]5ƅ&[5S3<N8,r\㓒Z-px em -cQKk%ЅY{xY<<uȢe,N(i] h#qLN p&p񽓔AAROli1uA*?%f*&TK֙dJ( jzk&Znãb.iGKjTG [ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/b2/07b15422bd92c76e0f0f0eb47a92968890239d b/_git_of_git_commit_id/objects/b2/07b15422bd92c76e0f0f0eb47a92968890239d deleted file mode 100644 index aac9ecf..0000000 Binary files a/_git_of_git_commit_id/objects/b2/07b15422bd92c76e0f0f0eb47a92968890239d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b2/1e8845cbf0ca79e4fb84f526c5b845b55368ef b/_git_of_git_commit_id/objects/b2/1e8845cbf0ca79e4fb84f526c5b845b55368ef deleted file mode 100644 index ad5c90d..0000000 Binary files a/_git_of_git_commit_id/objects/b2/1e8845cbf0ca79e4fb84f526c5b845b55368ef and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b2/287e23d9aa0b70442ca4c33bc9c5d75a33b873 b/_git_of_git_commit_id/objects/b2/287e23d9aa0b70442ca4c33bc9c5d75a33b873 deleted file mode 100644 index 644079c..0000000 Binary files a/_git_of_git_commit_id/objects/b2/287e23d9aa0b70442ca4c33bc9c5d75a33b873 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b2/2ceee80f40e079436dee72ee5ae921c276f947 b/_git_of_git_commit_id/objects/b2/2ceee80f40e079436dee72ee5ae921c276f947 deleted file mode 100644 index e36ac40..0000000 Binary files a/_git_of_git_commit_id/objects/b2/2ceee80f40e079436dee72ee5ae921c276f947 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b2/406cb122418eec78c7056293582ca058dd2796 b/_git_of_git_commit_id/objects/b2/406cb122418eec78c7056293582ca058dd2796 deleted file mode 100644 index 2225d17..0000000 Binary files a/_git_of_git_commit_id/objects/b2/406cb122418eec78c7056293582ca058dd2796 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b2/9e4a4acb566c0dde99a48ba7d239c60b4c90a6 b/_git_of_git_commit_id/objects/b2/9e4a4acb566c0dde99a48ba7d239c60b4c90a6 deleted file mode 100644 index 596702d..0000000 --- a/_git_of_git_commit_id/objects/b2/9e4a4acb566c0dde99a48ba7d239c60b4c90a6 +++ /dev/null @@ -1 +0,0 @@ -x+)JMU041c040031Qp,q,LJ,Kd0rY%9y̎{~} kDJ-/,/ .I,Ihg{Zg=ȭ-H %871'-3'8$3|D|Ry,^> \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/b2/a70a4c1c138deba1f3c5e3764b29d836c3870d b/_git_of_git_commit_id/objects/b2/a70a4c1c138deba1f3c5e3764b29d836c3870d deleted file mode 100644 index 9a59bdf..0000000 Binary files a/_git_of_git_commit_id/objects/b2/a70a4c1c138deba1f3c5e3764b29d836c3870d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b2/a7c378f9660c47a7e8d11895f7098999b47f5a b/_git_of_git_commit_id/objects/b2/a7c378f9660c47a7e8d11895f7098999b47f5a deleted file mode 100644 index c349db6..0000000 Binary files a/_git_of_git_commit_id/objects/b2/a7c378f9660c47a7e8d11895f7098999b47f5a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b2/b4da10d499b869fbe4081839fa7c9b85f0b5db b/_git_of_git_commit_id/objects/b2/b4da10d499b869fbe4081839fa7c9b85f0b5db deleted file mode 100644 index 986bd40..0000000 Binary files a/_git_of_git_commit_id/objects/b2/b4da10d499b869fbe4081839fa7c9b85f0b5db and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b2/ce5389733f32032f3ac60f386457c7af1390eb b/_git_of_git_commit_id/objects/b2/ce5389733f32032f3ac60f386457c7af1390eb deleted file mode 100644 index 205fd84..0000000 Binary files a/_git_of_git_commit_id/objects/b2/ce5389733f32032f3ac60f386457c7af1390eb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b2/d58d464a06f173aa48331eb92ddf33e4730c02 b/_git_of_git_commit_id/objects/b2/d58d464a06f173aa48331eb92ddf33e4730c02 deleted file mode 100644 index 515eafb..0000000 Binary files a/_git_of_git_commit_id/objects/b2/d58d464a06f173aa48331eb92ddf33e4730c02 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b3/227cd953ebe269bd3e53feb2d1e2d80e6f29ec b/_git_of_git_commit_id/objects/b3/227cd953ebe269bd3e53feb2d1e2d80e6f29ec deleted file mode 100644 index 4504cac..0000000 Binary files a/_git_of_git_commit_id/objects/b3/227cd953ebe269bd3e53feb2d1e2d80e6f29ec and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b3/46aab4b0d94f1dd2db1e53a76a6a4c709d2140 b/_git_of_git_commit_id/objects/b3/46aab4b0d94f1dd2db1e53a76a6a4c709d2140 deleted file mode 100644 index 9d0da55..0000000 Binary files a/_git_of_git_commit_id/objects/b3/46aab4b0d94f1dd2db1e53a76a6a4c709d2140 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b3/533eaf54736a7dfcc8da9534e0e0ea3b005794 b/_git_of_git_commit_id/objects/b3/533eaf54736a7dfcc8da9534e0e0ea3b005794 deleted file mode 100644 index 777985b..0000000 Binary files a/_git_of_git_commit_id/objects/b3/533eaf54736a7dfcc8da9534e0e0ea3b005794 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b3/589c9b1a39b7effeb87b367b6ec3cdf6651b51 b/_git_of_git_commit_id/objects/b3/589c9b1a39b7effeb87b367b6ec3cdf6651b51 deleted file mode 100644 index 6572486..0000000 Binary files a/_git_of_git_commit_id/objects/b3/589c9b1a39b7effeb87b367b6ec3cdf6651b51 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b3/88d5095262bb82e9431a2e0877ed62ff4defd5 b/_git_of_git_commit_id/objects/b3/88d5095262bb82e9431a2e0877ed62ff4defd5 deleted file mode 100644 index cda56a9..0000000 Binary files a/_git_of_git_commit_id/objects/b3/88d5095262bb82e9431a2e0877ed62ff4defd5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b3/ab0ba76de800955a4498d510531c3d56e3776d b/_git_of_git_commit_id/objects/b3/ab0ba76de800955a4498d510531c3d56e3776d deleted file mode 100644 index 37c7067..0000000 Binary files a/_git_of_git_commit_id/objects/b3/ab0ba76de800955a4498d510531c3d56e3776d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b3/d0f3f5fbf985a4fbae4e3402eb16cb2e9f69ea b/_git_of_git_commit_id/objects/b3/d0f3f5fbf985a4fbae4e3402eb16cb2e9f69ea deleted file mode 100644 index 66beb60..0000000 Binary files a/_git_of_git_commit_id/objects/b3/d0f3f5fbf985a4fbae4e3402eb16cb2e9f69ea and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b4/3009f976bf439317de157bd8bbfcf4a4d66f94 b/_git_of_git_commit_id/objects/b4/3009f976bf439317de157bd8bbfcf4a4d66f94 deleted file mode 100644 index 25e7de1..0000000 Binary files a/_git_of_git_commit_id/objects/b4/3009f976bf439317de157bd8bbfcf4a4d66f94 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b4/30a4e5a63ecf7d8341602f0a0af5ce3ee798af b/_git_of_git_commit_id/objects/b4/30a4e5a63ecf7d8341602f0a0af5ce3ee798af deleted file mode 100644 index ad3482a..0000000 Binary files a/_git_of_git_commit_id/objects/b4/30a4e5a63ecf7d8341602f0a0af5ce3ee798af and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b4/4a6b3c1dd8031b5f7f11d9ee283a87ccebf81c b/_git_of_git_commit_id/objects/b4/4a6b3c1dd8031b5f7f11d9ee283a87ccebf81c deleted file mode 100644 index bbf99be..0000000 Binary files a/_git_of_git_commit_id/objects/b4/4a6b3c1dd8031b5f7f11d9ee283a87ccebf81c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b4/5bc80fecc13cd4f1fcc59d9548254e62cd2d9d b/_git_of_git_commit_id/objects/b4/5bc80fecc13cd4f1fcc59d9548254e62cd2d9d deleted file mode 100644 index 6850403..0000000 Binary files a/_git_of_git_commit_id/objects/b4/5bc80fecc13cd4f1fcc59d9548254e62cd2d9d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b4/c925845402d0f354e8812020a4380fa4b961de b/_git_of_git_commit_id/objects/b4/c925845402d0f354e8812020a4380fa4b961de deleted file mode 100644 index 652f487..0000000 --- a/_git_of_git_commit_id/objects/b4/c925845402d0f354e8812020a4380fa4b961de +++ /dev/null @@ -1 +0,0 @@ -x=N1ajb(+xmB'@1,qQn@Ou;P OB\R)c86lQrӭP\v=-H.QG&φkopڷxy*P@G)EF{dWvl(_X}@m 7/H] \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/b4/cee739501ef93ffbd1bb3e72016a12d3b98763 b/_git_of_git_commit_id/objects/b4/cee739501ef93ffbd1bb3e72016a12d3b98763 deleted file mode 100644 index a31c33e..0000000 Binary files a/_git_of_git_commit_id/objects/b4/cee739501ef93ffbd1bb3e72016a12d3b98763 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b4/dbc49ef13935278b9d58f85b2ce583dcd2d24a b/_git_of_git_commit_id/objects/b4/dbc49ef13935278b9d58f85b2ce583dcd2d24a deleted file mode 100644 index cac9ebe..0000000 Binary files a/_git_of_git_commit_id/objects/b4/dbc49ef13935278b9d58f85b2ce583dcd2d24a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b5/4384597ca44fab073a69d2e4b059bf59ff5a75 b/_git_of_git_commit_id/objects/b5/4384597ca44fab073a69d2e4b059bf59ff5a75 deleted file mode 100644 index caece08..0000000 Binary files a/_git_of_git_commit_id/objects/b5/4384597ca44fab073a69d2e4b059bf59ff5a75 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b5/4e54099e7f767a732e73459e1da54513414436 b/_git_of_git_commit_id/objects/b5/4e54099e7f767a732e73459e1da54513414436 deleted file mode 100644 index f66b8a4..0000000 Binary files a/_git_of_git_commit_id/objects/b5/4e54099e7f767a732e73459e1da54513414436 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b5/58235fa77fbc9e56902bc61148d32e42a70755 b/_git_of_git_commit_id/objects/b5/58235fa77fbc9e56902bc61148d32e42a70755 deleted file mode 100644 index af33722..0000000 Binary files a/_git_of_git_commit_id/objects/b5/58235fa77fbc9e56902bc61148d32e42a70755 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b5/66b07d6489d35f7a33d4038657019ccc281c3d b/_git_of_git_commit_id/objects/b5/66b07d6489d35f7a33d4038657019ccc281c3d deleted file mode 100644 index 2a9f13d..0000000 Binary files a/_git_of_git_commit_id/objects/b5/66b07d6489d35f7a33d4038657019ccc281c3d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b5/8d1184a9d43a39c0d95f32453efc78581877d6 b/_git_of_git_commit_id/objects/b5/8d1184a9d43a39c0d95f32453efc78581877d6 deleted file mode 100644 index 043d9c5..0000000 Binary files a/_git_of_git_commit_id/objects/b5/8d1184a9d43a39c0d95f32453efc78581877d6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b5/9ca0e25ecfe1532cd618c72364da07872ba0d0 b/_git_of_git_commit_id/objects/b5/9ca0e25ecfe1532cd618c72364da07872ba0d0 deleted file mode 100644 index 48f77ea..0000000 Binary files a/_git_of_git_commit_id/objects/b5/9ca0e25ecfe1532cd618c72364da07872ba0d0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b5/9f6832cd490d19837913ca152fe8b8d5515a77 b/_git_of_git_commit_id/objects/b5/9f6832cd490d19837913ca152fe8b8d5515a77 deleted file mode 100644 index 12da1cf..0000000 Binary files a/_git_of_git_commit_id/objects/b5/9f6832cd490d19837913ca152fe8b8d5515a77 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b6/1f09115e38e628059d4160b205ae8805dd9556 b/_git_of_git_commit_id/objects/b6/1f09115e38e628059d4160b205ae8805dd9556 deleted file mode 100644 index b8a33f9..0000000 Binary files a/_git_of_git_commit_id/objects/b6/1f09115e38e628059d4160b205ae8805dd9556 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b6/46389e690cf71fd75c83c2aa8949d6e550db49 b/_git_of_git_commit_id/objects/b6/46389e690cf71fd75c83c2aa8949d6e550db49 deleted file mode 100644 index 896806b..0000000 --- a/_git_of_git_commit_id/objects/b6/46389e690cf71fd75c83c2aa8949d6e550db49 +++ /dev/null @@ -1,2 +0,0 @@ -xK1 gShR!C2ӓ8 ,ަ< V̀)v4앺8>KP2E64ȡHY -ZTD|;vXCW^+\ץJL|pzqVqbG1wm[F5͞ ӫS: \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/b6/55498385b2afd2e316521285dec01e5092db8b b/_git_of_git_commit_id/objects/b6/55498385b2afd2e316521285dec01e5092db8b deleted file mode 100644 index e53b55c..0000000 Binary files a/_git_of_git_commit_id/objects/b6/55498385b2afd2e316521285dec01e5092db8b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b6/aef7892654018da386da8f1a94f6bd9a9466f4 b/_git_of_git_commit_id/objects/b6/aef7892654018da386da8f1a94f6bd9a9466f4 deleted file mode 100644 index 39569fe..0000000 Binary files a/_git_of_git_commit_id/objects/b6/aef7892654018da386da8f1a94f6bd9a9466f4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b7/454b4a1ff9e73eef644294f7db5b0dcf8e984e b/_git_of_git_commit_id/objects/b7/454b4a1ff9e73eef644294f7db5b0dcf8e984e deleted file mode 100644 index abbc2d7..0000000 Binary files a/_git_of_git_commit_id/objects/b7/454b4a1ff9e73eef644294f7db5b0dcf8e984e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b7/83a5a4f095715b81b27f4253d3d12a69fce538 b/_git_of_git_commit_id/objects/b7/83a5a4f095715b81b27f4253d3d12a69fce538 deleted file mode 100644 index 3e89d76..0000000 Binary files a/_git_of_git_commit_id/objects/b7/83a5a4f095715b81b27f4253d3d12a69fce538 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b7/864e6d6d05a49f3f734bf70c97257989c24a81 b/_git_of_git_commit_id/objects/b7/864e6d6d05a49f3f734bf70c97257989c24a81 deleted file mode 100644 index 08faec3..0000000 Binary files a/_git_of_git_commit_id/objects/b7/864e6d6d05a49f3f734bf70c97257989c24a81 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b8/06407dc2442bcbe63b0b1b4d414f553648ade6 b/_git_of_git_commit_id/objects/b8/06407dc2442bcbe63b0b1b4d414f553648ade6 deleted file mode 100644 index 8ac26ed..0000000 --- a/_git_of_git_commit_id/objects/b8/06407dc2442bcbe63b0b1b4d414f553648ade6 +++ /dev/null @@ -1 +0,0 @@ -xMj0F),X }!F҈%#+5!'-R[y E8"DbSlN-hGd6RP;(WADOj ߼cp=y}ϭ_Iø|qx9N][Uz4Is="\\3t)F:'Y \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/b8/2fac0623a6e19ecd9d0ac93dfd7f66bcba98e5 b/_git_of_git_commit_id/objects/b8/2fac0623a6e19ecd9d0ac93dfd7f66bcba98e5 deleted file mode 100644 index e6d7011..0000000 Binary files a/_git_of_git_commit_id/objects/b8/2fac0623a6e19ecd9d0ac93dfd7f66bcba98e5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b8/6d1ec832db4adbc541563b21503153b9f3fbd9 b/_git_of_git_commit_id/objects/b8/6d1ec832db4adbc541563b21503153b9f3fbd9 deleted file mode 100644 index c2a813e..0000000 Binary files a/_git_of_git_commit_id/objects/b8/6d1ec832db4adbc541563b21503153b9f3fbd9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b8/7238b4c4f94c9aca48a1db3597a4d1f3fa1c6c b/_git_of_git_commit_id/objects/b8/7238b4c4f94c9aca48a1db3597a4d1f3fa1c6c deleted file mode 100644 index 0ce0622..0000000 --- a/_git_of_git_commit_id/objects/b8/7238b4c4f94c9aca48a1db3597a4d1f3fa1c6c +++ /dev/null @@ -1 +0,0 @@ -x+)JMU03c040031Q0NLI2LK6070LIM34L2KNJMIK44JK53N61I3`"-ҧ/|uLKzrl \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/b8/b2815a9e5a8a7e691e1d23179b47d74cb8ba44 b/_git_of_git_commit_id/objects/b8/b2815a9e5a8a7e691e1d23179b47d74cb8ba44 deleted file mode 100644 index 680770b..0000000 Binary files a/_git_of_git_commit_id/objects/b8/b2815a9e5a8a7e691e1d23179b47d74cb8ba44 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b8/befbfe78a08105683e1f689b0ca35a8200a9ed b/_git_of_git_commit_id/objects/b8/befbfe78a08105683e1f689b0ca35a8200a9ed deleted file mode 100644 index c6a13e9..0000000 Binary files a/_git_of_git_commit_id/objects/b8/befbfe78a08105683e1f689b0ca35a8200a9ed and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b8/d4499b74cd3f4cd4f8be2c3a9ff7f83b9c0c24 b/_git_of_git_commit_id/objects/b8/d4499b74cd3f4cd4f8be2c3a9ff7f83b9c0c24 deleted file mode 100644 index e8b3751..0000000 Binary files a/_git_of_git_commit_id/objects/b8/d4499b74cd3f4cd4f8be2c3a9ff7f83b9c0c24 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b8/ed7f284856b44e1f2a04da6f0ed3e08b483bdd b/_git_of_git_commit_id/objects/b8/ed7f284856b44e1f2a04da6f0ed3e08b483bdd deleted file mode 100644 index 793252f..0000000 Binary files a/_git_of_git_commit_id/objects/b8/ed7f284856b44e1f2a04da6f0ed3e08b483bdd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b9/16b5d8160bd9f7b80cea6a6c26c2fbdd3f8787 b/_git_of_git_commit_id/objects/b9/16b5d8160bd9f7b80cea6a6c26c2fbdd3f8787 deleted file mode 100644 index a24842b..0000000 Binary files a/_git_of_git_commit_id/objects/b9/16b5d8160bd9f7b80cea6a6c26c2fbdd3f8787 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b9/594f2674e55d1a0f5f8db8b32cd9fa88ba99d3 b/_git_of_git_commit_id/objects/b9/594f2674e55d1a0f5f8db8b32cd9fa88ba99d3 deleted file mode 100644 index b69364d..0000000 Binary files a/_git_of_git_commit_id/objects/b9/594f2674e55d1a0f5f8db8b32cd9fa88ba99d3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b9/6fbdb779fcb29a758d63b7ff2cfd1199935b2c b/_git_of_git_commit_id/objects/b9/6fbdb779fcb29a758d63b7ff2cfd1199935b2c deleted file mode 100644 index 1a29a6a..0000000 Binary files a/_git_of_git_commit_id/objects/b9/6fbdb779fcb29a758d63b7ff2cfd1199935b2c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b9/9b5403877d6d1165a267040cc035ed37a0fd36 b/_git_of_git_commit_id/objects/b9/9b5403877d6d1165a267040cc035ed37a0fd36 deleted file mode 100644 index f245286..0000000 Binary files a/_git_of_git_commit_id/objects/b9/9b5403877d6d1165a267040cc035ed37a0fd36 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b9/b417482d45d60b2f817b96fc48374bf8e21efd b/_git_of_git_commit_id/objects/b9/b417482d45d60b2f817b96fc48374bf8e21efd deleted file mode 100644 index 0af25da..0000000 Binary files a/_git_of_git_commit_id/objects/b9/b417482d45d60b2f817b96fc48374bf8e21efd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b9/ddf42b58a75e597142468898b598a680802106 b/_git_of_git_commit_id/objects/b9/ddf42b58a75e597142468898b598a680802106 deleted file mode 100644 index 5a87274..0000000 Binary files a/_git_of_git_commit_id/objects/b9/ddf42b58a75e597142468898b598a680802106 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/b9/e75dbadcbf6998229e77b5dea5a29c9afcd575 b/_git_of_git_commit_id/objects/b9/e75dbadcbf6998229e77b5dea5a29c9afcd575 deleted file mode 100644 index 6f76517..0000000 --- a/_git_of_git_commit_id/objects/b9/e75dbadcbf6998229e77b5dea5a29c9afcd575 +++ /dev/null @@ -1 +0,0 @@ -xQAj0zQ?L1E$Y}VڦhBjfgux|iz$P2 _%?o*bF q``!Q1R*g0CeD:uHN峜9v}}a Rɸꢸd"F76{SM[$s{ Sy ?i+ZECͻp_is:K\ٕO<p \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/b9/ed62dd144b83bd13795cd19b64c754028a3b12 b/_git_of_git_commit_id/objects/b9/ed62dd144b83bd13795cd19b64c754028a3b12 deleted file mode 100644 index cec21a3..0000000 Binary files a/_git_of_git_commit_id/objects/b9/ed62dd144b83bd13795cd19b64c754028a3b12 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ba/13a49be0ae8e5388273e65c6fac85a3b786ca0 b/_git_of_git_commit_id/objects/ba/13a49be0ae8e5388273e65c6fac85a3b786ca0 deleted file mode 100644 index 023f269..0000000 Binary files a/_git_of_git_commit_id/objects/ba/13a49be0ae8e5388273e65c6fac85a3b786ca0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ba/346904c778d2478162959f3c576b9650fa3f62 b/_git_of_git_commit_id/objects/ba/346904c778d2478162959f3c576b9650fa3f62 deleted file mode 100644 index ef3b6cb..0000000 Binary files a/_git_of_git_commit_id/objects/ba/346904c778d2478162959f3c576b9650fa3f62 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ba/389c679deb759470fd1c281e0cf8173b460814 b/_git_of_git_commit_id/objects/ba/389c679deb759470fd1c281e0cf8173b460814 deleted file mode 100644 index 4eae079..0000000 Binary files a/_git_of_git_commit_id/objects/ba/389c679deb759470fd1c281e0cf8173b460814 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ba/6d629d0412ac3553010a8682d50ef7d17dce92 b/_git_of_git_commit_id/objects/ba/6d629d0412ac3553010a8682d50ef7d17dce92 deleted file mode 100644 index d3b17f0..0000000 Binary files a/_git_of_git_commit_id/objects/ba/6d629d0412ac3553010a8682d50ef7d17dce92 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ba/7d56c873af4a6a90d29e678606a508b8d25fa6 b/_git_of_git_commit_id/objects/ba/7d56c873af4a6a90d29e678606a508b8d25fa6 deleted file mode 100644 index 1b048cf..0000000 Binary files a/_git_of_git_commit_id/objects/ba/7d56c873af4a6a90d29e678606a508b8d25fa6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bb/24ca9bacb5c3b08ab2c61808f0bd8c4f4f10ed b/_git_of_git_commit_id/objects/bb/24ca9bacb5c3b08ab2c61808f0bd8c4f4f10ed deleted file mode 100644 index 5d0b2cf..0000000 Binary files a/_git_of_git_commit_id/objects/bb/24ca9bacb5c3b08ab2c61808f0bd8c4f4f10ed and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bb/6c162e0e076fa32a9eb9729896d0f33f596fb9 b/_git_of_git_commit_id/objects/bb/6c162e0e076fa32a9eb9729896d0f33f596fb9 deleted file mode 100644 index e87c1f7..0000000 Binary files a/_git_of_git_commit_id/objects/bb/6c162e0e076fa32a9eb9729896d0f33f596fb9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bb/6c8a7efcefb8cefbd05a159ea9d96439e7f453 b/_git_of_git_commit_id/objects/bb/6c8a7efcefb8cefbd05a159ea9d96439e7f453 deleted file mode 100644 index 249066b..0000000 Binary files a/_git_of_git_commit_id/objects/bb/6c8a7efcefb8cefbd05a159ea9d96439e7f453 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bb/ad5ebbdd96c911afa6866a2ee86ccead1aaaa4 b/_git_of_git_commit_id/objects/bb/ad5ebbdd96c911afa6866a2ee86ccead1aaaa4 deleted file mode 100644 index c14581d..0000000 Binary files a/_git_of_git_commit_id/objects/bb/ad5ebbdd96c911afa6866a2ee86ccead1aaaa4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bb/c4388b44e093ff7eff2e7ec828177436af00ab b/_git_of_git_commit_id/objects/bb/c4388b44e093ff7eff2e7ec828177436af00ab deleted file mode 100644 index 57d2e8b..0000000 Binary files a/_git_of_git_commit_id/objects/bb/c4388b44e093ff7eff2e7ec828177436af00ab and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bb/cf9e8c374bb516889b18b7c8eb13b88b8b659a b/_git_of_git_commit_id/objects/bb/cf9e8c374bb516889b18b7c8eb13b88b8b659a deleted file mode 100644 index d681202..0000000 Binary files a/_git_of_git_commit_id/objects/bb/cf9e8c374bb516889b18b7c8eb13b88b8b659a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bb/e98b05bd37fa21d482d4fc6d2477863f62378a b/_git_of_git_commit_id/objects/bb/e98b05bd37fa21d482d4fc6d2477863f62378a deleted file mode 100644 index 02bf030..0000000 Binary files a/_git_of_git_commit_id/objects/bb/e98b05bd37fa21d482d4fc6d2477863f62378a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bc/39961a3c1bdc4ec31219018c52944b5ab2ee09 b/_git_of_git_commit_id/objects/bc/39961a3c1bdc4ec31219018c52944b5ab2ee09 deleted file mode 100644 index 35fef56..0000000 Binary files a/_git_of_git_commit_id/objects/bc/39961a3c1bdc4ec31219018c52944b5ab2ee09 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bc/6a260328413f6c7a8db03c95113e55091d8a87 b/_git_of_git_commit_id/objects/bc/6a260328413f6c7a8db03c95113e55091d8a87 deleted file mode 100644 index cc3c8dc..0000000 Binary files a/_git_of_git_commit_id/objects/bc/6a260328413f6c7a8db03c95113e55091d8a87 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bc/8b7ca6c7704b347efc41a5736982fe92b1c2e6 b/_git_of_git_commit_id/objects/bc/8b7ca6c7704b347efc41a5736982fe92b1c2e6 deleted file mode 100644 index 1f6df38..0000000 Binary files a/_git_of_git_commit_id/objects/bc/8b7ca6c7704b347efc41a5736982fe92b1c2e6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bc/bb66e65a89b2bf59a83a38f72cb4315fdb45e0 b/_git_of_git_commit_id/objects/bc/bb66e65a89b2bf59a83a38f72cb4315fdb45e0 deleted file mode 100644 index 0c4f24f..0000000 Binary files a/_git_of_git_commit_id/objects/bc/bb66e65a89b2bf59a83a38f72cb4315fdb45e0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bc/bca9d596f9499633235fcbe97047a3d06a2be2 b/_git_of_git_commit_id/objects/bc/bca9d596f9499633235fcbe97047a3d06a2be2 deleted file mode 100644 index bb6c162..0000000 Binary files a/_git_of_git_commit_id/objects/bc/bca9d596f9499633235fcbe97047a3d06a2be2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bc/d54e01560482d39ac011209136c6b48550c9eb b/_git_of_git_commit_id/objects/bc/d54e01560482d39ac011209136c6b48550c9eb deleted file mode 100644 index 6dcfca6..0000000 Binary files a/_git_of_git_commit_id/objects/bc/d54e01560482d39ac011209136c6b48550c9eb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bc/dc09d1ea381531f48e33476efe20ec96540f2d b/_git_of_git_commit_id/objects/bc/dc09d1ea381531f48e33476efe20ec96540f2d deleted file mode 100644 index c02842d..0000000 Binary files a/_git_of_git_commit_id/objects/bc/dc09d1ea381531f48e33476efe20ec96540f2d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bc/f5a118d87b16d584f4a0623a8ebd3411767e69 b/_git_of_git_commit_id/objects/bc/f5a118d87b16d584f4a0623a8ebd3411767e69 deleted file mode 100644 index cfb76ef..0000000 Binary files a/_git_of_git_commit_id/objects/bc/f5a118d87b16d584f4a0623a8ebd3411767e69 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bd/47b8a3875f76d303d6268cb44167d06d8f99a5 b/_git_of_git_commit_id/objects/bd/47b8a3875f76d303d6268cb44167d06d8f99a5 deleted file mode 100644 index 02ed464..0000000 Binary files a/_git_of_git_commit_id/objects/bd/47b8a3875f76d303d6268cb44167d06d8f99a5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bd/5328a463ef29ec2bd6a7ecf8e51af61a9882ab b/_git_of_git_commit_id/objects/bd/5328a463ef29ec2bd6a7ecf8e51af61a9882ab deleted file mode 100644 index bb24ca9..0000000 --- a/_git_of_git_commit_id/objects/bd/5328a463ef29ec2bd6a7ecf8e51af61a9882ab +++ /dev/null @@ -1 +0,0 @@ -xM0a< M;1O`\uJKR1h\;KԀ=&@VF*4)TWe [$c , 뇡MYZ?fRl8ɏp^S¾11D?XTTZV*)2cg8i+bX<. \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/bd/7c95ed85b4235b5a01488713af16f5fcf55647 b/_git_of_git_commit_id/objects/bd/7c95ed85b4235b5a01488713af16f5fcf55647 deleted file mode 100644 index 7d29aa4..0000000 Binary files a/_git_of_git_commit_id/objects/bd/7c95ed85b4235b5a01488713af16f5fcf55647 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bd/88078d29d4bf97efb038f0c65750b53c276fa1 b/_git_of_git_commit_id/objects/bd/88078d29d4bf97efb038f0c65750b53c276fa1 deleted file mode 100644 index 060498b..0000000 Binary files a/_git_of_git_commit_id/objects/bd/88078d29d4bf97efb038f0c65750b53c276fa1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bd/d7502f2d99a8feca0450445d424cbac681d15f b/_git_of_git_commit_id/objects/bd/d7502f2d99a8feca0450445d424cbac681d15f deleted file mode 100644 index ec8d25b..0000000 Binary files a/_git_of_git_commit_id/objects/bd/d7502f2d99a8feca0450445d424cbac681d15f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bd/d9180c4d1dbd2e7c63fc638fbb19b6310251a0 b/_git_of_git_commit_id/objects/bd/d9180c4d1dbd2e7c63fc638fbb19b6310251a0 deleted file mode 100644 index fbb9ca2..0000000 Binary files a/_git_of_git_commit_id/objects/bd/d9180c4d1dbd2e7c63fc638fbb19b6310251a0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/be/18b152951be2a851719290cd4a62ce5c51baeb b/_git_of_git_commit_id/objects/be/18b152951be2a851719290cd4a62ce5c51baeb deleted file mode 100644 index b833db0..0000000 Binary files a/_git_of_git_commit_id/objects/be/18b152951be2a851719290cd4a62ce5c51baeb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/be/6a741d94979605394b279adfab7755b8298eab b/_git_of_git_commit_id/objects/be/6a741d94979605394b279adfab7755b8298eab deleted file mode 100644 index 52d7093..0000000 Binary files a/_git_of_git_commit_id/objects/be/6a741d94979605394b279adfab7755b8298eab and /dev/null differ diff --git a/_git_of_git_commit_id/objects/be/895fd0439b062a8b8498ad6c7ab9e215602989 b/_git_of_git_commit_id/objects/be/895fd0439b062a8b8498ad6c7ab9e215602989 deleted file mode 100644 index 474d0cb..0000000 Binary files a/_git_of_git_commit_id/objects/be/895fd0439b062a8b8498ad6c7ab9e215602989 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/be/b3248a82badf5c5969f52fdb5dd56f123a8d57 b/_git_of_git_commit_id/objects/be/b3248a82badf5c5969f52fdb5dd56f123a8d57 deleted file mode 100644 index cb551e1..0000000 Binary files a/_git_of_git_commit_id/objects/be/b3248a82badf5c5969f52fdb5dd56f123a8d57 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/be/bd1008833c0038251696483b2bbb62ee6ea0f0 b/_git_of_git_commit_id/objects/be/bd1008833c0038251696483b2bbb62ee6ea0f0 deleted file mode 100644 index 0a547cf..0000000 Binary files a/_git_of_git_commit_id/objects/be/bd1008833c0038251696483b2bbb62ee6ea0f0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/be/dc4d3b3aed9017e88d1c205260c09f820370f7 b/_git_of_git_commit_id/objects/be/dc4d3b3aed9017e88d1c205260c09f820370f7 deleted file mode 100644 index 45b296f..0000000 Binary files a/_git_of_git_commit_id/objects/be/dc4d3b3aed9017e88d1c205260c09f820370f7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/be/f47a0ab315d99b72cbd6971f416b18bda316a1 b/_git_of_git_commit_id/objects/be/f47a0ab315d99b72cbd6971f416b18bda316a1 deleted file mode 100644 index 9dc413d..0000000 Binary files a/_git_of_git_commit_id/objects/be/f47a0ab315d99b72cbd6971f416b18bda316a1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bf/0b3bfe966a7f9dc5919ea2db069b6f7bd2b8ed b/_git_of_git_commit_id/objects/bf/0b3bfe966a7f9dc5919ea2db069b6f7bd2b8ed deleted file mode 100644 index b2a7c37..0000000 Binary files a/_git_of_git_commit_id/objects/bf/0b3bfe966a7f9dc5919ea2db069b6f7bd2b8ed and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bf/58729d52559102015a574048aef22bcf79a6d4 b/_git_of_git_commit_id/objects/bf/58729d52559102015a574048aef22bcf79a6d4 deleted file mode 100644 index bc90059..0000000 Binary files a/_git_of_git_commit_id/objects/bf/58729d52559102015a574048aef22bcf79a6d4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bf/7252890cd5ad91cc0fce3a9719ed75e0ce58b8 b/_git_of_git_commit_id/objects/bf/7252890cd5ad91cc0fce3a9719ed75e0ce58b8 deleted file mode 100644 index 00c6e9e..0000000 Binary files a/_git_of_git_commit_id/objects/bf/7252890cd5ad91cc0fce3a9719ed75e0ce58b8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bf/c3360881c83ba60a16395fb914244646a88ac5 b/_git_of_git_commit_id/objects/bf/c3360881c83ba60a16395fb914244646a88ac5 deleted file mode 100644 index 01c9ff3..0000000 Binary files a/_git_of_git_commit_id/objects/bf/c3360881c83ba60a16395fb914244646a88ac5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bf/d0729a2c2735a19e639c1a969880104e9c16a5 b/_git_of_git_commit_id/objects/bf/d0729a2c2735a19e639c1a969880104e9c16a5 deleted file mode 100644 index 4b05986..0000000 Binary files a/_git_of_git_commit_id/objects/bf/d0729a2c2735a19e639c1a969880104e9c16a5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/bf/ee13d9f3a88ffb7def9d0b432a69aaee3881dd b/_git_of_git_commit_id/objects/bf/ee13d9f3a88ffb7def9d0b432a69aaee3881dd deleted file mode 100644 index 8c7578d..0000000 Binary files a/_git_of_git_commit_id/objects/bf/ee13d9f3a88ffb7def9d0b432a69aaee3881dd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c0/2842d022305249051b29e69a9d924b2cb010a4 b/_git_of_git_commit_id/objects/c0/2842d022305249051b29e69a9d924b2cb010a4 deleted file mode 100644 index 7666524..0000000 Binary files a/_git_of_git_commit_id/objects/c0/2842d022305249051b29e69a9d924b2cb010a4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c0/bba8a4df79610837a6d53d6dc18a6c6ce8a95c b/_git_of_git_commit_id/objects/c0/bba8a4df79610837a6d53d6dc18a6c6ce8a95c deleted file mode 100644 index 7ff955a..0000000 Binary files a/_git_of_git_commit_id/objects/c0/bba8a4df79610837a6d53d6dc18a6c6ce8a95c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c0/d336a2897326a841b627d39ec52deaa2e50655 b/_git_of_git_commit_id/objects/c0/d336a2897326a841b627d39ec52deaa2e50655 deleted file mode 100644 index 9e29538..0000000 Binary files a/_git_of_git_commit_id/objects/c0/d336a2897326a841b627d39ec52deaa2e50655 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c1/33b53eac219b2cacac0e68245adcc24abe5d34 b/_git_of_git_commit_id/objects/c1/33b53eac219b2cacac0e68245adcc24abe5d34 deleted file mode 100644 index b27554e..0000000 Binary files a/_git_of_git_commit_id/objects/c1/33b53eac219b2cacac0e68245adcc24abe5d34 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c1/5fde398343aee8458d021141e8e023a3b9f50e b/_git_of_git_commit_id/objects/c1/5fde398343aee8458d021141e8e023a3b9f50e deleted file mode 100644 index 6100ac2..0000000 Binary files a/_git_of_git_commit_id/objects/c1/5fde398343aee8458d021141e8e023a3b9f50e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c1/77c4bfd3921ffa405b8ffec34d29a4837fef69 b/_git_of_git_commit_id/objects/c1/77c4bfd3921ffa405b8ffec34d29a4837fef69 deleted file mode 100644 index 7b04f6d..0000000 Binary files a/_git_of_git_commit_id/objects/c1/77c4bfd3921ffa405b8ffec34d29a4837fef69 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c1/9c328689ee09dc74562b2fcf9ef26e5c148006 b/_git_of_git_commit_id/objects/c1/9c328689ee09dc74562b2fcf9ef26e5c148006 deleted file mode 100644 index aa0412a..0000000 Binary files a/_git_of_git_commit_id/objects/c1/9c328689ee09dc74562b2fcf9ef26e5c148006 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c1/e17b2877c98c532965b81a584c5e81b6e7c12c b/_git_of_git_commit_id/objects/c1/e17b2877c98c532965b81a584c5e81b6e7c12c deleted file mode 100644 index 437c2ab..0000000 Binary files a/_git_of_git_commit_id/objects/c1/e17b2877c98c532965b81a584c5e81b6e7c12c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c2/1adc52c89db7fac932e5a5a02ca32dd3678e38 b/_git_of_git_commit_id/objects/c2/1adc52c89db7fac932e5a5a02ca32dd3678e38 deleted file mode 100644 index cc7327c..0000000 Binary files a/_git_of_git_commit_id/objects/c2/1adc52c89db7fac932e5a5a02ca32dd3678e38 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c2/a813e9b859612f1f28ea6fcbff5b159e373110 b/_git_of_git_commit_id/objects/c2/a813e9b859612f1f28ea6fcbff5b159e373110 deleted file mode 100644 index a5392aa..0000000 Binary files a/_git_of_git_commit_id/objects/c2/a813e9b859612f1f28ea6fcbff5b159e373110 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c2/da739794bd37a21f0756c3ad8323deb040cfc0 b/_git_of_git_commit_id/objects/c2/da739794bd37a21f0756c3ad8323deb040cfc0 deleted file mode 100644 index a96e43f..0000000 Binary files a/_git_of_git_commit_id/objects/c2/da739794bd37a21f0756c3ad8323deb040cfc0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c3/28211fb72e5d3a8c49326c530212bf268d2e49 b/_git_of_git_commit_id/objects/c3/28211fb72e5d3a8c49326c530212bf268d2e49 deleted file mode 100644 index 003e60a..0000000 --- a/_git_of_git_commit_id/objects/c3/28211fb72e5d3a8c49326c530212bf268d2e49 +++ /dev/null @@ -1,2 +0,0 @@ -xKn1Eь#Z_)2GYʠ.!GA\e:zceLq$MV/ƌ(*5^; )Xώ E7ȔsaD% a[e. '|ֶr -:BmFI%H_/B7^g |=M7pӃv\ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/c3/429b749972a9dcf4d01e456b21cbe0832877bd b/_git_of_git_commit_id/objects/c3/429b749972a9dcf4d01e456b21cbe0832877bd deleted file mode 100644 index 11f38bc..0000000 Binary files a/_git_of_git_commit_id/objects/c3/429b749972a9dcf4d01e456b21cbe0832877bd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c3/de8b7b0be20a092d61e292218eb7920c97d81b b/_git_of_git_commit_id/objects/c3/de8b7b0be20a092d61e292218eb7920c97d81b deleted file mode 100644 index ea51913..0000000 Binary files a/_git_of_git_commit_id/objects/c3/de8b7b0be20a092d61e292218eb7920c97d81b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c3/eb80ba0b8958521fa2ececc36761d4d2fe7799 b/_git_of_git_commit_id/objects/c3/eb80ba0b8958521fa2ececc36761d4d2fe7799 deleted file mode 100644 index 8cb3a84..0000000 Binary files a/_git_of_git_commit_id/objects/c3/eb80ba0b8958521fa2ececc36761d4d2fe7799 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c4/13c1814d770c65b4f021bacdbded37da307bed b/_git_of_git_commit_id/objects/c4/13c1814d770c65b4f021bacdbded37da307bed deleted file mode 100644 index e0c7e18..0000000 Binary files a/_git_of_git_commit_id/objects/c4/13c1814d770c65b4f021bacdbded37da307bed and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c4/3e545990120840b71f8ded54521a0e76745e94 b/_git_of_git_commit_id/objects/c4/3e545990120840b71f8ded54521a0e76745e94 deleted file mode 100644 index abe50aa..0000000 Binary files a/_git_of_git_commit_id/objects/c4/3e545990120840b71f8ded54521a0e76745e94 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c4/43f64974aadb3f6025c349038399ea3c324b3a b/_git_of_git_commit_id/objects/c4/43f64974aadb3f6025c349038399ea3c324b3a deleted file mode 100644 index b2b4da1..0000000 Binary files a/_git_of_git_commit_id/objects/c4/43f64974aadb3f6025c349038399ea3c324b3a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c4/44c5bf965d02c70356137ae1acd7b981915114 b/_git_of_git_commit_id/objects/c4/44c5bf965d02c70356137ae1acd7b981915114 deleted file mode 100644 index 4c6f20a..0000000 Binary files a/_git_of_git_commit_id/objects/c4/44c5bf965d02c70356137ae1acd7b981915114 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c4/654296932bc6037d883754a76ed5ff740c3ed7 b/_git_of_git_commit_id/objects/c4/654296932bc6037d883754a76ed5ff740c3ed7 deleted file mode 100644 index 7bb7363..0000000 Binary files a/_git_of_git_commit_id/objects/c4/654296932bc6037d883754a76ed5ff740c3ed7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c4/92f51cd1e4ec0cf94b4800427e69c942f1f4ef b/_git_of_git_commit_id/objects/c4/92f51cd1e4ec0cf94b4800427e69c942f1f4ef deleted file mode 100644 index 2045704..0000000 Binary files a/_git_of_git_commit_id/objects/c4/92f51cd1e4ec0cf94b4800427e69c942f1f4ef and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c4/97a44754dd1c4b90dbaf186c5e41c4b40007e5 b/_git_of_git_commit_id/objects/c4/97a44754dd1c4b90dbaf186c5e41c4b40007e5 deleted file mode 100644 index d1842cc..0000000 Binary files a/_git_of_git_commit_id/objects/c4/97a44754dd1c4b90dbaf186c5e41c4b40007e5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c4/dc59f870380b7b3c887aa55fbaec0b9b2657bc b/_git_of_git_commit_id/objects/c4/dc59f870380b7b3c887aa55fbaec0b9b2657bc deleted file mode 100644 index 69c8c0d..0000000 Binary files a/_git_of_git_commit_id/objects/c4/dc59f870380b7b3c887aa55fbaec0b9b2657bc and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c5/4e7ea28ef3d751a92af8f4d9fe5add26c468be b/_git_of_git_commit_id/objects/c5/4e7ea28ef3d751a92af8f4d9fe5add26c468be deleted file mode 100644 index 6837c55..0000000 Binary files a/_git_of_git_commit_id/objects/c5/4e7ea28ef3d751a92af8f4d9fe5add26c468be and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c5/78470f1c1fbd34ca9fc59e27d430a710bc844d b/_git_of_git_commit_id/objects/c5/78470f1c1fbd34ca9fc59e27d430a710bc844d deleted file mode 100644 index eb3d46e..0000000 Binary files a/_git_of_git_commit_id/objects/c5/78470f1c1fbd34ca9fc59e27d430a710bc844d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c5/e499834937061762b9905c97b3f4361b4cfa49 b/_git_of_git_commit_id/objects/c5/e499834937061762b9905c97b3f4361b4cfa49 deleted file mode 100644 index 8199766..0000000 Binary files a/_git_of_git_commit_id/objects/c5/e499834937061762b9905c97b3f4361b4cfa49 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c5/f9938621ef8314861df4dddd069be9ed1de890 b/_git_of_git_commit_id/objects/c5/f9938621ef8314861df4dddd069be9ed1de890 deleted file mode 100644 index 77df8db..0000000 Binary files a/_git_of_git_commit_id/objects/c5/f9938621ef8314861df4dddd069be9ed1de890 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c6/1bfc2dc1b3d3515220f123d6258e4a1f6de95a b/_git_of_git_commit_id/objects/c6/1bfc2dc1b3d3515220f123d6258e4a1f6de95a deleted file mode 100644 index b59ca0e..0000000 Binary files a/_git_of_git_commit_id/objects/c6/1bfc2dc1b3d3515220f123d6258e4a1f6de95a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c6/8a81566904d85c887285557db7bce219860bd9 b/_git_of_git_commit_id/objects/c6/8a81566904d85c887285557db7bce219860bd9 deleted file mode 100644 index 5026e76..0000000 Binary files a/_git_of_git_commit_id/objects/c6/8a81566904d85c887285557db7bce219860bd9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c6/a2d9430b3e127819f0deffc96f3cb6d40bf892 b/_git_of_git_commit_id/objects/c6/a2d9430b3e127819f0deffc96f3cb6d40bf892 deleted file mode 100644 index 23504cd..0000000 Binary files a/_git_of_git_commit_id/objects/c6/a2d9430b3e127819f0deffc96f3cb6d40bf892 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c6/c92b8399b39662f640c32352e55bfa1c0f4b92 b/_git_of_git_commit_id/objects/c6/c92b8399b39662f640c32352e55bfa1c0f4b92 deleted file mode 100644 index 05a690f..0000000 Binary files a/_git_of_git_commit_id/objects/c6/c92b8399b39662f640c32352e55bfa1c0f4b92 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c6/df19dc89bfc80e80020ba816fdc3416a9e3c3c b/_git_of_git_commit_id/objects/c6/df19dc89bfc80e80020ba816fdc3416a9e3c3c deleted file mode 100644 index 06157e4..0000000 Binary files a/_git_of_git_commit_id/objects/c6/df19dc89bfc80e80020ba816fdc3416a9e3c3c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c6/f6aceceaefbb384b63be2c8d8e3e1568463316 b/_git_of_git_commit_id/objects/c6/f6aceceaefbb384b63be2c8d8e3e1568463316 deleted file mode 100644 index b4cee73..0000000 Binary files a/_git_of_git_commit_id/objects/c6/f6aceceaefbb384b63be2c8d8e3e1568463316 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c7/0aab67a5ebab09995a1e0b738962c906b63b9f b/_git_of_git_commit_id/objects/c7/0aab67a5ebab09995a1e0b738962c906b63b9f deleted file mode 100644 index 4badb5f..0000000 Binary files a/_git_of_git_commit_id/objects/c7/0aab67a5ebab09995a1e0b738962c906b63b9f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c7/40025563f2bc01b7d072f88c12517aa6cc6317 b/_git_of_git_commit_id/objects/c7/40025563f2bc01b7d072f88c12517aa6cc6317 deleted file mode 100644 index e5dc064..0000000 Binary files a/_git_of_git_commit_id/objects/c7/40025563f2bc01b7d072f88c12517aa6cc6317 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c7/4cd687a3310c3a6611d48e7ad0f7fbb4290df8 b/_git_of_git_commit_id/objects/c7/4cd687a3310c3a6611d48e7ad0f7fbb4290df8 deleted file mode 100644 index e9da85d..0000000 Binary files a/_git_of_git_commit_id/objects/c7/4cd687a3310c3a6611d48e7ad0f7fbb4290df8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c7/538c513fa2ccab2eeb21e097e58059b2fe43bb b/_git_of_git_commit_id/objects/c7/538c513fa2ccab2eeb21e097e58059b2fe43bb deleted file mode 100644 index 714746f..0000000 Binary files a/_git_of_git_commit_id/objects/c7/538c513fa2ccab2eeb21e097e58059b2fe43bb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c8/103eb33ba1a8543d62569d5e9542f2a625d5ae b/_git_of_git_commit_id/objects/c8/103eb33ba1a8543d62569d5e9542f2a625d5ae deleted file mode 100644 index 7adb253..0000000 Binary files a/_git_of_git_commit_id/objects/c8/103eb33ba1a8543d62569d5e9542f2a625d5ae and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c8/1ee1b33facaa904a7ee3f338279bbe286cf513 b/_git_of_git_commit_id/objects/c8/1ee1b33facaa904a7ee3f338279bbe286cf513 deleted file mode 100644 index 0d579b7..0000000 Binary files a/_git_of_git_commit_id/objects/c8/1ee1b33facaa904a7ee3f338279bbe286cf513 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c8/2751427ecb8981cd742a758e1e19f14e044179 b/_git_of_git_commit_id/objects/c8/2751427ecb8981cd742a758e1e19f14e044179 deleted file mode 100644 index fa3faf8..0000000 Binary files a/_git_of_git_commit_id/objects/c8/2751427ecb8981cd742a758e1e19f14e044179 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c8/2a8669f5ec949f1174172077a89fc7c8792704 b/_git_of_git_commit_id/objects/c8/2a8669f5ec949f1174172077a89fc7c8792704 deleted file mode 100644 index 3fd435e..0000000 Binary files a/_git_of_git_commit_id/objects/c8/2a8669f5ec949f1174172077a89fc7c8792704 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c8/4568f6321605d58ead24f9d4dde313c9aead75 b/_git_of_git_commit_id/objects/c8/4568f6321605d58ead24f9d4dde313c9aead75 deleted file mode 100644 index 51e3e32..0000000 Binary files a/_git_of_git_commit_id/objects/c8/4568f6321605d58ead24f9d4dde313c9aead75 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c8/6e4131ce0d118c9293b40906a772fc6a5038e8 b/_git_of_git_commit_id/objects/c8/6e4131ce0d118c9293b40906a772fc6a5038e8 deleted file mode 100644 index 6278de7..0000000 Binary files a/_git_of_git_commit_id/objects/c8/6e4131ce0d118c9293b40906a772fc6a5038e8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c8/86cb74d64ba5548c500042d59083640169c416 b/_git_of_git_commit_id/objects/c8/86cb74d64ba5548c500042d59083640169c416 deleted file mode 100644 index d581c0d..0000000 Binary files a/_git_of_git_commit_id/objects/c8/86cb74d64ba5548c500042d59083640169c416 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c8/8b2a15165058d5921a3ffd7cdffe9fd5c73f48 b/_git_of_git_commit_id/objects/c8/8b2a15165058d5921a3ffd7cdffe9fd5c73f48 deleted file mode 100644 index 91fcba9..0000000 Binary files a/_git_of_git_commit_id/objects/c8/8b2a15165058d5921a3ffd7cdffe9fd5c73f48 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c8/8d093a55ecfac9834c0918da5ff61db78e81c5 b/_git_of_git_commit_id/objects/c8/8d093a55ecfac9834c0918da5ff61db78e81c5 deleted file mode 100644 index b807a3f..0000000 Binary files a/_git_of_git_commit_id/objects/c8/8d093a55ecfac9834c0918da5ff61db78e81c5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c8/d46f335e2df05476872f53a17acd8c7feae455 b/_git_of_git_commit_id/objects/c8/d46f335e2df05476872f53a17acd8c7feae455 deleted file mode 100644 index b1ee9f8..0000000 Binary files a/_git_of_git_commit_id/objects/c8/d46f335e2df05476872f53a17acd8c7feae455 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c8/ff632df6d6ab362ec02cc1b20a527f69ca741d b/_git_of_git_commit_id/objects/c8/ff632df6d6ab362ec02cc1b20a527f69ca741d deleted file mode 100644 index 6fe92cf..0000000 --- a/_git_of_git_commit_id/objects/c8/ff632df6d6ab362ec02cc1b20a527f69ca741d +++ /dev/null @@ -1,3 +0,0 @@ -xK -0a9EB<!)V"x}xemZD4 d8S` Q^$:AҪUwGP"s89D =(!@<*})̅HsЧZp5Ydz6ֻ`U/iC< -۪>pR \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/c9/3357d4594b7e8fdb7725b34243c2a1a3b30d05 b/_git_of_git_commit_id/objects/c9/3357d4594b7e8fdb7725b34243c2a1a3b30d05 deleted file mode 100644 index 0a10405..0000000 Binary files a/_git_of_git_commit_id/objects/c9/3357d4594b7e8fdb7725b34243c2a1a3b30d05 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c9/37370851a7c52aa3bb93c85a466977b7f7844b b/_git_of_git_commit_id/objects/c9/37370851a7c52aa3bb93c85a466977b7f7844b deleted file mode 100644 index 2b1080a..0000000 Binary files a/_git_of_git_commit_id/objects/c9/37370851a7c52aa3bb93c85a466977b7f7844b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c9/7ad36968aa4454e90f363b83c0587c8c2b8ea9 b/_git_of_git_commit_id/objects/c9/7ad36968aa4454e90f363b83c0587c8c2b8ea9 deleted file mode 100644 index 233950b..0000000 Binary files a/_git_of_git_commit_id/objects/c9/7ad36968aa4454e90f363b83c0587c8c2b8ea9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/c9/d315a856d8bcc6c000fbf4ea13204b3555b93c b/_git_of_git_commit_id/objects/c9/d315a856d8bcc6c000fbf4ea13204b3555b93c deleted file mode 100644 index 1d5e637..0000000 Binary files a/_git_of_git_commit_id/objects/c9/d315a856d8bcc6c000fbf4ea13204b3555b93c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ca/1d23a467595f473f97d460f178b7d4ae9cb98c b/_git_of_git_commit_id/objects/ca/1d23a467595f473f97d460f178b7d4ae9cb98c deleted file mode 100644 index 876aeaa..0000000 Binary files a/_git_of_git_commit_id/objects/ca/1d23a467595f473f97d460f178b7d4ae9cb98c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ca/2623c21d4cd89b13d452ad33fefe93504c6971 b/_git_of_git_commit_id/objects/ca/2623c21d4cd89b13d452ad33fefe93504c6971 deleted file mode 100644 index e65e4de..0000000 Binary files a/_git_of_git_commit_id/objects/ca/2623c21d4cd89b13d452ad33fefe93504c6971 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ca/37b16ad1fcb17e4cc46484771f9263d0593176 b/_git_of_git_commit_id/objects/ca/37b16ad1fcb17e4cc46484771f9263d0593176 deleted file mode 100644 index 01c8c5f..0000000 Binary files a/_git_of_git_commit_id/objects/ca/37b16ad1fcb17e4cc46484771f9263d0593176 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ca/3aaaa0a105e66fb065227e65d7d38ce9a885b8 b/_git_of_git_commit_id/objects/ca/3aaaa0a105e66fb065227e65d7d38ce9a885b8 deleted file mode 100644 index c32ae56..0000000 Binary files a/_git_of_git_commit_id/objects/ca/3aaaa0a105e66fb065227e65d7d38ce9a885b8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ca/41c16c45cd33fcc82056a98272cf11658731e7 b/_git_of_git_commit_id/objects/ca/41c16c45cd33fcc82056a98272cf11658731e7 deleted file mode 100644 index 0a49006..0000000 Binary files a/_git_of_git_commit_id/objects/ca/41c16c45cd33fcc82056a98272cf11658731e7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ca/77c2de57e1ae72add31a7216200288359fccf4 b/_git_of_git_commit_id/objects/ca/77c2de57e1ae72add31a7216200288359fccf4 deleted file mode 100644 index 0a029cf..0000000 --- a/_git_of_git_commit_id/objects/ca/77c2de57e1ae72add31a7216200288359fccf4 +++ /dev/null @@ -1,2 +0,0 @@ -xJ0S xL>lfm+e'pNWhpU֐1RCbmAFK9LE -JR҅ ;-!Y:-.:ROOasmD.[AՊZG.B {k9pw t<܃nFm7pRMLf/]`^|TF ,yr;Ҳ4#3$ꇷ5?/k.߰ElLt \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/ca/9403db134b9c495e1cbbe3a9ec1d3a45d379b1 b/_git_of_git_commit_id/objects/ca/9403db134b9c495e1cbbe3a9ec1d3a45d379b1 deleted file mode 100644 index 58f664d..0000000 Binary files a/_git_of_git_commit_id/objects/ca/9403db134b9c495e1cbbe3a9ec1d3a45d379b1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/089cd89a7d7686d284d8761201649346b5aa1c b/_git_of_git_commit_id/objects/cb/089cd89a7d7686d284d8761201649346b5aa1c deleted file mode 100644 index 17c8d93..0000000 Binary files a/_git_of_git_commit_id/objects/cb/089cd89a7d7686d284d8761201649346b5aa1c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/4be2900d70374c6958f7e7b960e6b7a88bae91 b/_git_of_git_commit_id/objects/cb/4be2900d70374c6958f7e7b960e6b7a88bae91 deleted file mode 100644 index 7073054..0000000 Binary files a/_git_of_git_commit_id/objects/cb/4be2900d70374c6958f7e7b960e6b7a88bae91 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/4ca931cdb46baabc879edde7546bdacb876544 b/_git_of_git_commit_id/objects/cb/4ca931cdb46baabc879edde7546bdacb876544 deleted file mode 100644 index c7d5ccf..0000000 Binary files a/_git_of_git_commit_id/objects/cb/4ca931cdb46baabc879edde7546bdacb876544 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/551e180caa3033b752239135fb0fabe30afd11 b/_git_of_git_commit_id/objects/cb/551e180caa3033b752239135fb0fabe30afd11 deleted file mode 100644 index d65dbba..0000000 Binary files a/_git_of_git_commit_id/objects/cb/551e180caa3033b752239135fb0fabe30afd11 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/8d4a9e714c520609c78f0fc1ccf2c617e294e4 b/_git_of_git_commit_id/objects/cb/8d4a9e714c520609c78f0fc1ccf2c617e294e4 deleted file mode 100644 index ca9403d..0000000 Binary files a/_git_of_git_commit_id/objects/cb/8d4a9e714c520609c78f0fc1ccf2c617e294e4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/95faafcf1aa32d5d4e284b924e09c1a04aaaf6 b/_git_of_git_commit_id/objects/cb/95faafcf1aa32d5d4e284b924e09c1a04aaaf6 deleted file mode 100644 index a14759e..0000000 Binary files a/_git_of_git_commit_id/objects/cb/95faafcf1aa32d5d4e284b924e09c1a04aaaf6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/99d6e623a8a6446cf2f60c1fa08f040272b786 b/_git_of_git_commit_id/objects/cb/99d6e623a8a6446cf2f60c1fa08f040272b786 deleted file mode 100644 index 667ad62..0000000 Binary files a/_git_of_git_commit_id/objects/cb/99d6e623a8a6446cf2f60c1fa08f040272b786 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/9f12f6d495e8bc64247f8766b58275cce496a0 b/_git_of_git_commit_id/objects/cb/9f12f6d495e8bc64247f8766b58275cce496a0 deleted file mode 100644 index eccc954..0000000 Binary files a/_git_of_git_commit_id/objects/cb/9f12f6d495e8bc64247f8766b58275cce496a0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/b319bb6511a758ebec5b34d49853e725fbc258 b/_git_of_git_commit_id/objects/cb/b319bb6511a758ebec5b34d49853e725fbc258 deleted file mode 100644 index 018080c..0000000 Binary files a/_git_of_git_commit_id/objects/cb/b319bb6511a758ebec5b34d49853e725fbc258 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/b54c3d61ccf76a6aef2f0ca5ebc61a7b531221 b/_git_of_git_commit_id/objects/cb/b54c3d61ccf76a6aef2f0ca5ebc61a7b531221 deleted file mode 100644 index 454c1a7..0000000 Binary files a/_git_of_git_commit_id/objects/cb/b54c3d61ccf76a6aef2f0ca5ebc61a7b531221 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/cf7dccac21daa5c74d071c30cedc568676a7e1 b/_git_of_git_commit_id/objects/cb/cf7dccac21daa5c74d071c30cedc568676a7e1 deleted file mode 100644 index 7fc262c..0000000 Binary files a/_git_of_git_commit_id/objects/cb/cf7dccac21daa5c74d071c30cedc568676a7e1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/dae3b3fce779759b5f591d65dcdd112b00ce80 b/_git_of_git_commit_id/objects/cb/dae3b3fce779759b5f591d65dcdd112b00ce80 deleted file mode 100644 index e325c0e..0000000 Binary files a/_git_of_git_commit_id/objects/cb/dae3b3fce779759b5f591d65dcdd112b00ce80 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cb/e7e97d4a49eafe4241a3b1c8896b3dfdff692b b/_git_of_git_commit_id/objects/cb/e7e97d4a49eafe4241a3b1c8896b3dfdff692b deleted file mode 100644 index f0c80d7..0000000 Binary files a/_git_of_git_commit_id/objects/cb/e7e97d4a49eafe4241a3b1c8896b3dfdff692b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cc/27cf6b321ca170a826f4881a39d491aca8294c b/_git_of_git_commit_id/objects/cc/27cf6b321ca170a826f4881a39d491aca8294c deleted file mode 100644 index a7aa8c7..0000000 Binary files a/_git_of_git_commit_id/objects/cc/27cf6b321ca170a826f4881a39d491aca8294c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cc/4bf8498af507f661db54227d91f983e4219c7d b/_git_of_git_commit_id/objects/cc/4bf8498af507f661db54227d91f983e4219c7d deleted file mode 100644 index e6a266e..0000000 Binary files a/_git_of_git_commit_id/objects/cc/4bf8498af507f661db54227d91f983e4219c7d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cc/a0fe43ebfd188504592cc5dab9db8319e7609d b/_git_of_git_commit_id/objects/cc/a0fe43ebfd188504592cc5dab9db8319e7609d deleted file mode 100644 index 9a9c7a3..0000000 --- a/_git_of_git_commit_id/objects/cc/a0fe43ebfd188504592cc5dab9db8319e7609d +++ /dev/null @@ -1 +0,0 @@ -xKN1Y7c[B({ ' I ⽪Ps^(.F' hhk*6t` ;)j^@t G&-^k ~_+<z0:Bi!KYx{x/ohml~DQ-sZ Gd \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/cc/b061dcc815cc5304328f6beb3f5a50f8cbf32d b/_git_of_git_commit_id/objects/cc/b061dcc815cc5304328f6beb3f5a50f8cbf32d deleted file mode 100644 index 90f4392..0000000 Binary files a/_git_of_git_commit_id/objects/cc/b061dcc815cc5304328f6beb3f5a50f8cbf32d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cc/b133867b9e7ae8751490a2ea3f41e36c1320a1 b/_git_of_git_commit_id/objects/cc/b133867b9e7ae8751490a2ea3f41e36c1320a1 deleted file mode 100644 index 0de893d..0000000 Binary files a/_git_of_git_commit_id/objects/cc/b133867b9e7ae8751490a2ea3f41e36c1320a1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cc/f445ae9a27b131bb8d942f0d2cc1a419f27108 b/_git_of_git_commit_id/objects/cc/f445ae9a27b131bb8d942f0d2cc1a419f27108 deleted file mode 100644 index 4d769b9..0000000 Binary files a/_git_of_git_commit_id/objects/cc/f445ae9a27b131bb8d942f0d2cc1a419f27108 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cc/fee6bf6a3d95eeb32484e20eace09659463e00 b/_git_of_git_commit_id/objects/cc/fee6bf6a3d95eeb32484e20eace09659463e00 deleted file mode 100644 index 22d1248..0000000 Binary files a/_git_of_git_commit_id/objects/cc/fee6bf6a3d95eeb32484e20eace09659463e00 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cd/0c614701c93808b96d43dc7531226e3cca17f7 b/_git_of_git_commit_id/objects/cd/0c614701c93808b96d43dc7531226e3cca17f7 deleted file mode 100644 index 20497c8..0000000 Binary files a/_git_of_git_commit_id/objects/cd/0c614701c93808b96d43dc7531226e3cca17f7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cd/5ef9be127fcbca7dc71a7f783b78f392a15f33 b/_git_of_git_commit_id/objects/cd/5ef9be127fcbca7dc71a7f783b78f392a15f33 deleted file mode 100644 index 64e485d..0000000 Binary files a/_git_of_git_commit_id/objects/cd/5ef9be127fcbca7dc71a7f783b78f392a15f33 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cd/b58fc6a3b467ccb62dd74719afee8f4adad772 b/_git_of_git_commit_id/objects/cd/b58fc6a3b467ccb62dd74719afee8f4adad772 deleted file mode 100644 index 6e588b2..0000000 Binary files a/_git_of_git_commit_id/objects/cd/b58fc6a3b467ccb62dd74719afee8f4adad772 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cd/baceba5b5a0eb9e54422510638e023dc6485c1 b/_git_of_git_commit_id/objects/cd/baceba5b5a0eb9e54422510638e023dc6485c1 deleted file mode 100644 index 04254c0..0000000 Binary files a/_git_of_git_commit_id/objects/cd/baceba5b5a0eb9e54422510638e023dc6485c1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cd/be31c365120c8e0490e1dd186004685311cc4b b/_git_of_git_commit_id/objects/cd/be31c365120c8e0490e1dd186004685311cc4b deleted file mode 100644 index 6cf6d70..0000000 --- a/_git_of_git_commit_id/objects/cd/be31c365120c8e0490e1dd186004685311cc4b +++ /dev/null @@ -1 +0,0 @@ -x+)JMU06a040031QM,.I-b`8>^G \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/cd/e246fa8ab1651e57f41e1dd277572a8025032e b/_git_of_git_commit_id/objects/cd/e246fa8ab1651e57f41e1dd277572a8025032e deleted file mode 100644 index fae1b05..0000000 Binary files a/_git_of_git_commit_id/objects/cd/e246fa8ab1651e57f41e1dd277572a8025032e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cd/f73c064d7fd7d4190feca65ff6fed07eb193fa b/_git_of_git_commit_id/objects/cd/f73c064d7fd7d4190feca65ff6fed07eb193fa deleted file mode 100644 index 667540b..0000000 Binary files a/_git_of_git_commit_id/objects/cd/f73c064d7fd7d4190feca65ff6fed07eb193fa and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ce/32484738c1a1bc73df79bf6ab7f735ec09e165 b/_git_of_git_commit_id/objects/ce/32484738c1a1bc73df79bf6ab7f735ec09e165 deleted file mode 100644 index 0f8201e..0000000 Binary files a/_git_of_git_commit_id/objects/ce/32484738c1a1bc73df79bf6ab7f735ec09e165 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ce/959f92b95c75bbc1d0995c9dc43eb8d14cc80e b/_git_of_git_commit_id/objects/ce/959f92b95c75bbc1d0995c9dc43eb8d14cc80e deleted file mode 100644 index bb6c8a7..0000000 Binary files a/_git_of_git_commit_id/objects/ce/959f92b95c75bbc1d0995c9dc43eb8d14cc80e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ce/c21a345e0e7e33a19e5380250eaebf07e3a864 b/_git_of_git_commit_id/objects/ce/c21a345e0e7e33a19e5380250eaebf07e3a864 deleted file mode 100644 index 2221cbb..0000000 Binary files a/_git_of_git_commit_id/objects/ce/c21a345e0e7e33a19e5380250eaebf07e3a864 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ce/c360419d85890c448dda67d8f2d27ce990039c b/_git_of_git_commit_id/objects/ce/c360419d85890c448dda67d8f2d27ce990039c deleted file mode 100644 index ae7de84..0000000 --- a/_git_of_git_commit_id/objects/ce/c360419d85890c448dda67d8f2d27ce990039c +++ /dev/null @@ -1 +0,0 @@ -xKOR01g` 50K20d`jsdotWo/~RSg_A J| 'K \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/ce/cb304e71aea6c44119bb4e9aed54d02e0ecf6b b/_git_of_git_commit_id/objects/ce/cb304e71aea6c44119bb4e9aed54d02e0ecf6b deleted file mode 100644 index 91b9765..0000000 Binary files a/_git_of_git_commit_id/objects/ce/cb304e71aea6c44119bb4e9aed54d02e0ecf6b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ce/dd7cc3c819c6568cd36a07aa9b9dc6aa2e6cff b/_git_of_git_commit_id/objects/ce/dd7cc3c819c6568cd36a07aa9b9dc6aa2e6cff deleted file mode 100644 index d10405c..0000000 Binary files a/_git_of_git_commit_id/objects/ce/dd7cc3c819c6568cd36a07aa9b9dc6aa2e6cff and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cf/32f7f5311be7e665ad83388dab5c6e547060a6 b/_git_of_git_commit_id/objects/cf/32f7f5311be7e665ad83388dab5c6e547060a6 deleted file mode 100644 index 8fc7c7f..0000000 Binary files a/_git_of_git_commit_id/objects/cf/32f7f5311be7e665ad83388dab5c6e547060a6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cf/431072e24e67e8c31b8ee6786f36d1e8c22b49 b/_git_of_git_commit_id/objects/cf/431072e24e67e8c31b8ee6786f36d1e8c22b49 deleted file mode 100644 index e104a04..0000000 Binary files a/_git_of_git_commit_id/objects/cf/431072e24e67e8c31b8ee6786f36d1e8c22b49 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cf/4ef51f83ab1573b4e6239bec624a4ef78e445a b/_git_of_git_commit_id/objects/cf/4ef51f83ab1573b4e6239bec624a4ef78e445a deleted file mode 100644 index c110e9f..0000000 Binary files a/_git_of_git_commit_id/objects/cf/4ef51f83ab1573b4e6239bec624a4ef78e445a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cf/749fec8300a041f9c0cdd6c8f178e51ad5d151 b/_git_of_git_commit_id/objects/cf/749fec8300a041f9c0cdd6c8f178e51ad5d151 deleted file mode 100644 index 5875886..0000000 Binary files a/_git_of_git_commit_id/objects/cf/749fec8300a041f9c0cdd6c8f178e51ad5d151 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cf/80e029a5c95e788848c86393bf4c3704ab49f3 b/_git_of_git_commit_id/objects/cf/80e029a5c95e788848c86393bf4c3704ab49f3 deleted file mode 100644 index d43c13c..0000000 Binary files a/_git_of_git_commit_id/objects/cf/80e029a5c95e788848c86393bf4c3704ab49f3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cf/88f39d31c3e715c3095f0cbbc77c1b0582dcba b/_git_of_git_commit_id/objects/cf/88f39d31c3e715c3095f0cbbc77c1b0582dcba deleted file mode 100644 index 0c33be7..0000000 Binary files a/_git_of_git_commit_id/objects/cf/88f39d31c3e715c3095f0cbbc77c1b0582dcba and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cf/d98877db88d3d4459f596d88be8d6e163692ce b/_git_of_git_commit_id/objects/cf/d98877db88d3d4459f596d88be8d6e163692ce deleted file mode 100644 index c25eecb..0000000 Binary files a/_git_of_git_commit_id/objects/cf/d98877db88d3d4459f596d88be8d6e163692ce and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cf/daaacdf1b5c540f2dc46ef8127b2d37357232b b/_git_of_git_commit_id/objects/cf/daaacdf1b5c540f2dc46ef8127b2d37357232b deleted file mode 100644 index 3a6a239..0000000 Binary files a/_git_of_git_commit_id/objects/cf/daaacdf1b5c540f2dc46ef8127b2d37357232b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/cf/e3045bb9196ff382b7780d008a3071e989a479 b/_git_of_git_commit_id/objects/cf/e3045bb9196ff382b7780d008a3071e989a479 deleted file mode 100644 index ae4f1e1..0000000 Binary files a/_git_of_git_commit_id/objects/cf/e3045bb9196ff382b7780d008a3071e989a479 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d0/52a741dc70c64a080d322a4692286b4cc0997b b/_git_of_git_commit_id/objects/d0/52a741dc70c64a080d322a4692286b4cc0997b deleted file mode 100644 index 193368e..0000000 --- a/_git_of_git_commit_id/objects/d0/52a741dc70c64a080d322a4692286b4cc0997b +++ /dev/null @@ -1 +0,0 @@ -x+)JMU03c040031Q0M454202I27N366HN5347N17M174N66455c )+;{粩L2uM/* \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/d0/5b011e9d2bd1356327edda37337e958fbbbe65 b/_git_of_git_commit_id/objects/d0/5b011e9d2bd1356327edda37337e958fbbbe65 deleted file mode 100644 index 8711f60..0000000 Binary files a/_git_of_git_commit_id/objects/d0/5b011e9d2bd1356327edda37337e958fbbbe65 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d0/8198a960eb0861ea3098ac4cad5a6d99ad30f2 b/_git_of_git_commit_id/objects/d0/8198a960eb0861ea3098ac4cad5a6d99ad30f2 deleted file mode 100644 index 18519f2..0000000 Binary files a/_git_of_git_commit_id/objects/d0/8198a960eb0861ea3098ac4cad5a6d99ad30f2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d0/aadecef0e3d2a48e2c44a97dca5ff17424f949 b/_git_of_git_commit_id/objects/d0/aadecef0e3d2a48e2c44a97dca5ff17424f949 deleted file mode 100644 index 4eea818..0000000 Binary files a/_git_of_git_commit_id/objects/d0/aadecef0e3d2a48e2c44a97dca5ff17424f949 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d0/b56c5756b68e3839683fdbf86c1d12e8dcc41b b/_git_of_git_commit_id/objects/d0/b56c5756b68e3839683fdbf86c1d12e8dcc41b deleted file mode 100644 index 0705dc4..0000000 Binary files a/_git_of_git_commit_id/objects/d0/b56c5756b68e3839683fdbf86c1d12e8dcc41b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d0/b7a78acde513aed4a32ca28fe86425d2afac0e b/_git_of_git_commit_id/objects/d0/b7a78acde513aed4a32ca28fe86425d2afac0e deleted file mode 100644 index 558decc..0000000 Binary files a/_git_of_git_commit_id/objects/d0/b7a78acde513aed4a32ca28fe86425d2afac0e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d1/0405c63fc1dbc37360c29b67fd05c89194d893 b/_git_of_git_commit_id/objects/d1/0405c63fc1dbc37360c29b67fd05c89194d893 deleted file mode 100644 index 1f0bb80..0000000 Binary files a/_git_of_git_commit_id/objects/d1/0405c63fc1dbc37360c29b67fd05c89194d893 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d1/2a80e7cca39e0e12236f45a654b37942a8b660 b/_git_of_git_commit_id/objects/d1/2a80e7cca39e0e12236f45a654b37942a8b660 deleted file mode 100644 index 6f8a107..0000000 Binary files a/_git_of_git_commit_id/objects/d1/2a80e7cca39e0e12236f45a654b37942a8b660 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d1/483503cba782191a7b39559218b2280e0d0b1d b/_git_of_git_commit_id/objects/d1/483503cba782191a7b39559218b2280e0d0b1d deleted file mode 100644 index 2c8ff1b..0000000 Binary files a/_git_of_git_commit_id/objects/d1/483503cba782191a7b39559218b2280e0d0b1d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d1/777895ac536fa55930fa4f40c812c360df139c b/_git_of_git_commit_id/objects/d1/777895ac536fa55930fa4f40c812c360df139c deleted file mode 100644 index 8af114e..0000000 Binary files a/_git_of_git_commit_id/objects/d1/777895ac536fa55930fa4f40c812c360df139c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d1/834c74637b491cc1c98b2d30164cdc5c24ef72 b/_git_of_git_commit_id/objects/d1/834c74637b491cc1c98b2d30164cdc5c24ef72 deleted file mode 100644 index e7963e7..0000000 Binary files a/_git_of_git_commit_id/objects/d1/834c74637b491cc1c98b2d30164cdc5c24ef72 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d1/e268faa24410a706e66ea0d8e439c92320377d b/_git_of_git_commit_id/objects/d1/e268faa24410a706e66ea0d8e439c92320377d deleted file mode 100644 index 91bac03..0000000 Binary files a/_git_of_git_commit_id/objects/d1/e268faa24410a706e66ea0d8e439c92320377d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d1/e7a81440c3dcaed9bd7bd89e9e7ecbd30ad2dc b/_git_of_git_commit_id/objects/d1/e7a81440c3dcaed9bd7bd89e9e7ecbd30ad2dc deleted file mode 100644 index e72aa03..0000000 Binary files a/_git_of_git_commit_id/objects/d1/e7a81440c3dcaed9bd7bd89e9e7ecbd30ad2dc and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d1/f83562596af27cfcaaa0f6d87b24c8a56c1703 b/_git_of_git_commit_id/objects/d1/f83562596af27cfcaaa0f6d87b24c8a56c1703 deleted file mode 100644 index 590d9a7..0000000 Binary files a/_git_of_git_commit_id/objects/d1/f83562596af27cfcaaa0f6d87b24c8a56c1703 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d2/034cbb39ed1fd45b2ff10bd856ea48c9a39496 b/_git_of_git_commit_id/objects/d2/034cbb39ed1fd45b2ff10bd856ea48c9a39496 deleted file mode 100644 index 8623170..0000000 Binary files a/_git_of_git_commit_id/objects/d2/034cbb39ed1fd45b2ff10bd856ea48c9a39496 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d2/0e77119e89eced7670f079425b9623eae30cb8 b/_git_of_git_commit_id/objects/d2/0e77119e89eced7670f079425b9623eae30cb8 deleted file mode 100644 index 25691e4..0000000 Binary files a/_git_of_git_commit_id/objects/d2/0e77119e89eced7670f079425b9623eae30cb8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d2/394cb168d59bde090ed1b0fa7f793ee510a3c1 b/_git_of_git_commit_id/objects/d2/394cb168d59bde090ed1b0fa7f793ee510a3c1 deleted file mode 100644 index 73860cd..0000000 Binary files a/_git_of_git_commit_id/objects/d2/394cb168d59bde090ed1b0fa7f793ee510a3c1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d2/49cc0b2687813b39103c5f08b6a0cb1571a127 b/_git_of_git_commit_id/objects/d2/49cc0b2687813b39103c5f08b6a0cb1571a127 deleted file mode 100644 index 036f265..0000000 Binary files a/_git_of_git_commit_id/objects/d2/49cc0b2687813b39103c5f08b6a0cb1571a127 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d2/5233e751f6a70132f6b31d16ff1aa176ce51e5 b/_git_of_git_commit_id/objects/d2/5233e751f6a70132f6b31d16ff1aa176ce51e5 deleted file mode 100644 index 30cf0d8..0000000 Binary files a/_git_of_git_commit_id/objects/d2/5233e751f6a70132f6b31d16ff1aa176ce51e5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d2/75609ff1a1dea6d7e2f3823edee43ced09540b b/_git_of_git_commit_id/objects/d2/75609ff1a1dea6d7e2f3823edee43ced09540b deleted file mode 100644 index f565f02..0000000 Binary files a/_git_of_git_commit_id/objects/d2/75609ff1a1dea6d7e2f3823edee43ced09540b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d2/87a6a41da6a6135d603c2ff4558ab6487906c0 b/_git_of_git_commit_id/objects/d2/87a6a41da6a6135d603c2ff4558ab6487906c0 deleted file mode 100644 index 38ec7b6..0000000 Binary files a/_git_of_git_commit_id/objects/d2/87a6a41da6a6135d603c2ff4558ab6487906c0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d2/884193e38011a496f1ee19f43f3c992a6acb1e b/_git_of_git_commit_id/objects/d2/884193e38011a496f1ee19f43f3c992a6acb1e deleted file mode 100644 index 3e7b322..0000000 Binary files a/_git_of_git_commit_id/objects/d2/884193e38011a496f1ee19f43f3c992a6acb1e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d2/a8c0056c495d55ba5d923629651e694103bdf4 b/_git_of_git_commit_id/objects/d2/a8c0056c495d55ba5d923629651e694103bdf4 deleted file mode 100644 index 23c41ef..0000000 Binary files a/_git_of_git_commit_id/objects/d2/a8c0056c495d55ba5d923629651e694103bdf4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d2/cae95350106152f1a99fb93e88d5805aaab61d b/_git_of_git_commit_id/objects/d2/cae95350106152f1a99fb93e88d5805aaab61d deleted file mode 100644 index 88adcb5..0000000 Binary files a/_git_of_git_commit_id/objects/d2/cae95350106152f1a99fb93e88d5805aaab61d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d2/df9ff65f91becba466446a82e40d8d01c65cc8 b/_git_of_git_commit_id/objects/d2/df9ff65f91becba466446a82e40d8d01c65cc8 deleted file mode 100644 index 796c67e..0000000 Binary files a/_git_of_git_commit_id/objects/d2/df9ff65f91becba466446a82e40d8d01c65cc8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d2/f3939f870f570ab7aa39f8b53be98467114969 b/_git_of_git_commit_id/objects/d2/f3939f870f570ab7aa39f8b53be98467114969 deleted file mode 100644 index 53956e7..0000000 Binary files a/_git_of_git_commit_id/objects/d2/f3939f870f570ab7aa39f8b53be98467114969 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d3/225295fb4fc7109fdd1a31dd79646a340f1460 b/_git_of_git_commit_id/objects/d3/225295fb4fc7109fdd1a31dd79646a340f1460 deleted file mode 100644 index c740025..0000000 Binary files a/_git_of_git_commit_id/objects/d3/225295fb4fc7109fdd1a31dd79646a340f1460 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d3/469167e4977a5f12fb6d39e7be886252a6179c b/_git_of_git_commit_id/objects/d3/469167e4977a5f12fb6d39e7be886252a6179c deleted file mode 100644 index ade82fa..0000000 Binary files a/_git_of_git_commit_id/objects/d3/469167e4977a5f12fb6d39e7be886252a6179c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d3/677bb0309ad49f7a8564110cf3a865bac78184 b/_git_of_git_commit_id/objects/d3/677bb0309ad49f7a8564110cf3a865bac78184 deleted file mode 100644 index bd7c95e..0000000 Binary files a/_git_of_git_commit_id/objects/d3/677bb0309ad49f7a8564110cf3a865bac78184 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d3/b97b8c60e0f4af620cd16a08969a0c9ae45ffe b/_git_of_git_commit_id/objects/d3/b97b8c60e0f4af620cd16a08969a0c9ae45ffe deleted file mode 100644 index e14d1a8..0000000 Binary files a/_git_of_git_commit_id/objects/d3/b97b8c60e0f4af620cd16a08969a0c9ae45ffe and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d3/bf85490d90e0f599512e06b39b58efdf950ab5 b/_git_of_git_commit_id/objects/d3/bf85490d90e0f599512e06b39b58efdf950ab5 deleted file mode 100644 index f60ea1d..0000000 Binary files a/_git_of_git_commit_id/objects/d3/bf85490d90e0f599512e06b39b58efdf950ab5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d4/0afdad0e8718ff750a853336f392441dd06b8a b/_git_of_git_commit_id/objects/d4/0afdad0e8718ff750a853336f392441dd06b8a deleted file mode 100644 index ac82ac4..0000000 Binary files a/_git_of_git_commit_id/objects/d4/0afdad0e8718ff750a853336f392441dd06b8a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d4/374371dc3882c90f17130e6abf89cb8d099b31 b/_git_of_git_commit_id/objects/d4/374371dc3882c90f17130e6abf89cb8d099b31 deleted file mode 100644 index 23a077f..0000000 Binary files a/_git_of_git_commit_id/objects/d4/374371dc3882c90f17130e6abf89cb8d099b31 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d4/3c13c57b9e3db6e8b506585bb37fa076351635 b/_git_of_git_commit_id/objects/d4/3c13c57b9e3db6e8b506585bb37fa076351635 deleted file mode 100644 index cb36c29..0000000 Binary files a/_git_of_git_commit_id/objects/d4/3c13c57b9e3db6e8b506585bb37fa076351635 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d4/41c1eb2459cf181ddc1a88cc086b2d33932fe9 b/_git_of_git_commit_id/objects/d4/41c1eb2459cf181ddc1a88cc086b2d33932fe9 deleted file mode 100644 index 331f99d..0000000 Binary files a/_git_of_git_commit_id/objects/d4/41c1eb2459cf181ddc1a88cc086b2d33932fe9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d4/4fde32adb1c22f48da0c7c9392f9c3d5e5fde9 b/_git_of_git_commit_id/objects/d4/4fde32adb1c22f48da0c7c9392f9c3d5e5fde9 deleted file mode 100644 index 396ff23..0000000 Binary files a/_git_of_git_commit_id/objects/d4/4fde32adb1c22f48da0c7c9392f9c3d5e5fde9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d4/7816036185d399255f51b047f44eb21784a94b b/_git_of_git_commit_id/objects/d4/7816036185d399255f51b047f44eb21784a94b deleted file mode 100644 index 55f7d49..0000000 Binary files a/_git_of_git_commit_id/objects/d4/7816036185d399255f51b047f44eb21784a94b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d4/a1082ee33aecee33045158c1103e9b69d47c4b b/_git_of_git_commit_id/objects/d4/a1082ee33aecee33045158c1103e9b69d47c4b deleted file mode 100644 index 7c65640..0000000 Binary files a/_git_of_git_commit_id/objects/d4/a1082ee33aecee33045158c1103e9b69d47c4b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d4/a15f02ca00e703c8507b4111aefaa445295348 b/_git_of_git_commit_id/objects/d4/a15f02ca00e703c8507b4111aefaa445295348 deleted file mode 100644 index 2af528c..0000000 Binary files a/_git_of_git_commit_id/objects/d4/a15f02ca00e703c8507b4111aefaa445295348 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d4/f47234bb78ca2416e6fd0388b59f698ece503e b/_git_of_git_commit_id/objects/d4/f47234bb78ca2416e6fd0388b59f698ece503e deleted file mode 100644 index d8a06de..0000000 Binary files a/_git_of_git_commit_id/objects/d4/f47234bb78ca2416e6fd0388b59f698ece503e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d5/1d80a608add1b649247e922fa0669f05945d80 b/_git_of_git_commit_id/objects/d5/1d80a608add1b649247e922fa0669f05945d80 deleted file mode 100644 index 6e73acf..0000000 Binary files a/_git_of_git_commit_id/objects/d5/1d80a608add1b649247e922fa0669f05945d80 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d5/5f5d8b9d03bb050a956ffed361fe5955e3641b b/_git_of_git_commit_id/objects/d5/5f5d8b9d03bb050a956ffed361fe5955e3641b deleted file mode 100644 index 207bc3d..0000000 Binary files a/_git_of_git_commit_id/objects/d5/5f5d8b9d03bb050a956ffed361fe5955e3641b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d5/6bf9d55251445cc67b68be701f359253beb423 b/_git_of_git_commit_id/objects/d5/6bf9d55251445cc67b68be701f359253beb423 deleted file mode 100644 index 3ddf51a..0000000 Binary files a/_git_of_git_commit_id/objects/d5/6bf9d55251445cc67b68be701f359253beb423 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d5/81c0df68cf4c1b0bf724f0a6914f314e1c354f b/_git_of_git_commit_id/objects/d5/81c0df68cf4c1b0bf724f0a6914f314e1c354f deleted file mode 100644 index 49f9e4b..0000000 Binary files a/_git_of_git_commit_id/objects/d5/81c0df68cf4c1b0bf724f0a6914f314e1c354f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d5/96df6e7295962f52b2015b7c990cf832035ffe b/_git_of_git_commit_id/objects/d5/96df6e7295962f52b2015b7c990cf832035ffe deleted file mode 100644 index 7af7bb9..0000000 Binary files a/_git_of_git_commit_id/objects/d5/96df6e7295962f52b2015b7c990cf832035ffe and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d5/9921ca7da2a1441e814667ff58bb2dbb502c53 b/_git_of_git_commit_id/objects/d5/9921ca7da2a1441e814667ff58bb2dbb502c53 deleted file mode 100644 index 344552a..0000000 --- a/_git_of_git_commit_id/objects/d5/9921ca7da2a1441e814667ff58bb2dbb502c53 +++ /dev/null @@ -1,2 +0,0 @@ -xMj1 @} - AvlɆP/=F4뷄۷x< 2Tj,C䖙hJ9pRXHmD2eբ85f,kF}|>KOYvr} G߿M? 9&LsW N'QOm1n˽6T \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/d5/a9f152aefb06ba34f398175a6e5671407a72b8 b/_git_of_git_commit_id/objects/d5/a9f152aefb06ba34f398175a6e5671407a72b8 deleted file mode 100644 index 88b7223..0000000 Binary files a/_git_of_git_commit_id/objects/d5/a9f152aefb06ba34f398175a6e5671407a72b8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d5/cad9d386fc4e1df9c33633948f47b8a9fee96a b/_git_of_git_commit_id/objects/d5/cad9d386fc4e1df9c33633948f47b8a9fee96a deleted file mode 100644 index 20b9700..0000000 Binary files a/_git_of_git_commit_id/objects/d5/cad9d386fc4e1df9c33633948f47b8a9fee96a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d5/ef46b51604977c518b122fccf5b9dd762f789b b/_git_of_git_commit_id/objects/d5/ef46b51604977c518b122fccf5b9dd762f789b deleted file mode 100644 index 316351b..0000000 Binary files a/_git_of_git_commit_id/objects/d5/ef46b51604977c518b122fccf5b9dd762f789b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d5/f9a99b78ae94a371e5948763e51d35a29f8df0 b/_git_of_git_commit_id/objects/d5/f9a99b78ae94a371e5948763e51d35a29f8df0 deleted file mode 100644 index 439cb6d..0000000 Binary files a/_git_of_git_commit_id/objects/d5/f9a99b78ae94a371e5948763e51d35a29f8df0 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d6/02cca867bc88919bb5e6e07b44ff65040c09b4 b/_git_of_git_commit_id/objects/d6/02cca867bc88919bb5e6e07b44ff65040c09b4 deleted file mode 100644 index 3f4d852..0000000 Binary files a/_git_of_git_commit_id/objects/d6/02cca867bc88919bb5e6e07b44ff65040c09b4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d6/0415fdcc2c077100e0d2389ea394cfa25ef288 b/_git_of_git_commit_id/objects/d6/0415fdcc2c077100e0d2389ea394cfa25ef288 deleted file mode 100644 index 6975df5..0000000 Binary files a/_git_of_git_commit_id/objects/d6/0415fdcc2c077100e0d2389ea394cfa25ef288 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d6/30934d3485e4876f05d0abb6bc0d5b8cc85306 b/_git_of_git_commit_id/objects/d6/30934d3485e4876f05d0abb6bc0d5b8cc85306 deleted file mode 100644 index 8141895..0000000 Binary files a/_git_of_git_commit_id/objects/d6/30934d3485e4876f05d0abb6bc0d5b8cc85306 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d6/3116c6a19358a97f5fb33dc0b84144f6fcaa7b b/_git_of_git_commit_id/objects/d6/3116c6a19358a97f5fb33dc0b84144f6fcaa7b deleted file mode 100644 index c87d228..0000000 Binary files a/_git_of_git_commit_id/objects/d6/3116c6a19358a97f5fb33dc0b84144f6fcaa7b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d6/5b8b2fc79b19aec84e03a5bf786887442a9098 b/_git_of_git_commit_id/objects/d6/5b8b2fc79b19aec84e03a5bf786887442a9098 deleted file mode 100644 index b61f091..0000000 Binary files a/_git_of_git_commit_id/objects/d6/5b8b2fc79b19aec84e03a5bf786887442a9098 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d6/6dcb06b013df39aa559d6750908996a96015fb b/_git_of_git_commit_id/objects/d6/6dcb06b013df39aa559d6750908996a96015fb deleted file mode 100644 index 0c762f7..0000000 Binary files a/_git_of_git_commit_id/objects/d6/6dcb06b013df39aa559d6750908996a96015fb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d6/7ed645491e5dd792fb50a0f16b8e7adc1dd228 b/_git_of_git_commit_id/objects/d6/7ed645491e5dd792fb50a0f16b8e7adc1dd228 deleted file mode 100644 index 154a1be..0000000 Binary files a/_git_of_git_commit_id/objects/d6/7ed645491e5dd792fb50a0f16b8e7adc1dd228 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d6/c0e5be89d25fe17e550142a75f803eaa25609f b/_git_of_git_commit_id/objects/d6/c0e5be89d25fe17e550142a75f803eaa25609f deleted file mode 100644 index 6cae735..0000000 Binary files a/_git_of_git_commit_id/objects/d6/c0e5be89d25fe17e550142a75f803eaa25609f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d6/cd7971a3f067df0393db2d3ff61ead0bcf46de b/_git_of_git_commit_id/objects/d6/cd7971a3f067df0393db2d3ff61ead0bcf46de deleted file mode 100644 index 3865e02..0000000 Binary files a/_git_of_git_commit_id/objects/d6/cd7971a3f067df0393db2d3ff61ead0bcf46de and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d7/027aaaccb202f2854827cbe79d0d6c1b5328b2 b/_git_of_git_commit_id/objects/d7/027aaaccb202f2854827cbe79d0d6c1b5328b2 deleted file mode 100644 index a291773..0000000 --- a/_git_of_git_commit_id/objects/d7/027aaaccb202f2854827cbe79d0d6c1b5328b2 +++ /dev/null @@ -1 +0,0 @@ -x+)JMU03c040031Q0M435MKJLH5RIIIFF)IfFffɩi g6$9!z&Ũ?}Tӟu0Nh \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/d7/558de5ffc70a995c08c9951fbb8309edbf825f b/_git_of_git_commit_id/objects/d7/558de5ffc70a995c08c9951fbb8309edbf825f deleted file mode 100644 index 3910817..0000000 Binary files a/_git_of_git_commit_id/objects/d7/558de5ffc70a995c08c9951fbb8309edbf825f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d7/5a655fbac8e4fbaba80bb8a722db65266ce3f1 b/_git_of_git_commit_id/objects/d7/5a655fbac8e4fbaba80bb8a722db65266ce3f1 deleted file mode 100644 index ccb061d..0000000 Binary files a/_git_of_git_commit_id/objects/d7/5a655fbac8e4fbaba80bb8a722db65266ce3f1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d7/78c2df4349e4aab79b23c4cee1aad281122647 b/_git_of_git_commit_id/objects/d7/78c2df4349e4aab79b23c4cee1aad281122647 deleted file mode 100644 index cd990d0..0000000 Binary files a/_git_of_git_commit_id/objects/d7/78c2df4349e4aab79b23c4cee1aad281122647 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d7/986e7ed7307536c24df56230878d29fe82d15d b/_git_of_git_commit_id/objects/d7/986e7ed7307536c24df56230878d29fe82d15d deleted file mode 100644 index 082c8c7..0000000 Binary files a/_git_of_git_commit_id/objects/d7/986e7ed7307536c24df56230878d29fe82d15d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d8/0a3655e57ae405ad12e0ea3b93fd1628f3df96 b/_git_of_git_commit_id/objects/d8/0a3655e57ae405ad12e0ea3b93fd1628f3df96 deleted file mode 100644 index e5fccd8..0000000 Binary files a/_git_of_git_commit_id/objects/d8/0a3655e57ae405ad12e0ea3b93fd1628f3df96 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d8/6689c99e80b281fd66a3a0f53d9464fb6c5012 b/_git_of_git_commit_id/objects/d8/6689c99e80b281fd66a3a0f53d9464fb6c5012 deleted file mode 100644 index cbfd96d..0000000 Binary files a/_git_of_git_commit_id/objects/d8/6689c99e80b281fd66a3a0f53d9464fb6c5012 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d8/71ca87749ec1d24c67ff57cfa29a5489d9ff4a b/_git_of_git_commit_id/objects/d8/71ca87749ec1d24c67ff57cfa29a5489d9ff4a deleted file mode 100644 index 99544a2..0000000 Binary files a/_git_of_git_commit_id/objects/d8/71ca87749ec1d24c67ff57cfa29a5489d9ff4a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d8/ce2978c3a77f5bd3651f5c995b107f483ef473 b/_git_of_git_commit_id/objects/d8/ce2978c3a77f5bd3651f5c995b107f483ef473 deleted file mode 100644 index aa3fda1..0000000 Binary files a/_git_of_git_commit_id/objects/d8/ce2978c3a77f5bd3651f5c995b107f483ef473 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d8/d518e8c76215b75dd6d6cbb06ad611ecfbcb2a b/_git_of_git_commit_id/objects/d8/d518e8c76215b75dd6d6cbb06ad611ecfbcb2a deleted file mode 100644 index 3985f3f..0000000 Binary files a/_git_of_git_commit_id/objects/d8/d518e8c76215b75dd6d6cbb06ad611ecfbcb2a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d8/d9f872d0ce7ca6be45ceb17b6972520c324a1e b/_git_of_git_commit_id/objects/d8/d9f872d0ce7ca6be45ceb17b6972520c324a1e deleted file mode 100644 index c87f1b6..0000000 Binary files a/_git_of_git_commit_id/objects/d8/d9f872d0ce7ca6be45ceb17b6972520c324a1e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d8/ee4c528729c3e5b3b46cf21763797873a50329 b/_git_of_git_commit_id/objects/d8/ee4c528729c3e5b3b46cf21763797873a50329 deleted file mode 100644 index ba7d56c..0000000 Binary files a/_git_of_git_commit_id/objects/d8/ee4c528729c3e5b3b46cf21763797873a50329 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d9/2823ad9b2076e260848eb8c74f1475068938a4 b/_git_of_git_commit_id/objects/d9/2823ad9b2076e260848eb8c74f1475068938a4 deleted file mode 100644 index 834d10a..0000000 Binary files a/_git_of_git_commit_id/objects/d9/2823ad9b2076e260848eb8c74f1475068938a4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d9/3ca4c67159638eb90119391107bf5972f243a7 b/_git_of_git_commit_id/objects/d9/3ca4c67159638eb90119391107bf5972f243a7 deleted file mode 100644 index f0897fc..0000000 Binary files a/_git_of_git_commit_id/objects/d9/3ca4c67159638eb90119391107bf5972f243a7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d9/3fd7dde87a91cd40e55fd435fa5237b6a91586 b/_git_of_git_commit_id/objects/d9/3fd7dde87a91cd40e55fd435fa5237b6a91586 deleted file mode 100644 index cf4ef51..0000000 Binary files a/_git_of_git_commit_id/objects/d9/3fd7dde87a91cd40e55fd435fa5237b6a91586 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/d9/f6b25f63a3f6163204d401cd894155852e15fa b/_git_of_git_commit_id/objects/d9/f6b25f63a3f6163204d401cd894155852e15fa deleted file mode 100644 index 19dd72f..0000000 Binary files a/_git_of_git_commit_id/objects/d9/f6b25f63a3f6163204d401cd894155852e15fa and /dev/null differ diff --git a/_git_of_git_commit_id/objects/da/03347ec81f1714df3b9e47f12d856bf99e7b3b b/_git_of_git_commit_id/objects/da/03347ec81f1714df3b9e47f12d856bf99e7b3b deleted file mode 100644 index 8e2dc9b..0000000 Binary files a/_git_of_git_commit_id/objects/da/03347ec81f1714df3b9e47f12d856bf99e7b3b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/da/0efe78987d761c69faa0d3998caf5ea247bd79 b/_git_of_git_commit_id/objects/da/0efe78987d761c69faa0d3998caf5ea247bd79 deleted file mode 100644 index de1713e..0000000 Binary files a/_git_of_git_commit_id/objects/da/0efe78987d761c69faa0d3998caf5ea247bd79 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/da/1c746d2bd6315adce0b20b7a53605a902d3eb6 b/_git_of_git_commit_id/objects/da/1c746d2bd6315adce0b20b7a53605a902d3eb6 deleted file mode 100644 index c3de8b7..0000000 Binary files a/_git_of_git_commit_id/objects/da/1c746d2bd6315adce0b20b7a53605a902d3eb6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/da/4f948063ce79aa1e7bb667bfa7790aa5258412 b/_git_of_git_commit_id/objects/da/4f948063ce79aa1e7bb667bfa7790aa5258412 deleted file mode 100644 index afc9bc3..0000000 Binary files a/_git_of_git_commit_id/objects/da/4f948063ce79aa1e7bb667bfa7790aa5258412 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/da/508e47e7fd5537f167546c5c9511d5910dd7d7 b/_git_of_git_commit_id/objects/da/508e47e7fd5537f167546c5c9511d5910dd7d7 deleted file mode 100644 index b19a5c7..0000000 Binary files a/_git_of_git_commit_id/objects/da/508e47e7fd5537f167546c5c9511d5910dd7d7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/da/689d27b31d8309cd64e3340c7d035fafe8ec41 b/_git_of_git_commit_id/objects/da/689d27b31d8309cd64e3340c7d035fafe8ec41 deleted file mode 100644 index f8d7f86..0000000 --- a/_git_of_git_commit_id/objects/da/689d27b31d8309cd64e3340c7d035fafe8ec41 +++ /dev/null @@ -1 +0,0 @@ -x+)JMU046b040031Q0L510M072O5L0N03M605"CDKs DsbL;g9(f=oq= ifƉfɩiiIi)))&IF otO [) -R^ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/db/ccaf520c2c25038a21feca7ee9b2fa4da2f08b b/_git_of_git_commit_id/objects/db/ccaf520c2c25038a21feca7ee9b2fa4da2f08b deleted file mode 100644 index 433c4b6..0000000 --- a/_git_of_git_commit_id/objects/db/ccaf520c2c25038a21feca7ee9b2fa4da2f08b +++ /dev/null @@ -1 +0,0 @@ -xKOR05d` 50K60d`jmZg͕'Bl&߭^BWYT9 ~_<& \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/db/ec6a727f4c93ab9e3c4f20cf57a0fa4c8a965d b/_git_of_git_commit_id/objects/db/ec6a727f4c93ab9e3c4f20cf57a0fa4c8a965d deleted file mode 100644 index 0a9ebb7..0000000 Binary files a/_git_of_git_commit_id/objects/db/ec6a727f4c93ab9e3c4f20cf57a0fa4c8a965d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/dc/c01ac0e55d5dcb1fba008da72cba8416cbb049 b/_git_of_git_commit_id/objects/dc/c01ac0e55d5dcb1fba008da72cba8416cbb049 deleted file mode 100644 index 9c292f8..0000000 Binary files a/_git_of_git_commit_id/objects/dc/c01ac0e55d5dcb1fba008da72cba8416cbb049 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/dc/c6edf03d0029b2aff37a11007e14d815afd33b b/_git_of_git_commit_id/objects/dc/c6edf03d0029b2aff37a11007e14d815afd33b deleted file mode 100644 index 9ed8bd5..0000000 Binary files a/_git_of_git_commit_id/objects/dc/c6edf03d0029b2aff37a11007e14d815afd33b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/dd/3bbc698447ecdf0c6b74fb2772beaebee98ced b/_git_of_git_commit_id/objects/dd/3bbc698447ecdf0c6b74fb2772beaebee98ced deleted file mode 100644 index 512ef93..0000000 Binary files a/_git_of_git_commit_id/objects/dd/3bbc698447ecdf0c6b74fb2772beaebee98ced and /dev/null differ diff --git a/_git_of_git_commit_id/objects/dd/4b871212e2c674a245ca759ccbf071f5c7d487 b/_git_of_git_commit_id/objects/dd/4b871212e2c674a245ca759ccbf071f5c7d487 deleted file mode 100644 index 86a154a..0000000 Binary files a/_git_of_git_commit_id/objects/dd/4b871212e2c674a245ca759ccbf071f5c7d487 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/dd/c4c514110256efdd042fee5a75d5f2968c04f7 b/_git_of_git_commit_id/objects/dd/c4c514110256efdd042fee5a75d5f2968c04f7 deleted file mode 100644 index d2a0c73..0000000 Binary files a/_git_of_git_commit_id/objects/dd/c4c514110256efdd042fee5a75d5f2968c04f7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/de/31ccf867111a333acbfe5eae7ffd27f9ee5f2e b/_git_of_git_commit_id/objects/de/31ccf867111a333acbfe5eae7ffd27f9ee5f2e deleted file mode 100644 index 7f89579..0000000 Binary files a/_git_of_git_commit_id/objects/de/31ccf867111a333acbfe5eae7ffd27f9ee5f2e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/de/504d84aae98db0ed25c0704cb0eea74cb68a71 b/_git_of_git_commit_id/objects/de/504d84aae98db0ed25c0704cb0eea74cb68a71 deleted file mode 100644 index d120166..0000000 Binary files a/_git_of_git_commit_id/objects/de/504d84aae98db0ed25c0704cb0eea74cb68a71 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/de/be48966aac04a00cca95f3d234b720e5c8c4e2 b/_git_of_git_commit_id/objects/de/be48966aac04a00cca95f3d234b720e5c8c4e2 deleted file mode 100644 index 86b1d99..0000000 Binary files a/_git_of_git_commit_id/objects/de/be48966aac04a00cca95f3d234b720e5c8c4e2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/de/e6e99ebf20cd93cef00da94a2960281227ee9f b/_git_of_git_commit_id/objects/de/e6e99ebf20cd93cef00da94a2960281227ee9f deleted file mode 100644 index aa5d504..0000000 Binary files a/_git_of_git_commit_id/objects/de/e6e99ebf20cd93cef00da94a2960281227ee9f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/df/72109c765ecd2b54bceea2c7279a5df8784e07 b/_git_of_git_commit_id/objects/df/72109c765ecd2b54bceea2c7279a5df8784e07 deleted file mode 100644 index 86b708d..0000000 Binary files a/_git_of_git_commit_id/objects/df/72109c765ecd2b54bceea2c7279a5df8784e07 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/df/939914a15b86f1659db5e3eac4dd6ae7b0c23b b/_git_of_git_commit_id/objects/df/939914a15b86f1659db5e3eac4dd6ae7b0c23b deleted file mode 100644 index 2e2feb3..0000000 Binary files a/_git_of_git_commit_id/objects/df/939914a15b86f1659db5e3eac4dd6ae7b0c23b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/df/a031c6c1394f36a57e707158cd7283ef2f1cde b/_git_of_git_commit_id/objects/df/a031c6c1394f36a57e707158cd7283ef2f1cde deleted file mode 100644 index 5beac8c..0000000 Binary files a/_git_of_git_commit_id/objects/df/a031c6c1394f36a57e707158cd7283ef2f1cde and /dev/null differ diff --git a/_git_of_git_commit_id/objects/df/c83820f9ae152bb59edd8d9682987c579e38ec b/_git_of_git_commit_id/objects/df/c83820f9ae152bb59edd8d9682987c579e38ec deleted file mode 100644 index 4b81e32..0000000 Binary files a/_git_of_git_commit_id/objects/df/c83820f9ae152bb59edd8d9682987c579e38ec and /dev/null differ diff --git a/_git_of_git_commit_id/objects/df/d93b07fd2b7e8674b26425487ddc96e767764b b/_git_of_git_commit_id/objects/df/d93b07fd2b7e8674b26425487ddc96e767764b deleted file mode 100644 index b346aab..0000000 Binary files a/_git_of_git_commit_id/objects/df/d93b07fd2b7e8674b26425487ddc96e767764b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/df/ded2fce4a9278a992ed3558fe2f3031446b414 b/_git_of_git_commit_id/objects/df/ded2fce4a9278a992ed3558fe2f3031446b414 deleted file mode 100644 index 8a92b29..0000000 Binary files a/_git_of_git_commit_id/objects/df/ded2fce4a9278a992ed3558fe2f3031446b414 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/df/f5f3a5d02a71dcf47f617135ac04564aa75973 b/_git_of_git_commit_id/objects/df/f5f3a5d02a71dcf47f617135ac04564aa75973 deleted file mode 100644 index e380204..0000000 Binary files a/_git_of_git_commit_id/objects/df/f5f3a5d02a71dcf47f617135ac04564aa75973 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e0/23c01a82bf6112c2a8073bf06ae789c6e163f1 b/_git_of_git_commit_id/objects/e0/23c01a82bf6112c2a8073bf06ae789c6e163f1 deleted file mode 100644 index 2c685c1..0000000 Binary files a/_git_of_git_commit_id/objects/e0/23c01a82bf6112c2a8073bf06ae789c6e163f1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e0/328251c3d3337fbd3757cf77a53b7237397b3a b/_git_of_git_commit_id/objects/e0/328251c3d3337fbd3757cf77a53b7237397b3a deleted file mode 100644 index 69e238e..0000000 Binary files a/_git_of_git_commit_id/objects/e0/328251c3d3337fbd3757cf77a53b7237397b3a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e0/32ed7f8a53f6650194e067b6544bf5b0ec2ec7 b/_git_of_git_commit_id/objects/e0/32ed7f8a53f6650194e067b6544bf5b0ec2ec7 deleted file mode 100644 index cc5cd40..0000000 Binary files a/_git_of_git_commit_id/objects/e0/32ed7f8a53f6650194e067b6544bf5b0ec2ec7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e0/5c7d841c7be397fd2e5e55eec281858f0aef10 b/_git_of_git_commit_id/objects/e0/5c7d841c7be397fd2e5e55eec281858f0aef10 deleted file mode 100644 index 1e7c543..0000000 Binary files a/_git_of_git_commit_id/objects/e0/5c7d841c7be397fd2e5e55eec281858f0aef10 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e0/7b30696031940d29fef494bcba2c8cd91965c1 b/_git_of_git_commit_id/objects/e0/7b30696031940d29fef494bcba2c8cd91965c1 deleted file mode 100644 index 93f52b1..0000000 Binary files a/_git_of_git_commit_id/objects/e0/7b30696031940d29fef494bcba2c8cd91965c1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e0/887097fd8ada159f97808a14b51fe6ac40e8e3 b/_git_of_git_commit_id/objects/e0/887097fd8ada159f97808a14b51fe6ac40e8e3 deleted file mode 100644 index 9fd5f73..0000000 Binary files a/_git_of_git_commit_id/objects/e0/887097fd8ada159f97808a14b51fe6ac40e8e3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e0/c68a258ffbd9da3a63819f4952f73802a808ae b/_git_of_git_commit_id/objects/e0/c68a258ffbd9da3a63819f4952f73802a808ae deleted file mode 100644 index f7cfc63..0000000 Binary files a/_git_of_git_commit_id/objects/e0/c68a258ffbd9da3a63819f4952f73802a808ae and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e0/c7e1820d8ff3bd05a0fd863d74c4c226d913d1 b/_git_of_git_commit_id/objects/e0/c7e1820d8ff3bd05a0fd863d74c4c226d913d1 deleted file mode 100644 index fa27d11..0000000 Binary files a/_git_of_git_commit_id/objects/e0/c7e1820d8ff3bd05a0fd863d74c4c226d913d1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e0/d39cf77caad5392108fd4e1b43b4e8ca1e6502 b/_git_of_git_commit_id/objects/e0/d39cf77caad5392108fd4e1b43b4e8ca1e6502 deleted file mode 100644 index 95dfb4c..0000000 Binary files a/_git_of_git_commit_id/objects/e0/d39cf77caad5392108fd4e1b43b4e8ca1e6502 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e1/04a04987e3d42cef03b57f3ea4421e3469c54f b/_git_of_git_commit_id/objects/e1/04a04987e3d42cef03b57f3ea4421e3469c54f deleted file mode 100644 index ab69a72..0000000 Binary files a/_git_of_git_commit_id/objects/e1/04a04987e3d42cef03b57f3ea4421e3469c54f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e1/36f0978d3ec065c04341dc054863ad6b3fb6a7 b/_git_of_git_commit_id/objects/e1/36f0978d3ec065c04341dc054863ad6b3fb6a7 deleted file mode 100644 index cf48bad..0000000 Binary files a/_git_of_git_commit_id/objects/e1/36f0978d3ec065c04341dc054863ad6b3fb6a7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e1/5b957922824b73f330ce6173d75d713c329556 b/_git_of_git_commit_id/objects/e1/5b957922824b73f330ce6173d75d713c329556 deleted file mode 100644 index 8d54767..0000000 Binary files a/_git_of_git_commit_id/objects/e1/5b957922824b73f330ce6173d75d713c329556 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e1/77133e5592f4c746e122667c06bf2408be59e6 b/_git_of_git_commit_id/objects/e1/77133e5592f4c746e122667c06bf2408be59e6 deleted file mode 100644 index 0085c87..0000000 Binary files a/_git_of_git_commit_id/objects/e1/77133e5592f4c746e122667c06bf2408be59e6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e2/4360d4978fea78e70eb44909642b4ab808d686 b/_git_of_git_commit_id/objects/e2/4360d4978fea78e70eb44909642b4ab808d686 deleted file mode 100644 index f8f9da5..0000000 Binary files a/_git_of_git_commit_id/objects/e2/4360d4978fea78e70eb44909642b4ab808d686 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e2/8feb6725e80851224ed0ae62b94ca41d95b0e5 b/_git_of_git_commit_id/objects/e2/8feb6725e80851224ed0ae62b94ca41d95b0e5 deleted file mode 100644 index 31c5128..0000000 Binary files a/_git_of_git_commit_id/objects/e2/8feb6725e80851224ed0ae62b94ca41d95b0e5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e2/c0579bad7ab721942a1299291c103ff3084491 b/_git_of_git_commit_id/objects/e2/c0579bad7ab721942a1299291c103ff3084491 deleted file mode 100644 index 7713cf9..0000000 Binary files a/_git_of_git_commit_id/objects/e2/c0579bad7ab721942a1299291c103ff3084491 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e2/d4fb2d63fb0f25ae168281d7dadfeb131bc110 b/_git_of_git_commit_id/objects/e2/d4fb2d63fb0f25ae168281d7dadfeb131bc110 deleted file mode 100644 index 34bfc27..0000000 --- a/_git_of_git_commit_id/objects/e2/d4fb2d63fb0f25ae168281d7dadfeb131bc110 +++ /dev/null @@ -1 +0,0 @@ -xMN0a>Fc{B+NXL&͏7`,^}:7pZU*ArИR$HhRYAOBc$Tec3CLrP7ُ?wp;X4sȘ4KTY0K -@sx|מ?}{OgZj \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/e3/3ce131f939827b2e5497d284a322cd1ac029cb b/_git_of_git_commit_id/objects/e3/3ce131f939827b2e5497d284a322cd1ac029cb deleted file mode 100644 index 64dc1fc..0000000 Binary files a/_git_of_git_commit_id/objects/e3/3ce131f939827b2e5497d284a322cd1ac029cb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e3/44d4c521bc5fd307985ecb388165c3738ae9d2 b/_git_of_git_commit_id/objects/e3/44d4c521bc5fd307985ecb388165c3738ae9d2 deleted file mode 100644 index 9ab457f..0000000 Binary files a/_git_of_git_commit_id/objects/e3/44d4c521bc5fd307985ecb388165c3738ae9d2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e3/55b42d642d414a88b3a66223e1de2b33c768ed b/_git_of_git_commit_id/objects/e3/55b42d642d414a88b3a66223e1de2b33c768ed deleted file mode 100644 index 1e8699f..0000000 Binary files a/_git_of_git_commit_id/objects/e3/55b42d642d414a88b3a66223e1de2b33c768ed and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e3/6d4cb7a1e34a0e7f565f363495b931a8554114 b/_git_of_git_commit_id/objects/e3/6d4cb7a1e34a0e7f565f363495b931a8554114 deleted file mode 100644 index 5823597..0000000 Binary files a/_git_of_git_commit_id/objects/e3/6d4cb7a1e34a0e7f565f363495b931a8554114 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e3/80204585fd9194e1a185fc655a0633aa571aa8 b/_git_of_git_commit_id/objects/e3/80204585fd9194e1a185fc655a0633aa571aa8 deleted file mode 100644 index 5275fd1..0000000 Binary files a/_git_of_git_commit_id/objects/e3/80204585fd9194e1a185fc655a0633aa571aa8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e3/caac2ffd7e783be102287f9e729e5209e29aa2 b/_git_of_git_commit_id/objects/e3/caac2ffd7e783be102287f9e729e5209e29aa2 deleted file mode 100644 index 389ce0f..0000000 Binary files a/_git_of_git_commit_id/objects/e3/caac2ffd7e783be102287f9e729e5209e29aa2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e3/ec8bf486c76d7ae32f9e4e3b531b4c97d2ccdd b/_git_of_git_commit_id/objects/e3/ec8bf486c76d7ae32f9e4e3b531b4c97d2ccdd deleted file mode 100644 index a4858ff..0000000 Binary files a/_git_of_git_commit_id/objects/e3/ec8bf486c76d7ae32f9e4e3b531b4c97d2ccdd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e4/17517c784bfce276c6d9db55644f74c256d9ac b/_git_of_git_commit_id/objects/e4/17517c784bfce276c6d9db55644f74c256d9ac deleted file mode 100644 index 9537a08..0000000 Binary files a/_git_of_git_commit_id/objects/e4/17517c784bfce276c6d9db55644f74c256d9ac and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e4/4374d4b722065bbd610632690ccb3b213f6435 b/_git_of_git_commit_id/objects/e4/4374d4b722065bbd610632690ccb3b213f6435 deleted file mode 100644 index 3cdd657..0000000 Binary files a/_git_of_git_commit_id/objects/e4/4374d4b722065bbd610632690ccb3b213f6435 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e4/443de7e3ede0d0059efdcc1fb5f5ba8361d4db b/_git_of_git_commit_id/objects/e4/443de7e3ede0d0059efdcc1fb5f5ba8361d4db deleted file mode 100644 index a85d9a8..0000000 Binary files a/_git_of_git_commit_id/objects/e4/443de7e3ede0d0059efdcc1fb5f5ba8361d4db and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e4/a0c225a6174994b713f8bc863f4391e2565818 b/_git_of_git_commit_id/objects/e4/a0c225a6174994b713f8bc863f4391e2565818 deleted file mode 100644 index 6fef44f..0000000 Binary files a/_git_of_git_commit_id/objects/e4/a0c225a6174994b713f8bc863f4391e2565818 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e4/c633464ada13bee9f2bb004ae6b131492f2581 b/_git_of_git_commit_id/objects/e4/c633464ada13bee9f2bb004ae6b131492f2581 deleted file mode 100644 index b43009f..0000000 Binary files a/_git_of_git_commit_id/objects/e4/c633464ada13bee9f2bb004ae6b131492f2581 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e4/ee6bc485526135e55e218b32a73c643c36b318 b/_git_of_git_commit_id/objects/e4/ee6bc485526135e55e218b32a73c643c36b318 deleted file mode 100644 index 141979e..0000000 Binary files a/_git_of_git_commit_id/objects/e4/ee6bc485526135e55e218b32a73c643c36b318 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e5/30afebd3a120115fb5fc6331eab2c6c5d4deb4 b/_git_of_git_commit_id/objects/e5/30afebd3a120115fb5fc6331eab2c6c5d4deb4 deleted file mode 100644 index 5ca20c4..0000000 Binary files a/_git_of_git_commit_id/objects/e5/30afebd3a120115fb5fc6331eab2c6c5d4deb4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e5/4beb6d5e06e1fd27d1cc105814f3f8865a3e6f b/_git_of_git_commit_id/objects/e5/4beb6d5e06e1fd27d1cc105814f3f8865a3e6f deleted file mode 100644 index 21cf239..0000000 Binary files a/_git_of_git_commit_id/objects/e5/4beb6d5e06e1fd27d1cc105814f3f8865a3e6f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e5/5c6b0f0b048fe723befb5f68afadced1da6702 b/_git_of_git_commit_id/objects/e5/5c6b0f0b048fe723befb5f68afadced1da6702 deleted file mode 100644 index e032ed7..0000000 Binary files a/_git_of_git_commit_id/objects/e5/5c6b0f0b048fe723befb5f68afadced1da6702 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e5/9ced98d94b09ae9c0cc4c2b0a4cc3a1d105293 b/_git_of_git_commit_id/objects/e5/9ced98d94b09ae9c0cc4c2b0a4cc3a1d105293 deleted file mode 100644 index 6afbf65..0000000 Binary files a/_git_of_git_commit_id/objects/e5/9ced98d94b09ae9c0cc4c2b0a4cc3a1d105293 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e5/ab9a6c3a06107933c4902e1cdfe01b879fd9ac b/_git_of_git_commit_id/objects/e5/ab9a6c3a06107933c4902e1cdfe01b879fd9ac deleted file mode 100644 index 604bfd6..0000000 Binary files a/_git_of_git_commit_id/objects/e5/ab9a6c3a06107933c4902e1cdfe01b879fd9ac and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e5/f3902cdb3019d801966ea9e9b68c19cb4d8fa1 b/_git_of_git_commit_id/objects/e5/f3902cdb3019d801966ea9e9b68c19cb4d8fa1 deleted file mode 100644 index cb0435c..0000000 Binary files a/_git_of_git_commit_id/objects/e5/f3902cdb3019d801966ea9e9b68c19cb4d8fa1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e6/9972a7ade9d288d9909f52e949c6e22455008e b/_git_of_git_commit_id/objects/e6/9972a7ade9d288d9909f52e949c6e22455008e deleted file mode 100644 index 729b4b6..0000000 Binary files a/_git_of_git_commit_id/objects/e6/9972a7ade9d288d9909f52e949c6e22455008e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 b/_git_of_git_commit_id/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 deleted file mode 100644 index 7112238..0000000 Binary files a/_git_of_git_commit_id/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e6/cb0b22acb931bf331c591583bc476f51fdd018 b/_git_of_git_commit_id/objects/e6/cb0b22acb931bf331c591583bc476f51fdd018 deleted file mode 100644 index 8cff925..0000000 Binary files a/_git_of_git_commit_id/objects/e6/cb0b22acb931bf331c591583bc476f51fdd018 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e6/d7011ac6f60db92721ded0058cf942bb96ac76 b/_git_of_git_commit_id/objects/e6/d7011ac6f60db92721ded0058cf942bb96ac76 deleted file mode 100644 index 04fbfa7..0000000 Binary files a/_git_of_git_commit_id/objects/e6/d7011ac6f60db92721ded0058cf942bb96ac76 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e7/15e106e80fefc6e09a006d00d1dab02c47c809 b/_git_of_git_commit_id/objects/e7/15e106e80fefc6e09a006d00d1dab02c47c809 deleted file mode 100644 index 13ce515..0000000 Binary files a/_git_of_git_commit_id/objects/e7/15e106e80fefc6e09a006d00d1dab02c47c809 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e7/2625b1bd8008feeb32244dcf02e3392b017a2b b/_git_of_git_commit_id/objects/e7/2625b1bd8008feeb32244dcf02e3392b017a2b deleted file mode 100644 index 2b35e29..0000000 Binary files a/_git_of_git_commit_id/objects/e7/2625b1bd8008feeb32244dcf02e3392b017a2b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e7/758a23ccf2271afc4702888562ee5bef5cb5ee b/_git_of_git_commit_id/objects/e7/758a23ccf2271afc4702888562ee5bef5cb5ee deleted file mode 100644 index 025b69b..0000000 Binary files a/_git_of_git_commit_id/objects/e7/758a23ccf2271afc4702888562ee5bef5cb5ee and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e7/a1e817341a1d8c959ffe205a0fa064188ac368 b/_git_of_git_commit_id/objects/e7/a1e817341a1d8c959ffe205a0fa064188ac368 deleted file mode 100644 index 8d5542f..0000000 --- a/_git_of_git_commit_id/objects/e7/a1e817341a1d8c959ffe205a0fa064188ac368 +++ /dev/null @@ -1 +0,0 @@ -xMj@ @ڇ41})Qd:=f<-7->iZ5ҾP11ɂ>)KWHeϙ<E=w9E엲^c'[*\we_<4ץi 鴌/RJĉN/U( 2T8'\Gw^/ĚW \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/e7/e4832bf57f3d1fec248246951bb8618f29fa86 b/_git_of_git_commit_id/objects/e7/e4832bf57f3d1fec248246951bb8618f29fa86 deleted file mode 100644 index f007dce..0000000 Binary files a/_git_of_git_commit_id/objects/e7/e4832bf57f3d1fec248246951bb8618f29fa86 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e8/64dd23b49ac6941ec102967a44478159318a45 b/_git_of_git_commit_id/objects/e8/64dd23b49ac6941ec102967a44478159318a45 deleted file mode 100644 index 39e9f11..0000000 Binary files a/_git_of_git_commit_id/objects/e8/64dd23b49ac6941ec102967a44478159318a45 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e8/785cceaac786e13bd0dbaf3118f12ed032a369 b/_git_of_git_commit_id/objects/e8/785cceaac786e13bd0dbaf3118f12ed032a369 deleted file mode 100644 index 8bca0ab..0000000 --- a/_git_of_git_commit_id/objects/e8/785cceaac786e13bd0dbaf3118f12ed032a369 +++ /dev/null @@ -1,2 +0,0 @@ -xj0D{W,dI,(Rz5ki(%#o f|Ġuča]/(-j{AC4k0ĀQ,ب0q֑3t·LtHQ*3j%Ɨ૖1N ަ8ciJ;}X;tZg4H%Lo%q [mϺ{-Ra:7SW;ZL1g|kBp -F:__p \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/e8/920e3e54215ab8970e30f3f2924e0d0e00c605 b/_git_of_git_commit_id/objects/e8/920e3e54215ab8970e30f3f2924e0d0e00c605 deleted file mode 100644 index 113c439..0000000 Binary files a/_git_of_git_commit_id/objects/e8/920e3e54215ab8970e30f3f2924e0d0e00c605 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e8/930934a1d3107cff0221c23fe5757b362ec25a b/_git_of_git_commit_id/objects/e8/930934a1d3107cff0221c23fe5757b362ec25a deleted file mode 100644 index 27142bf..0000000 Binary files a/_git_of_git_commit_id/objects/e8/930934a1d3107cff0221c23fe5757b362ec25a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e8/e3ee8d3faf96137cc9dc03dc54872304fb9b58 b/_git_of_git_commit_id/objects/e8/e3ee8d3faf96137cc9dc03dc54872304fb9b58 deleted file mode 100644 index 829133b..0000000 Binary files a/_git_of_git_commit_id/objects/e8/e3ee8d3faf96137cc9dc03dc54872304fb9b58 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e9/7e75e1c4802585e9baa9434d17e87fa7359d33 b/_git_of_git_commit_id/objects/e9/7e75e1c4802585e9baa9434d17e87fa7359d33 deleted file mode 100644 index bc6a260..0000000 Binary files a/_git_of_git_commit_id/objects/e9/7e75e1c4802585e9baa9434d17e87fa7359d33 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e9/90bfa02360ab82c96afb70710e91fc3feb8344 b/_git_of_git_commit_id/objects/e9/90bfa02360ab82c96afb70710e91fc3feb8344 deleted file mode 100644 index 043e5a6..0000000 Binary files a/_git_of_git_commit_id/objects/e9/90bfa02360ab82c96afb70710e91fc3feb8344 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/e9/f84eac3dc03b8568bbbcb8ffdc044b9569a4d2 b/_git_of_git_commit_id/objects/e9/f84eac3dc03b8568bbbcb8ffdc044b9569a4d2 deleted file mode 100644 index 4e60352..0000000 Binary files a/_git_of_git_commit_id/objects/e9/f84eac3dc03b8568bbbcb8ffdc044b9569a4d2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ea/2668c79e9410f97da99cdd94f8309aef024b32 b/_git_of_git_commit_id/objects/ea/2668c79e9410f97da99cdd94f8309aef024b32 deleted file mode 100644 index 322fddc..0000000 --- a/_git_of_git_commit_id/objects/ea/2668c79e9410f97da99cdd94f8309aef024b32 +++ /dev/null @@ -1,4 +0,0 @@ -xMj@oW[B!xLG׏ A6->˺&!TBTM1pd -G`+S43 -#Ud!Rʑyssh{ۖykޕQ_{75g3",xTT2 vI -#c-RV$&t>)!j \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/ea/6683aafecb80f47eec602176aeb01da78b53c7 b/_git_of_git_commit_id/objects/ea/6683aafecb80f47eec602176aeb01da78b53c7 deleted file mode 100644 index 48b0446..0000000 Binary files a/_git_of_git_commit_id/objects/ea/6683aafecb80f47eec602176aeb01da78b53c7 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ea/aa14d2eab113ec895ae49a300aa54b7a6dc14c b/_git_of_git_commit_id/objects/ea/aa14d2eab113ec895ae49a300aa54b7a6dc14c deleted file mode 100644 index ba389c6..0000000 Binary files a/_git_of_git_commit_id/objects/ea/aa14d2eab113ec895ae49a300aa54b7a6dc14c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ea/ab5801e88594f838ba5f78ab1ef800116f0f29 b/_git_of_git_commit_id/objects/ea/ab5801e88594f838ba5f78ab1ef800116f0f29 deleted file mode 100644 index 806678e..0000000 Binary files a/_git_of_git_commit_id/objects/ea/ab5801e88594f838ba5f78ab1ef800116f0f29 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ea/ae5cb5ce07823e6ad59c41e1d39edd6fdc0fa8 b/_git_of_git_commit_id/objects/ea/ae5cb5ce07823e6ad59c41e1d39edd6fdc0fa8 deleted file mode 100644 index da4f948..0000000 Binary files a/_git_of_git_commit_id/objects/ea/ae5cb5ce07823e6ad59c41e1d39edd6fdc0fa8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/eb/3d46e96478030a4daf49018be968de74a89057 b/_git_of_git_commit_id/objects/eb/3d46e96478030a4daf49018be968de74a89057 deleted file mode 100644 index 426b3c7..0000000 Binary files a/_git_of_git_commit_id/objects/eb/3d46e96478030a4daf49018be968de74a89057 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/eb/49d6a8ad5b9ec5dcea67f71cfb5ae9b37b5a82 b/_git_of_git_commit_id/objects/eb/49d6a8ad5b9ec5dcea67f71cfb5ae9b37b5a82 deleted file mode 100644 index e07b306..0000000 Binary files a/_git_of_git_commit_id/objects/eb/49d6a8ad5b9ec5dcea67f71cfb5ae9b37b5a82 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/eb/576e5a117e8fa463d913217100cb5aade67296 b/_git_of_git_commit_id/objects/eb/576e5a117e8fa463d913217100cb5aade67296 deleted file mode 100644 index 45f1f4f..0000000 Binary files a/_git_of_git_commit_id/objects/eb/576e5a117e8fa463d913217100cb5aade67296 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/eb/93e9407d902ec9e14847fffa1b816d6294ce17 b/_git_of_git_commit_id/objects/eb/93e9407d902ec9e14847fffa1b816d6294ce17 deleted file mode 100644 index bedc4d3..0000000 Binary files a/_git_of_git_commit_id/objects/eb/93e9407d902ec9e14847fffa1b816d6294ce17 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/eb/c3a2311ece24a8baed39dfa07ccbc3597fa6da b/_git_of_git_commit_id/objects/eb/c3a2311ece24a8baed39dfa07ccbc3597fa6da deleted file mode 100644 index 7321b87..0000000 Binary files a/_git_of_git_commit_id/objects/eb/c3a2311ece24a8baed39dfa07ccbc3597fa6da and /dev/null differ diff --git a/_git_of_git_commit_id/objects/eb/cf283c7e7684107a8f87bf8830f40ba13a9356 b/_git_of_git_commit_id/objects/eb/cf283c7e7684107a8f87bf8830f40ba13a9356 deleted file mode 100644 index 1d370e6..0000000 Binary files a/_git_of_git_commit_id/objects/eb/cf283c7e7684107a8f87bf8830f40ba13a9356 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/eb/e574347f0749396d82586a0279d801b7cb6471 b/_git_of_git_commit_id/objects/eb/e574347f0749396d82586a0279d801b7cb6471 deleted file mode 100644 index 3f57423..0000000 Binary files a/_git_of_git_commit_id/objects/eb/e574347f0749396d82586a0279d801b7cb6471 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ec/17ec1939b7c3e86b7cb6c0c4de6b0818a7e75e b/_git_of_git_commit_id/objects/ec/17ec1939b7c3e86b7cb6c0c4de6b0818a7e75e deleted file mode 100644 index d7558de..0000000 --- a/_git_of_git_commit_id/objects/ec/17ec1939b7c3e86b7cb6c0c4de6b0818a7e75e +++ /dev/null @@ -1,2 +0,0 @@ -x-K0P9E [rK&0H -Ȥ&7~]/q\!vyrqִ0&א &HʉAHM +bo.NA&$RQ%3'LVKvAI'YPSRxZZ>^wkW[kź_wJ %.\rN=smu^I0Z*B;MY> \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/ee/20fdaa20e4c28ef0c5e1716fa3a34576d23abf b/_git_of_git_commit_id/objects/ee/20fdaa20e4c28ef0c5e1716fa3a34576d23abf deleted file mode 100644 index 9d5e2b3..0000000 Binary files a/_git_of_git_commit_id/objects/ee/20fdaa20e4c28ef0c5e1716fa3a34576d23abf and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ee/40d6641293d786804698445f90cc4775d53069 b/_git_of_git_commit_id/objects/ee/40d6641293d786804698445f90cc4775d53069 deleted file mode 100644 index 9967dd2..0000000 Binary files a/_git_of_git_commit_id/objects/ee/40d6641293d786804698445f90cc4775d53069 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ee/495f441514496c6a7b7b814b52f6ee6c5eb02e b/_git_of_git_commit_id/objects/ee/495f441514496c6a7b7b814b52f6ee6c5eb02e deleted file mode 100644 index 4411135..0000000 Binary files a/_git_of_git_commit_id/objects/ee/495f441514496c6a7b7b814b52f6ee6c5eb02e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ee/772986acc64f62063909463024747ec74d90cc b/_git_of_git_commit_id/objects/ee/772986acc64f62063909463024747ec74d90cc deleted file mode 100644 index 9257bfb..0000000 Binary files a/_git_of_git_commit_id/objects/ee/772986acc64f62063909463024747ec74d90cc and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ee/7f7df2ab44630b4de4f229733befdad04b6c9b b/_git_of_git_commit_id/objects/ee/7f7df2ab44630b4de4f229733befdad04b6c9b deleted file mode 100644 index 2d34a65..0000000 Binary files a/_git_of_git_commit_id/objects/ee/7f7df2ab44630b4de4f229733befdad04b6c9b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ee/96742d37f37abb3c30704cff36ce72712ae546 b/_git_of_git_commit_id/objects/ee/96742d37f37abb3c30704cff36ce72712ae546 deleted file mode 100644 index 2cb0b90..0000000 Binary files a/_git_of_git_commit_id/objects/ee/96742d37f37abb3c30704cff36ce72712ae546 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ee/f81dbd87623b2f879df89237c9d7177e7bb3a1 b/_git_of_git_commit_id/objects/ee/f81dbd87623b2f879df89237c9d7177e7bb3a1 deleted file mode 100644 index 2af8d6e..0000000 Binary files a/_git_of_git_commit_id/objects/ee/f81dbd87623b2f879df89237c9d7177e7bb3a1 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ef/4b960b6cde0a544b5526ef667e8ba733d692c9 b/_git_of_git_commit_id/objects/ef/4b960b6cde0a544b5526ef667e8ba733d692c9 deleted file mode 100644 index 6fa08fc..0000000 Binary files a/_git_of_git_commit_id/objects/ef/4b960b6cde0a544b5526ef667e8ba733d692c9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ef/77aadcc13d8b5d84295036f5a76d53a573e48e b/_git_of_git_commit_id/objects/ef/77aadcc13d8b5d84295036f5a76d53a573e48e deleted file mode 100644 index a81e695..0000000 Binary files a/_git_of_git_commit_id/objects/ef/77aadcc13d8b5d84295036f5a76d53a573e48e and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ef/855eecb36b725295be1d6132adeb57c34c93af b/_git_of_git_commit_id/objects/ef/855eecb36b725295be1d6132adeb57c34c93af deleted file mode 100644 index 9edf9fc..0000000 Binary files a/_git_of_git_commit_id/objects/ef/855eecb36b725295be1d6132adeb57c34c93af and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ef/8f6e59521f7da6cb4003351ce34bd441415478 b/_git_of_git_commit_id/objects/ef/8f6e59521f7da6cb4003351ce34bd441415478 deleted file mode 100644 index 724eb4e..0000000 Binary files a/_git_of_git_commit_id/objects/ef/8f6e59521f7da6cb4003351ce34bd441415478 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ef/bb307b35d2345ebde29729c741dceb64abaec2 b/_git_of_git_commit_id/objects/ef/bb307b35d2345ebde29729c741dceb64abaec2 deleted file mode 100644 index 2add0fb..0000000 Binary files a/_git_of_git_commit_id/objects/ef/bb307b35d2345ebde29729c741dceb64abaec2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/ef/e45ff3af228b1becdc5022d6485627ccdc1e97 b/_git_of_git_commit_id/objects/ef/e45ff3af228b1becdc5022d6485627ccdc1e97 deleted file mode 100644 index 84b5a42..0000000 Binary files a/_git_of_git_commit_id/objects/ef/e45ff3af228b1becdc5022d6485627ccdc1e97 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f0/07dce41fff71e2d1cc354a60d34f90530cfcb2 b/_git_of_git_commit_id/objects/f0/07dce41fff71e2d1cc354a60d34f90530cfcb2 deleted file mode 100644 index fdb81d6..0000000 Binary files a/_git_of_git_commit_id/objects/f0/07dce41fff71e2d1cc354a60d34f90530cfcb2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f0/1a3591881f39bb997af644730425f18751d147 b/_git_of_git_commit_id/objects/f0/1a3591881f39bb997af644730425f18751d147 deleted file mode 100644 index 0a56c5e..0000000 Binary files a/_git_of_git_commit_id/objects/f0/1a3591881f39bb997af644730425f18751d147 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f0/510fda84b9a3ad8b468365deb2cd297ecddd83 b/_git_of_git_commit_id/objects/f0/510fda84b9a3ad8b468365deb2cd297ecddd83 deleted file mode 100644 index fcc2ba7..0000000 Binary files a/_git_of_git_commit_id/objects/f0/510fda84b9a3ad8b468365deb2cd297ecddd83 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f0/897fccaf88a07df31b47cf46e654eaec908b6b b/_git_of_git_commit_id/objects/f0/897fccaf88a07df31b47cf46e654eaec908b6b deleted file mode 100644 index c8b37c0..0000000 Binary files a/_git_of_git_commit_id/objects/f0/897fccaf88a07df31b47cf46e654eaec908b6b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f0/93a02ec49918ab15e920f455979fd5ed732cf6 b/_git_of_git_commit_id/objects/f0/93a02ec49918ab15e920f455979fd5ed732cf6 deleted file mode 100644 index ed34686..0000000 Binary files a/_git_of_git_commit_id/objects/f0/93a02ec49918ab15e920f455979fd5ed732cf6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f0/9699561fbc8342ae232f63685b4e5bfb4ac69d b/_git_of_git_commit_id/objects/f0/9699561fbc8342ae232f63685b4e5bfb4ac69d deleted file mode 100644 index b0b353c..0000000 Binary files a/_git_of_git_commit_id/objects/f0/9699561fbc8342ae232f63685b4e5bfb4ac69d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f0/a09ac73e806f5332daf14137ef82ac5f54dc92 b/_git_of_git_commit_id/objects/f0/a09ac73e806f5332daf14137ef82ac5f54dc92 deleted file mode 100644 index 667f5b9..0000000 Binary files a/_git_of_git_commit_id/objects/f0/a09ac73e806f5332daf14137ef82ac5f54dc92 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f0/c5ac406ddde0a45a885e0ebb7eed15252d487a b/_git_of_git_commit_id/objects/f0/c5ac406ddde0a45a885e0ebb7eed15252d487a deleted file mode 100644 index b6aef78..0000000 Binary files a/_git_of_git_commit_id/objects/f0/c5ac406ddde0a45a885e0ebb7eed15252d487a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f0/c80d711a1af8019372798c89c4d7862d667887 b/_git_of_git_commit_id/objects/f0/c80d711a1af8019372798c89c4d7862d667887 deleted file mode 100644 index 0ec9464..0000000 Binary files a/_git_of_git_commit_id/objects/f0/c80d711a1af8019372798c89c4d7862d667887 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f0/fc69190daa525f25e6e01a1d5c7a60ecf644fb b/_git_of_git_commit_id/objects/f0/fc69190daa525f25e6e01a1d5c7a60ecf644fb deleted file mode 100644 index cf2307b..0000000 Binary files a/_git_of_git_commit_id/objects/f0/fc69190daa525f25e6e01a1d5c7a60ecf644fb and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f1/06eb41aa152326861ee4d3fbecf7911d406293 b/_git_of_git_commit_id/objects/f1/06eb41aa152326861ee4d3fbecf7911d406293 deleted file mode 100644 index 04677c9..0000000 Binary files a/_git_of_git_commit_id/objects/f1/06eb41aa152326861ee4d3fbecf7911d406293 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f1/364b47e92f7e44b560a28537a3d612bd19d7f5 b/_git_of_git_commit_id/objects/f1/364b47e92f7e44b560a28537a3d612bd19d7f5 deleted file mode 100644 index 8397175..0000000 Binary files a/_git_of_git_commit_id/objects/f1/364b47e92f7e44b560a28537a3d612bd19d7f5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f1/462294e177516a6a9e7405ac288b67537743af b/_git_of_git_commit_id/objects/f1/462294e177516a6a9e7405ac288b67537743af deleted file mode 100644 index 92337cc..0000000 Binary files a/_git_of_git_commit_id/objects/f1/462294e177516a6a9e7405ac288b67537743af and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f1/580fc6536427a86d7b884a945f7bdcd2fdabe6 b/_git_of_git_commit_id/objects/f1/580fc6536427a86d7b884a945f7bdcd2fdabe6 deleted file mode 100644 index 5f5d291..0000000 Binary files a/_git_of_git_commit_id/objects/f1/580fc6536427a86d7b884a945f7bdcd2fdabe6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f1/959024cb8ff06e425f498e5b3201186d1407d9 b/_git_of_git_commit_id/objects/f1/959024cb8ff06e425f498e5b3201186d1407d9 deleted file mode 100644 index f1026e8..0000000 Binary files a/_git_of_git_commit_id/objects/f1/959024cb8ff06e425f498e5b3201186d1407d9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f1/c7068961c049afbe556b84a3e369237beba898 b/_git_of_git_commit_id/objects/f1/c7068961c049afbe556b84a3e369237beba898 deleted file mode 100644 index 68b4ec1..0000000 Binary files a/_git_of_git_commit_id/objects/f1/c7068961c049afbe556b84a3e369237beba898 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f1/fe3fa0accb801ca343d2e2b1f80f53c8101d62 b/_git_of_git_commit_id/objects/f1/fe3fa0accb801ca343d2e2b1f80f53c8101d62 deleted file mode 100644 index 7a0121f..0000000 Binary files a/_git_of_git_commit_id/objects/f1/fe3fa0accb801ca343d2e2b1f80f53c8101d62 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f2/14827a4d0e2ba742d603eeb34674a081447692 b/_git_of_git_commit_id/objects/f2/14827a4d0e2ba742d603eeb34674a081447692 deleted file mode 100644 index 113cbed..0000000 Binary files a/_git_of_git_commit_id/objects/f2/14827a4d0e2ba742d603eeb34674a081447692 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f2/38a51a0c4dbfba0ca1087496670b2a3e1c1a4c b/_git_of_git_commit_id/objects/f2/38a51a0c4dbfba0ca1087496670b2a3e1c1a4c deleted file mode 100644 index a90fe27..0000000 Binary files a/_git_of_git_commit_id/objects/f2/38a51a0c4dbfba0ca1087496670b2a3e1c1a4c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f2/39047c869f91aa868067a47a74bd0186b341dd b/_git_of_git_commit_id/objects/f2/39047c869f91aa868067a47a74bd0186b341dd deleted file mode 100644 index 91d5b89..0000000 Binary files a/_git_of_git_commit_id/objects/f2/39047c869f91aa868067a47a74bd0186b341dd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f2/45286dba79a0c14edc7a241d1731ee10fe0a76 b/_git_of_git_commit_id/objects/f2/45286dba79a0c14edc7a241d1731ee10fe0a76 deleted file mode 100644 index a703825..0000000 Binary files a/_git_of_git_commit_id/objects/f2/45286dba79a0c14edc7a241d1731ee10fe0a76 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f2/62ace077c7f679aa7cd1d69a5b2fff9e94decc b/_git_of_git_commit_id/objects/f2/62ace077c7f679aa7cd1d69a5b2fff9e94decc deleted file mode 100644 index 8443480..0000000 --- a/_git_of_git_commit_id/objects/f2/62ace077c7f679aa7cd1d69a5b2fff9e94decc +++ /dev/null @@ -1 +0,0 @@ -xAJ1E]nU*I ".wztg&2bܽm] |5:@N5섗$FWts)Y6Ա byUBD^$Ns !zHYL-'Yw̳-f15{ 2%*_\S7i.RN2T3 \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/f2/64cf7352b7cfa7981a0e3e087d505601b8bb9c b/_git_of_git_commit_id/objects/f2/64cf7352b7cfa7981a0e3e087d505601b8bb9c deleted file mode 100644 index 230d241..0000000 Binary files a/_git_of_git_commit_id/objects/f2/64cf7352b7cfa7981a0e3e087d505601b8bb9c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f2/6cd2962455fe7d27732cce04af7c0c8ab4e5af b/_git_of_git_commit_id/objects/f2/6cd2962455fe7d27732cce04af7c0c8ab4e5af deleted file mode 100644 index 704c053..0000000 Binary files a/_git_of_git_commit_id/objects/f2/6cd2962455fe7d27732cce04af7c0c8ab4e5af and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f2/869f6edff53abbc9dda8f1ce808db3e68fe73d b/_git_of_git_commit_id/objects/f2/869f6edff53abbc9dda8f1ce808db3e68fe73d deleted file mode 100644 index 46526f0..0000000 Binary files a/_git_of_git_commit_id/objects/f2/869f6edff53abbc9dda8f1ce808db3e68fe73d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f2/9fcb4b71bd221b4f05db6eacd17afd17657a45 b/_git_of_git_commit_id/objects/f2/9fcb4b71bd221b4f05db6eacd17afd17657a45 deleted file mode 100644 index 5611c45..0000000 Binary files a/_git_of_git_commit_id/objects/f2/9fcb4b71bd221b4f05db6eacd17afd17657a45 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f2/a87255f5858d2d135b90e42b55e62fe6b078a6 b/_git_of_git_commit_id/objects/f2/a87255f5858d2d135b90e42b55e62fe6b078a6 deleted file mode 100644 index 5faef15..0000000 Binary files a/_git_of_git_commit_id/objects/f2/a87255f5858d2d135b90e42b55e62fe6b078a6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f2/c1d894f22a15656a1eb04a9f822a7896c6539a b/_git_of_git_commit_id/objects/f2/c1d894f22a15656a1eb04a9f822a7896c6539a deleted file mode 100644 index 3a971be..0000000 Binary files a/_git_of_git_commit_id/objects/f2/c1d894f22a15656a1eb04a9f822a7896c6539a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f2/db0f94ef8d7d9ce6402462f83127f6310fa858 b/_git_of_git_commit_id/objects/f2/db0f94ef8d7d9ce6402462f83127f6310fa858 deleted file mode 100644 index cf32f7f..0000000 Binary files a/_git_of_git_commit_id/objects/f2/db0f94ef8d7d9ce6402462f83127f6310fa858 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f3/060efaa5c7ba6be9baf2e2ab4e9a6d8d3cedd5 b/_git_of_git_commit_id/objects/f3/060efaa5c7ba6be9baf2e2ab4e9a6d8d3cedd5 deleted file mode 100644 index 0941907..0000000 Binary files a/_git_of_git_commit_id/objects/f3/060efaa5c7ba6be9baf2e2ab4e9a6d8d3cedd5 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f3/38c23a7679a4d59ee02542d5bda4cc13fb472b b/_git_of_git_commit_id/objects/f3/38c23a7679a4d59ee02542d5bda4cc13fb472b deleted file mode 100644 index 18ebe7b..0000000 Binary files a/_git_of_git_commit_id/objects/f3/38c23a7679a4d59ee02542d5bda4cc13fb472b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f3/4a44302f9fcdbf6e66c63be81249a5f9dd94a6 b/_git_of_git_commit_id/objects/f3/4a44302f9fcdbf6e66c63be81249a5f9dd94a6 deleted file mode 100644 index b8ed7f2..0000000 Binary files a/_git_of_git_commit_id/objects/f3/4a44302f9fcdbf6e66c63be81249a5f9dd94a6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f3/9fa98d70c33c9c1c9e90b4aef0ea54dd651bea b/_git_of_git_commit_id/objects/f3/9fa98d70c33c9c1c9e90b4aef0ea54dd651bea deleted file mode 100644 index d1b4aa4..0000000 Binary files a/_git_of_git_commit_id/objects/f3/9fa98d70c33c9c1c9e90b4aef0ea54dd651bea and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f3/a901ca6a59164f4a732bbd6dcc83692fe7fe67 b/_git_of_git_commit_id/objects/f3/a901ca6a59164f4a732bbd6dcc83692fe7fe67 deleted file mode 100644 index 9d6f930..0000000 Binary files a/_git_of_git_commit_id/objects/f3/a901ca6a59164f4a732bbd6dcc83692fe7fe67 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f3/ac4899783d4312ecd7328f74cd5c49cc3b7a30 b/_git_of_git_commit_id/objects/f3/ac4899783d4312ecd7328f74cd5c49cc3b7a30 deleted file mode 100644 index d1043eb..0000000 Binary files a/_git_of_git_commit_id/objects/f3/ac4899783d4312ecd7328f74cd5c49cc3b7a30 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f3/d8ea2e582b349d7244812e2c6af73b0a5b0fe2 b/_git_of_git_commit_id/objects/f3/d8ea2e582b349d7244812e2c6af73b0a5b0fe2 deleted file mode 100644 index 6c271de..0000000 Binary files a/_git_of_git_commit_id/objects/f3/d8ea2e582b349d7244812e2c6af73b0a5b0fe2 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f3/dadd80923ae063fab3baab511cdbcae5de2688 b/_git_of_git_commit_id/objects/f3/dadd80923ae063fab3baab511cdbcae5de2688 deleted file mode 100644 index f0ed6bf..0000000 Binary files a/_git_of_git_commit_id/objects/f3/dadd80923ae063fab3baab511cdbcae5de2688 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f4/30c41b6858f10a3aadd63042a2ee23cf9c023f b/_git_of_git_commit_id/objects/f4/30c41b6858f10a3aadd63042a2ee23cf9c023f deleted file mode 100644 index 9bc3e21..0000000 Binary files a/_git_of_git_commit_id/objects/f4/30c41b6858f10a3aadd63042a2ee23cf9c023f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f4/5e31a3febe0d5b6d11c77c541b8770e7ba9688 b/_git_of_git_commit_id/objects/f4/5e31a3febe0d5b6d11c77c541b8770e7ba9688 deleted file mode 100644 index 7a4078f..0000000 Binary files a/_git_of_git_commit_id/objects/f4/5e31a3febe0d5b6d11c77c541b8770e7ba9688 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f4/96b9d3b136572828b04bdb7f24ec9e306e58e3 b/_git_of_git_commit_id/objects/f4/96b9d3b136572828b04bdb7f24ec9e306e58e3 deleted file mode 100644 index 42d81f3..0000000 Binary files a/_git_of_git_commit_id/objects/f4/96b9d3b136572828b04bdb7f24ec9e306e58e3 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f5/16f69d4b5bdd6af3ac460cc86c0d08b4234b67 b/_git_of_git_commit_id/objects/f5/16f69d4b5bdd6af3ac460cc86c0d08b4234b67 deleted file mode 100644 index 9f451e3..0000000 Binary files a/_git_of_git_commit_id/objects/f5/16f69d4b5bdd6af3ac460cc86c0d08b4234b67 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f5/519b06ed47722153cb47d5d793a100bf9030fc b/_git_of_git_commit_id/objects/f5/519b06ed47722153cb47d5d793a100bf9030fc deleted file mode 100644 index c5e4998..0000000 --- a/_git_of_git_commit_id/objects/f5/519b06ed47722153cb47d5d793a100bf9030fc +++ /dev/null @@ -1 +0,0 @@ -x+)JMU06a040031QM,.I-bxbGwyEuf+l \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/f5/5e1191e1056c61c8800a76c12bd5525254c941 b/_git_of_git_commit_id/objects/f5/5e1191e1056c61c8800a76c12bd5525254c941 deleted file mode 100644 index 579676c..0000000 Binary files a/_git_of_git_commit_id/objects/f5/5e1191e1056c61c8800a76c12bd5525254c941 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f5/65f024715a8433b4fcbcbe50834f48f7355f59 b/_git_of_git_commit_id/objects/f5/65f024715a8433b4fcbcbe50834f48f7355f59 deleted file mode 100644 index 1ba389d..0000000 --- a/_git_of_git_commit_id/objects/f5/65f024715a8433b4fcbcbe50834f48f7355f59 +++ /dev/null @@ -1 +0,0 @@ -xKOR01g` 50K20d`jsd:WI8]fY \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/f5/68872c40956adae6c8aab116dc1ca94fcc46cc b/_git_of_git_commit_id/objects/f5/68872c40956adae6c8aab116dc1ca94fcc46cc deleted file mode 100644 index 08e27d1..0000000 Binary files a/_git_of_git_commit_id/objects/f5/68872c40956adae6c8aab116dc1ca94fcc46cc and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f5/6ee2779f6fc7919eef7bb96c221c72969dd754 b/_git_of_git_commit_id/objects/f5/6ee2779f6fc7919eef7bb96c221c72969dd754 deleted file mode 100644 index eae4ef2..0000000 Binary files a/_git_of_git_commit_id/objects/f5/6ee2779f6fc7919eef7bb96c221c72969dd754 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f5/a0df6c0dd48424dafe77ce55e7a90aff40f396 b/_git_of_git_commit_id/objects/f5/a0df6c0dd48424dafe77ce55e7a90aff40f396 deleted file mode 100644 index 06ce46d..0000000 Binary files a/_git_of_git_commit_id/objects/f5/a0df6c0dd48424dafe77ce55e7a90aff40f396 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f5/a7b8bcf1cc4f035a8272e640b2ddc1334d80da b/_git_of_git_commit_id/objects/f5/a7b8bcf1cc4f035a8272e640b2ddc1334d80da deleted file mode 100644 index 12b6a95..0000000 Binary files a/_git_of_git_commit_id/objects/f5/a7b8bcf1cc4f035a8272e640b2ddc1334d80da and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f5/befe99a9f11ac34630cf7736bf45cad6e2fa3f b/_git_of_git_commit_id/objects/f5/befe99a9f11ac34630cf7736bf45cad6e2fa3f deleted file mode 100644 index 94d24dd..0000000 Binary files a/_git_of_git_commit_id/objects/f5/befe99a9f11ac34630cf7736bf45cad6e2fa3f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f6/0239b5d6503a464c414c09c1de3c3200a2b274 b/_git_of_git_commit_id/objects/f6/0239b5d6503a464c414c09c1de3c3200a2b274 deleted file mode 100644 index ef77aad..0000000 Binary files a/_git_of_git_commit_id/objects/f6/0239b5d6503a464c414c09c1de3c3200a2b274 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f6/0ea1d8a2d7069570567fbd472d0b3da66f8392 b/_git_of_git_commit_id/objects/f6/0ea1d8a2d7069570567fbd472d0b3da66f8392 deleted file mode 100644 index 9e5f504..0000000 Binary files a/_git_of_git_commit_id/objects/f6/0ea1d8a2d7069570567fbd472d0b3da66f8392 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f6/32dc9912cded2390dd81ff7a5036422230b91c b/_git_of_git_commit_id/objects/f6/32dc9912cded2390dd81ff7a5036422230b91c deleted file mode 100644 index b9a1bef..0000000 Binary files a/_git_of_git_commit_id/objects/f6/32dc9912cded2390dd81ff7a5036422230b91c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f6/58a2445d19e361c6ff96fb382d96550ed47b11 b/_git_of_git_commit_id/objects/f6/58a2445d19e361c6ff96fb382d96550ed47b11 deleted file mode 100644 index 81f535a..0000000 Binary files a/_git_of_git_commit_id/objects/f6/58a2445d19e361c6ff96fb382d96550ed47b11 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f6/6b8a49815ade76e4adb29ed3b58fe2663565fa b/_git_of_git_commit_id/objects/f6/6b8a49815ade76e4adb29ed3b58fe2663565fa deleted file mode 100644 index a4b7f29..0000000 Binary files a/_git_of_git_commit_id/objects/f6/6b8a49815ade76e4adb29ed3b58fe2663565fa and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f6/76b81c9469368ea947b3e3ed1baca0a51e802b b/_git_of_git_commit_id/objects/f6/76b81c9469368ea947b3e3ed1baca0a51e802b deleted file mode 100644 index 997496f..0000000 Binary files a/_git_of_git_commit_id/objects/f6/76b81c9469368ea947b3e3ed1baca0a51e802b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f6/77d7903560409973d90613a3a1afe8de5b477f b/_git_of_git_commit_id/objects/f6/77d7903560409973d90613a3a1afe8de5b477f deleted file mode 100644 index 0c95cbc..0000000 Binary files a/_git_of_git_commit_id/objects/f6/77d7903560409973d90613a3a1afe8de5b477f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f6/812b1467492f6dd04c6e2b06b90f07c560ab98 b/_git_of_git_commit_id/objects/f6/812b1467492f6dd04c6e2b06b90f07c560ab98 deleted file mode 100644 index 7836861..0000000 Binary files a/_git_of_git_commit_id/objects/f6/812b1467492f6dd04c6e2b06b90f07c560ab98 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f6/bbc8b4097673e8f43fbc6385dd6cdf754a5fe8 b/_git_of_git_commit_id/objects/f6/bbc8b4097673e8f43fbc6385dd6cdf754a5fe8 deleted file mode 100644 index 6d0b7ff..0000000 Binary files a/_git_of_git_commit_id/objects/f6/bbc8b4097673e8f43fbc6385dd6cdf754a5fe8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f7/696f983773a51d208c600efd0869b1643da6e6 b/_git_of_git_commit_id/objects/f7/696f983773a51d208c600efd0869b1643da6e6 deleted file mode 100644 index 07c4d40..0000000 Binary files a/_git_of_git_commit_id/objects/f7/696f983773a51d208c600efd0869b1643da6e6 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f7/bccaa613f2ef96e1a2f375d96e006382632278 b/_git_of_git_commit_id/objects/f7/bccaa613f2ef96e1a2f375d96e006382632278 deleted file mode 100644 index 443fac4..0000000 Binary files a/_git_of_git_commit_id/objects/f7/bccaa613f2ef96e1a2f375d96e006382632278 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f8/5a69a4755bfe3e0182c032f7209480e6f79472 b/_git_of_git_commit_id/objects/f8/5a69a4755bfe3e0182c032f7209480e6f79472 deleted file mode 100644 index 9c06be7..0000000 Binary files a/_git_of_git_commit_id/objects/f8/5a69a4755bfe3e0182c032f7209480e6f79472 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f8/898de9682c68ba6516e5749df4aa258ad78c16 b/_git_of_git_commit_id/objects/f8/898de9682c68ba6516e5749df4aa258ad78c16 deleted file mode 100644 index 9234547..0000000 Binary files a/_git_of_git_commit_id/objects/f8/898de9682c68ba6516e5749df4aa258ad78c16 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f8/a4306a5dee6c2accaae52508f218a9167af51d b/_git_of_git_commit_id/objects/f8/a4306a5dee6c2accaae52508f218a9167af51d deleted file mode 100644 index f9d2306..0000000 Binary files a/_git_of_git_commit_id/objects/f8/a4306a5dee6c2accaae52508f218a9167af51d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f8/b02dc6d67acf7c301074c6b10c475021ade8b8 b/_git_of_git_commit_id/objects/f8/b02dc6d67acf7c301074c6b10c475021ade8b8 deleted file mode 100644 index bf62655..0000000 Binary files a/_git_of_git_commit_id/objects/f8/b02dc6d67acf7c301074c6b10c475021ade8b8 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f8/c968f29669d0f28f3eb4ca38447d496091670d b/_git_of_git_commit_id/objects/f8/c968f29669d0f28f3eb4ca38447d496091670d deleted file mode 100644 index e910ddc..0000000 Binary files a/_git_of_git_commit_id/objects/f8/c968f29669d0f28f3eb4ca38447d496091670d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f9/5964c02a1219f9acc53c08a90f99ff9ad73f15 b/_git_of_git_commit_id/objects/f9/5964c02a1219f9acc53c08a90f99ff9ad73f15 deleted file mode 100644 index 98a05ec..0000000 Binary files a/_git_of_git_commit_id/objects/f9/5964c02a1219f9acc53c08a90f99ff9ad73f15 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/f9/597b2f0b581bcf5c1dd435b81cd6e09e5c621f b/_git_of_git_commit_id/objects/f9/597b2f0b581bcf5c1dd435b81cd6e09e5c621f deleted file mode 100644 index 56ef8f8..0000000 --- a/_git_of_git_commit_id/objects/f9/597b2f0b581bcf5c1dd435b81cd6e09e5c621f +++ /dev/null @@ -1,2 +0,0 @@ -xKN1DY[B} ӆ!'p|&7`[RUJJK7` -#q1D/a08?D*7P#dFOɘh% 0)Xr^xi=8๶%k: 48nàk}U,^> F,WYKM7e{澔~d+ \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/f9/6cf4325afded7a4694fd6f54268eefcea89239 b/_git_of_git_commit_id/objects/f9/6cf4325afded7a4694fd6f54268eefcea89239 deleted file mode 100644 index 97e0534..0000000 Binary files a/_git_of_git_commit_id/objects/f9/6cf4325afded7a4694fd6f54268eefcea89239 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fa/3faf8401f63eae52d66a1b39dea0206256a5f9 b/_git_of_git_commit_id/objects/fa/3faf8401f63eae52d66a1b39dea0206256a5f9 deleted file mode 100644 index d790c40..0000000 Binary files a/_git_of_git_commit_id/objects/fa/3faf8401f63eae52d66a1b39dea0206256a5f9 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fa/454b11da2bd14f95894f1ebed2fe4f6de0d1fd b/_git_of_git_commit_id/objects/fa/454b11da2bd14f95894f1ebed2fe4f6de0d1fd deleted file mode 100644 index 4f92159..0000000 Binary files a/_git_of_git_commit_id/objects/fa/454b11da2bd14f95894f1ebed2fe4f6de0d1fd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fa/b366bacfbc3b7fdfd65511914c362b217e3a68 b/_git_of_git_commit_id/objects/fa/b366bacfbc3b7fdfd65511914c362b217e3a68 deleted file mode 100644 index 08fe17d..0000000 --- a/_git_of_git_commit_id/objects/fa/b366bacfbc3b7fdfd65511914c362b217e3a68 +++ /dev/null @@ -1 +0,0 @@ -x+)JMU046b040031Q01345L275H654L333LM37JL26OL44JN1O53bS8-3gINpꑔ%3D˴TcSC$d3 # KD 3STSSc I|i{jڲt=3Q,f \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/fa/c04c16a285c4df514657373b5bef1a163df32b b/_git_of_git_commit_id/objects/fa/c04c16a285c4df514657373b5bef1a163df32b deleted file mode 100644 index f413d0b..0000000 Binary files a/_git_of_git_commit_id/objects/fa/c04c16a285c4df514657373b5bef1a163df32b and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fb/300900c8a5367cf677268caeabae0058842951 b/_git_of_git_commit_id/objects/fb/300900c8a5367cf677268caeabae0058842951 deleted file mode 100644 index e05c7d8..0000000 Binary files a/_git_of_git_commit_id/objects/fb/300900c8a5367cf677268caeabae0058842951 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fb/41b832a1aea395b8fa1e6df8e892e700f32699 b/_git_of_git_commit_id/objects/fb/41b832a1aea395b8fa1e6df8e892e700f32699 deleted file mode 100644 index 3e82eae..0000000 Binary files a/_git_of_git_commit_id/objects/fb/41b832a1aea395b8fa1e6df8e892e700f32699 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fb/444761aa76d03394439dfeb42bc77a154c2871 b/_git_of_git_commit_id/objects/fb/444761aa76d03394439dfeb42bc77a154c2871 deleted file mode 100644 index 64db206..0000000 --- a/_git_of_git_commit_id/objects/fb/444761aa76d03394439dfeb42bc77a154c2871 +++ /dev/null @@ -1,2 +0,0 @@ -x5+O1@? $YB><14㶽`BzH0 1SUrf{ ͤo_w;-_T_x ).h2k3!eϐٴͫQTf \ No newline at end of file diff --git a/_git_of_git_commit_id/objects/fb/65772849c61a386cf8e2f9f371a67a6fcd318c b/_git_of_git_commit_id/objects/fb/65772849c61a386cf8e2f9f371a67a6fcd318c deleted file mode 100644 index 110a3b4..0000000 Binary files a/_git_of_git_commit_id/objects/fb/65772849c61a386cf8e2f9f371a67a6fcd318c and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fb/6829445fddc8d0d8ebbca2d619060258fd83db b/_git_of_git_commit_id/objects/fb/6829445fddc8d0d8ebbca2d619060258fd83db deleted file mode 100644 index 2ed2c21..0000000 Binary files a/_git_of_git_commit_id/objects/fb/6829445fddc8d0d8ebbca2d619060258fd83db and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fb/b48c341250fce989b04f2cb3dcef794fc66408 b/_git_of_git_commit_id/objects/fb/b48c341250fce989b04f2cb3dcef794fc66408 deleted file mode 100644 index ac6adb7..0000000 Binary files a/_git_of_git_commit_id/objects/fb/b48c341250fce989b04f2cb3dcef794fc66408 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fb/c5fb32f27b17b0968341f3730420a7f5e3302d b/_git_of_git_commit_id/objects/fb/c5fb32f27b17b0968341f3730420a7f5e3302d deleted file mode 100644 index d415b3e..0000000 Binary files a/_git_of_git_commit_id/objects/fb/c5fb32f27b17b0968341f3730420a7f5e3302d and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fc/022f3f3a16fc869a7ce265bf923afcf9994103 b/_git_of_git_commit_id/objects/fc/022f3f3a16fc869a7ce265bf923afcf9994103 deleted file mode 100644 index 5e57462..0000000 Binary files a/_git_of_git_commit_id/objects/fc/022f3f3a16fc869a7ce265bf923afcf9994103 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fc/817652953395f532930fc3716c65df962d99fd b/_git_of_git_commit_id/objects/fc/817652953395f532930fc3716c65df962d99fd deleted file mode 100644 index 3e9e482..0000000 Binary files a/_git_of_git_commit_id/objects/fc/817652953395f532930fc3716c65df962d99fd and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fc/bb6b52a8d3c1834f7870968ca8d8457321b1c4 b/_git_of_git_commit_id/objects/fc/bb6b52a8d3c1834f7870968ca8d8457321b1c4 deleted file mode 100644 index 1ac1bd9..0000000 Binary files a/_git_of_git_commit_id/objects/fc/bb6b52a8d3c1834f7870968ca8d8457321b1c4 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fc/c2ba7f093b1fa6c39203c8e69053ce7bbd779f b/_git_of_git_commit_id/objects/fc/c2ba7f093b1fa6c39203c8e69053ce7bbd779f deleted file mode 100644 index 232c9a2..0000000 Binary files a/_git_of_git_commit_id/objects/fc/c2ba7f093b1fa6c39203c8e69053ce7bbd779f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fd/2bb7e79597bac9263cc84fbbccfd5a223264da b/_git_of_git_commit_id/objects/fd/2bb7e79597bac9263cc84fbbccfd5a223264da deleted file mode 100644 index 2a14cf2..0000000 Binary files a/_git_of_git_commit_id/objects/fd/2bb7e79597bac9263cc84fbbccfd5a223264da and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fd/61a35c3def1a1892bd8534078527aa83dfc51f b/_git_of_git_commit_id/objects/fd/61a35c3def1a1892bd8534078527aa83dfc51f deleted file mode 100644 index b22ceee..0000000 Binary files a/_git_of_git_commit_id/objects/fd/61a35c3def1a1892bd8534078527aa83dfc51f and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fd/72c8adf0d9ec3b8acb2bc91b60d3ed814b3e23 b/_git_of_git_commit_id/objects/fd/72c8adf0d9ec3b8acb2bc91b60d3ed814b3e23 deleted file mode 100644 index f2a8725..0000000 Binary files a/_git_of_git_commit_id/objects/fd/72c8adf0d9ec3b8acb2bc91b60d3ed814b3e23 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fd/a0641066ff38971acd843983c3ecc1ed479387 b/_git_of_git_commit_id/objects/fd/a0641066ff38971acd843983c3ecc1ed479387 deleted file mode 100644 index c43e545..0000000 Binary files a/_git_of_git_commit_id/objects/fd/a0641066ff38971acd843983c3ecc1ed479387 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fe/0706daae8f978ab62343da79a6106d953ac374 b/_git_of_git_commit_id/objects/fe/0706daae8f978ab62343da79a6106d953ac374 deleted file mode 100644 index 227cb9b..0000000 Binary files a/_git_of_git_commit_id/objects/fe/0706daae8f978ab62343da79a6106d953ac374 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fe/08dde66de680d981116595d462cf07672ea029 b/_git_of_git_commit_id/objects/fe/08dde66de680d981116595d462cf07672ea029 deleted file mode 100644 index e177133..0000000 Binary files a/_git_of_git_commit_id/objects/fe/08dde66de680d981116595d462cf07672ea029 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fe/1744d94d4be11ccdccfd495305d2cd9fa4140a b/_git_of_git_commit_id/objects/fe/1744d94d4be11ccdccfd495305d2cd9fa4140a deleted file mode 100644 index c975a8b..0000000 Binary files a/_git_of_git_commit_id/objects/fe/1744d94d4be11ccdccfd495305d2cd9fa4140a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fe/56d1c3395ed1a3b1217e8f58d078656f7eed6a b/_git_of_git_commit_id/objects/fe/56d1c3395ed1a3b1217e8f58d078656f7eed6a deleted file mode 100644 index 699d542..0000000 Binary files a/_git_of_git_commit_id/objects/fe/56d1c3395ed1a3b1217e8f58d078656f7eed6a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fe/66020473a5fb7982f47f8f277172905ae6e0ff b/_git_of_git_commit_id/objects/fe/66020473a5fb7982f47f8f277172905ae6e0ff deleted file mode 100644 index 332b9d9..0000000 Binary files a/_git_of_git_commit_id/objects/fe/66020473a5fb7982f47f8f277172905ae6e0ff and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fe/a1e355eb9938c352f16ef7c7d5c012c2e4901a b/_git_of_git_commit_id/objects/fe/a1e355eb9938c352f16ef7c7d5c012c2e4901a deleted file mode 100644 index a7d30f0..0000000 Binary files a/_git_of_git_commit_id/objects/fe/a1e355eb9938c352f16ef7c7d5c012c2e4901a and /dev/null differ diff --git a/_git_of_git_commit_id/objects/fe/dd91403f126efac1b26c36a21537ef298e5054 b/_git_of_git_commit_id/objects/fe/dd91403f126efac1b26c36a21537ef298e5054 deleted file mode 100644 index b783a5a..0000000 Binary files a/_git_of_git_commit_id/objects/fe/dd91403f126efac1b26c36a21537ef298e5054 and /dev/null differ diff --git a/_git_of_git_commit_id/objects/pack/pack-6fc4aa67de3523453f49d83f00019263a7ba68b0.idx b/_git_of_git_commit_id/objects/pack/pack-6fc4aa67de3523453f49d83f00019263a7ba68b0.idx deleted file mode 100644 index d60415f..0000000 Binary files a/_git_of_git_commit_id/objects/pack/pack-6fc4aa67de3523453f49d83f00019263a7ba68b0.idx and /dev/null differ diff --git a/_git_of_git_commit_id/objects/pack/pack-6fc4aa67de3523453f49d83f00019263a7ba68b0.pack b/_git_of_git_commit_id/objects/pack/pack-6fc4aa67de3523453f49d83f00019263a7ba68b0.pack deleted file mode 100644 index 95592c9..0000000 Binary files a/_git_of_git_commit_id/objects/pack/pack-6fc4aa67de3523453f49d83f00019263a7ba68b0.pack and /dev/null differ diff --git a/_git_of_git_commit_id/packed-refs b/_git_of_git_commit_id/packed-refs deleted file mode 100644 index be18b15..0000000 --- a/_git_of_git_commit_id/packed-refs +++ /dev/null @@ -1,22 +0,0 @@ -# pack-refs with: peeled -0ec2c72916ce8ae1db819f1dc78b9a2f1e611396 refs/tags/v1.9 -^e4f4e7a26a89a5aeae65ad0ee638c31c94bbe1dc -b683a0108b943343f0cc0783e8309f8750f2b78c refs/tags/v1.8 -^a599a75c3a73adb9f70145e7ae13b42f7160bcdb -e4da6e59adc8a7de9f029ea3cba8ec0d0b576e13 refs/tags/v1.7 -^c4a7e03ce7e0622b93421499214bb0e9f72cd14d -473aa600d2c22fc4a008d1c1d8cf50562fef5876 refs/tags/v1.6 -^5205c9924e4b8cc96bba4e672d3b12627f76f30f -8a2e16427355862573140fe9baa1e82ec2e921c6 refs/tags/v1.5 -^a8974bbdaab8bdf3b263af8fa3e1ae71578496d2 -971316a891441fbc2635e33ee9c79cf183d71dbb refs/tags/v1.4 -^9640198ad256c0c45f4aee61e474adbd9c52aeb2 -e89f1e7e8e7f24624ed9d19e1d35898339266072 refs/tags/v1.3 -^d142945e8c4b15c561601e58573938d6835eb467 -3f437b3a14f0fed84f8786d5d7051bb5c0d6936c refs/tags/v1.2 -^9b6e5f0501f9158a741f705d417b0ad337710984 -ab60db7e7fedcae077af509e6192add421bfbb12 refs/tags/v1.1 -^6cc9d99542458e164822c47488414234b6b59060 -16c85b8d649a34c40056355af1e1f82b0d2c9d76 refs/tags/v1.0 -^54acaffab11daf6f34f0ee04eddba64f2bb2265b -4266d244c6308f0347a13fd8761dbc532b271ca5 refs/remotes/origin/master diff --git a/_git_of_git_commit_id/refs/heads/master b/_git_of_git_commit_id/refs/heads/master deleted file mode 100644 index 1a6ed3e..0000000 --- a/_git_of_git_commit_id/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -7181832b7d9afdeb86c32cf51214abfca63625be diff --git a/_git_of_git_commit_id/refs/heads/mostr_refactor_gitdir_lookup b/_git_of_git_commit_id/refs/heads/mostr_refactor_gitdir_lookup deleted file mode 100644 index a67346d..0000000 --- a/_git_of_git_commit_id/refs/heads/mostr_refactor_gitdir_lookup +++ /dev/null @@ -1 +0,0 @@ -82648ff591d5e40c7c39473f92e566c093ff5fc5 diff --git a/_git_of_git_commit_id/refs/remotes/mostr/fix_custom_file_write b/_git_of_git_commit_id/refs/remotes/mostr/fix_custom_file_write deleted file mode 100644 index 46b44e7..0000000 --- a/_git_of_git_commit_id/refs/remotes/mostr/fix_custom_file_write +++ /dev/null @@ -1 +0,0 @@ -affad5022ca2549d53cfc344d9aac497aa8e1e12 diff --git a/_git_of_git_commit_id/refs/remotes/mostr/integration_tests b/_git_of_git_commit_id/refs/remotes/mostr/integration_tests deleted file mode 100644 index 3ac5247..0000000 --- a/_git_of_git_commit_id/refs/remotes/mostr/integration_tests +++ /dev/null @@ -1 +0,0 @@ -8a67a9fee3512b9c60820899a865000fbfbe5538 diff --git a/_git_of_git_commit_id/refs/remotes/mostr/master b/_git_of_git_commit_id/refs/remotes/mostr/master deleted file mode 100644 index 0db5135..0000000 --- a/_git_of_git_commit_id/refs/remotes/mostr/master +++ /dev/null @@ -1 +0,0 @@ -360ce69f76e95595681644275580615cd6271d01 diff --git a/_git_of_git_commit_id/refs/remotes/mostr/refactor_gitdir_lookup b/_git_of_git_commit_id/refs/remotes/mostr/refactor_gitdir_lookup deleted file mode 100644 index c6df19d..0000000 --- a/_git_of_git_commit_id/refs/remotes/mostr/refactor_gitdir_lookup +++ /dev/null @@ -1 +0,0 @@ -33ad86f74c66323455de935ea5ab63082b248204 diff --git a/_git_of_git_commit_id/refs/remotes/origin/HEAD b/_git_of_git_commit_id/refs/remotes/origin/HEAD deleted file mode 100644 index 6efe28f..0000000 --- a/_git_of_git_commit_id/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/remotes/origin/master diff --git a/_git_of_git_commit_id/refs/remotes/origin/master b/_git_of_git_commit_id/refs/remotes/origin/master deleted file mode 100644 index 4b1fdfd..0000000 --- a/_git_of_git_commit_id/refs/remotes/origin/master +++ /dev/null @@ -1 +0,0 @@ -ace7067505011e6a4ac069732c9ecd9e8c54b23a diff --git a/_git_of_git_commit_id/refs/tags/v2.0 b/_git_of_git_commit_id/refs/tags/v2.0 deleted file mode 100644 index 1c1a5c5..0000000 --- a/_git_of_git_commit_id/refs/tags/v2.0 +++ /dev/null @@ -1 +0,0 @@ -1740fbbddc35a2c3d7da5421ee4eb61b90664802 diff --git a/_git_of_git_commit_id/refs/tags/v2.0.1 b/_git_of_git_commit_id/refs/tags/v2.0.1 deleted file mode 100644 index 8032af1..0000000 --- a/_git_of_git_commit_id/refs/tags/v2.0.1 +++ /dev/null @@ -1 +0,0 @@ -bd5328a463ef29ec2bd6a7ecf8e51af61a9882ab diff --git a/_git_of_git_commit_id/refs/tags/v2.0.2 b/_git_of_git_commit_id/refs/tags/v2.0.2 deleted file mode 100644 index 53d6e5b..0000000 --- a/_git_of_git_commit_id/refs/tags/v2.0.2 +++ /dev/null @@ -1 +0,0 @@ -f0c5ac406ddde0a45a885e0ebb7eed15252d487a diff --git a/_git_of_git_commit_id/refs/tags/v2.0.3 b/_git_of_git_commit_id/refs/tags/v2.0.3 deleted file mode 100644 index db4171d..0000000 --- a/_git_of_git_commit_id/refs/tags/v2.0.3 +++ /dev/null @@ -1 +0,0 @@ -28728f43f6a9619e78c560830f1db98e271cec07 diff --git a/_git_of_git_commit_id/refs/tags/v2.0.4 b/_git_of_git_commit_id/refs/tags/v2.0.4 deleted file mode 100644 index cbb319b..0000000 --- a/_git_of_git_commit_id/refs/tags/v2.0.4 +++ /dev/null @@ -1 +0,0 @@ -9b0ee30af97d4ae17dffb11bd06ed67fc4451547 diff --git a/_git_on_a_tag/COMMIT_EDITMSG b/_git_on_a_tag/COMMIT_EDITMSG deleted file mode 100644 index 088ce8c..0000000 --- a/_git_on_a_tag/COMMIT_EDITMSG +++ /dev/null @@ -1,9 +0,0 @@ -isecond line -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# On branch master -# Changes to be committed: -# (use "git reset HEAD ..." to unstage) -# -# modified: README -# diff --git a/_git_on_a_tag/HEAD b/_git_on_a_tag/HEAD deleted file mode 100644 index cb089cd..0000000 --- a/_git_on_a_tag/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/_git_on_a_tag/config b/_git_on_a_tag/config deleted file mode 100644 index af10792..0000000 --- a/_git_on_a_tag/config +++ /dev/null @@ -1,6 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - ignorecase = true diff --git a/_git_on_a_tag/description b/_git_on_a_tag/description deleted file mode 100644 index 498b267..0000000 --- a/_git_on_a_tag/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_on_a_tag/hooks/applypatch-msg.sample b/_git_on_a_tag/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/_git_on_a_tag/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_on_a_tag/hooks/commit-msg.sample b/_git_on_a_tag/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/_git_on_a_tag/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_on_a_tag/hooks/post-update.sample b/_git_on_a_tag/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/_git_on_a_tag/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_on_a_tag/hooks/pre-applypatch.sample b/_git_on_a_tag/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/_git_on_a_tag/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_on_a_tag/hooks/pre-commit.sample b/_git_on_a_tag/hooks/pre-commit.sample deleted file mode 100755 index 18c4829..0000000 --- a/_git_on_a_tag/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_on_a_tag/hooks/pre-rebase.sample b/_git_on_a_tag/hooks/pre-rebase.sample deleted file mode 100755 index 16b4794..0000000 --- a/_git_on_a_tag/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /opt/local/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 - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_on_a_tag/hooks/prepare-commit-msg.sample b/_git_on_a_tag/hooks/prepare-commit-msg.sample deleted file mode 100755 index d0a7248..0000000 --- a/_git_on_a_tag/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /opt/local/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /opt/local/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_on_a_tag/hooks/update.sample b/_git_on_a_tag/hooks/update.sample deleted file mode 100755 index 71ab04e..0000000 --- a/_git_on_a_tag/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_on_a_tag/index b/_git_on_a_tag/index deleted file mode 100644 index ebf4587..0000000 Binary files a/_git_on_a_tag/index and /dev/null differ diff --git a/_git_on_a_tag/info/exclude b/_git_on_a_tag/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_on_a_tag/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_on_a_tag/logs/HEAD b/_git_on_a_tag/logs/HEAD deleted file mode 100644 index 3589e94..0000000 --- a/_git_on_a_tag/logs/HEAD +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 245e5b2f87f8e56263dd9327323c5818f1201e44 Konrad Malawski 1345374722 +0200 commit (initial): initial commit -245e5b2f87f8e56263dd9327323c5818f1201e44 de4db35917b268089c81c9ab1b52541bb778f5a0 Konrad Malawski 1345374738 +0200 commit: isecond line diff --git a/_git_on_a_tag/logs/refs/heads/master b/_git_on_a_tag/logs/refs/heads/master deleted file mode 100644 index 3589e94..0000000 --- a/_git_on_a_tag/logs/refs/heads/master +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 245e5b2f87f8e56263dd9327323c5818f1201e44 Konrad Malawski 1345374722 +0200 commit (initial): initial commit -245e5b2f87f8e56263dd9327323c5818f1201e44 de4db35917b268089c81c9ab1b52541bb778f5a0 Konrad Malawski 1345374738 +0200 commit: isecond line diff --git a/_git_on_a_tag/objects/1b/7216a5d803dbdbbbb3512fcdde464699f20432 b/_git_on_a_tag/objects/1b/7216a5d803dbdbbbb3512fcdde464699f20432 deleted file mode 100644 index ef62801..0000000 Binary files a/_git_on_a_tag/objects/1b/7216a5d803dbdbbbb3512fcdde464699f20432 and /dev/null differ diff --git a/_git_on_a_tag/objects/24/5e5b2f87f8e56263dd9327323c5818f1201e44 b/_git_on_a_tag/objects/24/5e5b2f87f8e56263dd9327323c5818f1201e44 deleted file mode 100644 index 612b874..0000000 Binary files a/_git_on_a_tag/objects/24/5e5b2f87f8e56263dd9327323c5818f1201e44 and /dev/null differ diff --git a/_git_on_a_tag/objects/d9/d37b24af0396769e027885d296da1fb586b4d5 b/_git_on_a_tag/objects/d9/d37b24af0396769e027885d296da1fb586b4d5 deleted file mode 100644 index 8440bdb..0000000 Binary files a/_git_on_a_tag/objects/d9/d37b24af0396769e027885d296da1fb586b4d5 and /dev/null differ diff --git a/_git_on_a_tag/objects/de/4db35917b268089c81c9ab1b52541bb778f5a0 b/_git_on_a_tag/objects/de/4db35917b268089c81c9ab1b52541bb778f5a0 deleted file mode 100644 index f2d468a..0000000 Binary files a/_git_on_a_tag/objects/de/4db35917b268089c81c9ab1b52541bb778f5a0 and /dev/null differ diff --git a/_git_on_a_tag/objects/e4/248b6f8800329b7cfb606cbf8a15e448f72d3a b/_git_on_a_tag/objects/e4/248b6f8800329b7cfb606cbf8a15e448f72d3a deleted file mode 100644 index b0b0257..0000000 Binary files a/_git_on_a_tag/objects/e4/248b6f8800329b7cfb606cbf8a15e448f72d3a and /dev/null differ diff --git a/_git_on_a_tag/objects/e8/94cf9906827b4042891a5787bf4cb20ea52ae6 b/_git_on_a_tag/objects/e8/94cf9906827b4042891a5787bf4cb20ea52ae6 deleted file mode 100644 index 2fd0fc5..0000000 Binary files a/_git_on_a_tag/objects/e8/94cf9906827b4042891a5787bf4cb20ea52ae6 and /dev/null differ diff --git a/_git_on_a_tag/refs/heads/master b/_git_on_a_tag/refs/heads/master deleted file mode 100644 index 2ce406c..0000000 --- a/_git_on_a_tag/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -de4db35917b268089c81c9ab1b52541bb778f5a0 diff --git a/_git_on_a_tag/refs/tags/v1.0.0 b/_git_on_a_tag/refs/tags/v1.0.0 deleted file mode 100644 index 2ce406c..0000000 --- a/_git_on_a_tag/refs/tags/v1.0.0 +++ /dev/null @@ -1 +0,0 @@ -de4db35917b268089c81c9ab1b52541bb778f5a0 diff --git a/_git_on_a_tag_dirty/COMMIT_EDITMSG b/_git_on_a_tag_dirty/COMMIT_EDITMSG deleted file mode 100644 index 088ce8c..0000000 --- a/_git_on_a_tag_dirty/COMMIT_EDITMSG +++ /dev/null @@ -1,9 +0,0 @@ -isecond line -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# On branch master -# Changes to be committed: -# (use "git reset HEAD ..." to unstage) -# -# modified: README -# diff --git a/_git_on_a_tag_dirty/HEAD b/_git_on_a_tag_dirty/HEAD deleted file mode 100644 index cb089cd..0000000 --- a/_git_on_a_tag_dirty/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/_git_on_a_tag_dirty/config b/_git_on_a_tag_dirty/config deleted file mode 100644 index af10792..0000000 --- a/_git_on_a_tag_dirty/config +++ /dev/null @@ -1,6 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - ignorecase = true diff --git a/_git_on_a_tag_dirty/description b/_git_on_a_tag_dirty/description deleted file mode 100644 index 498b267..0000000 --- a/_git_on_a_tag_dirty/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_on_a_tag_dirty/hooks/applypatch-msg.sample b/_git_on_a_tag_dirty/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/_git_on_a_tag_dirty/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_on_a_tag_dirty/hooks/commit-msg.sample b/_git_on_a_tag_dirty/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/_git_on_a_tag_dirty/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_on_a_tag_dirty/hooks/post-update.sample b/_git_on_a_tag_dirty/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/_git_on_a_tag_dirty/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_on_a_tag_dirty/hooks/pre-applypatch.sample b/_git_on_a_tag_dirty/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/_git_on_a_tag_dirty/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_on_a_tag_dirty/hooks/pre-commit.sample b/_git_on_a_tag_dirty/hooks/pre-commit.sample deleted file mode 100755 index 18c4829..0000000 --- a/_git_on_a_tag_dirty/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_on_a_tag_dirty/hooks/pre-rebase.sample b/_git_on_a_tag_dirty/hooks/pre-rebase.sample deleted file mode 100755 index 16b4794..0000000 --- a/_git_on_a_tag_dirty/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /opt/local/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 - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_on_a_tag_dirty/hooks/prepare-commit-msg.sample b/_git_on_a_tag_dirty/hooks/prepare-commit-msg.sample deleted file mode 100755 index d0a7248..0000000 --- a/_git_on_a_tag_dirty/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /opt/local/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /opt/local/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_on_a_tag_dirty/hooks/update.sample b/_git_on_a_tag_dirty/hooks/update.sample deleted file mode 100755 index 71ab04e..0000000 --- a/_git_on_a_tag_dirty/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_on_a_tag_dirty/index b/_git_on_a_tag_dirty/index deleted file mode 100644 index ebf4587..0000000 Binary files a/_git_on_a_tag_dirty/index and /dev/null differ diff --git a/_git_on_a_tag_dirty/info/exclude b/_git_on_a_tag_dirty/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_on_a_tag_dirty/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_on_a_tag_dirty/logs/HEAD b/_git_on_a_tag_dirty/logs/HEAD deleted file mode 100644 index 3589e94..0000000 --- a/_git_on_a_tag_dirty/logs/HEAD +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 245e5b2f87f8e56263dd9327323c5818f1201e44 Konrad Malawski 1345374722 +0200 commit (initial): initial commit -245e5b2f87f8e56263dd9327323c5818f1201e44 de4db35917b268089c81c9ab1b52541bb778f5a0 Konrad Malawski 1345374738 +0200 commit: isecond line diff --git a/_git_on_a_tag_dirty/logs/refs/heads/master b/_git_on_a_tag_dirty/logs/refs/heads/master deleted file mode 100644 index 3589e94..0000000 --- a/_git_on_a_tag_dirty/logs/refs/heads/master +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 245e5b2f87f8e56263dd9327323c5818f1201e44 Konrad Malawski 1345374722 +0200 commit (initial): initial commit -245e5b2f87f8e56263dd9327323c5818f1201e44 de4db35917b268089c81c9ab1b52541bb778f5a0 Konrad Malawski 1345374738 +0200 commit: isecond line diff --git a/_git_on_a_tag_dirty/objects/1b/7216a5d803dbdbbbb3512fcdde464699f20432 b/_git_on_a_tag_dirty/objects/1b/7216a5d803dbdbbbb3512fcdde464699f20432 deleted file mode 100644 index ef62801..0000000 Binary files a/_git_on_a_tag_dirty/objects/1b/7216a5d803dbdbbbb3512fcdde464699f20432 and /dev/null differ diff --git a/_git_on_a_tag_dirty/objects/24/5e5b2f87f8e56263dd9327323c5818f1201e44 b/_git_on_a_tag_dirty/objects/24/5e5b2f87f8e56263dd9327323c5818f1201e44 deleted file mode 100644 index 612b874..0000000 Binary files a/_git_on_a_tag_dirty/objects/24/5e5b2f87f8e56263dd9327323c5818f1201e44 and /dev/null differ diff --git a/_git_on_a_tag_dirty/objects/d9/d37b24af0396769e027885d296da1fb586b4d5 b/_git_on_a_tag_dirty/objects/d9/d37b24af0396769e027885d296da1fb586b4d5 deleted file mode 100644 index 8440bdb..0000000 Binary files a/_git_on_a_tag_dirty/objects/d9/d37b24af0396769e027885d296da1fb586b4d5 and /dev/null differ diff --git a/_git_on_a_tag_dirty/objects/de/4db35917b268089c81c9ab1b52541bb778f5a0 b/_git_on_a_tag_dirty/objects/de/4db35917b268089c81c9ab1b52541bb778f5a0 deleted file mode 100644 index f2d468a..0000000 Binary files a/_git_on_a_tag_dirty/objects/de/4db35917b268089c81c9ab1b52541bb778f5a0 and /dev/null differ diff --git a/_git_on_a_tag_dirty/objects/e4/248b6f8800329b7cfb606cbf8a15e448f72d3a b/_git_on_a_tag_dirty/objects/e4/248b6f8800329b7cfb606cbf8a15e448f72d3a deleted file mode 100644 index b0b0257..0000000 Binary files a/_git_on_a_tag_dirty/objects/e4/248b6f8800329b7cfb606cbf8a15e448f72d3a and /dev/null differ diff --git a/_git_on_a_tag_dirty/objects/e8/94cf9906827b4042891a5787bf4cb20ea52ae6 b/_git_on_a_tag_dirty/objects/e8/94cf9906827b4042891a5787bf4cb20ea52ae6 deleted file mode 100644 index 2fd0fc5..0000000 Binary files a/_git_on_a_tag_dirty/objects/e8/94cf9906827b4042891a5787bf4cb20ea52ae6 and /dev/null differ diff --git a/_git_on_a_tag_dirty/refs/heads/master b/_git_on_a_tag_dirty/refs/heads/master deleted file mode 100644 index 2ce406c..0000000 --- a/_git_on_a_tag_dirty/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -de4db35917b268089c81c9ab1b52541bb778f5a0 diff --git a/_git_on_a_tag_dirty/refs/tags/v1.0.0 b/_git_on_a_tag_dirty/refs/tags/v1.0.0 deleted file mode 100644 index 2ce406c..0000000 --- a/_git_on_a_tag_dirty/refs/tags/v1.0.0 +++ /dev/null @@ -1 +0,0 @@ -de4db35917b268089c81c9ab1b52541bb778f5a0 diff --git a/_git_one_commit/COMMIT_EDITMSG b/_git_one_commit/COMMIT_EDITMSG deleted file mode 100644 index 9f2fa23..0000000 --- a/_git_one_commit/COMMIT_EDITMSG +++ /dev/null @@ -1 +0,0 @@ -initial commit on test project diff --git a/_git_one_commit/HEAD b/_git_one_commit/HEAD deleted file mode 100644 index cb089cd..0000000 --- a/_git_one_commit/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/_git_one_commit/ORIG_HEAD b/_git_one_commit/ORIG_HEAD deleted file mode 100644 index a23e5e8..0000000 --- a/_git_one_commit/ORIG_HEAD +++ /dev/null @@ -1 +0,0 @@ -0b0181b49468f45e573eaf3562f163107c5c121d diff --git a/_git_one_commit/config b/_git_one_commit/config deleted file mode 100644 index ee20fda..0000000 --- a/_git_one_commit/config +++ /dev/null @@ -1,11 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = false - bare = false - logallrefupdates = true - symlinks = false - ignorecase = true - hideDotFiles = dotGitOnly -[user] - name = John Doe - email = john.doe@domain.com diff --git a/_git_one_commit/description b/_git_one_commit/description deleted file mode 100644 index 498b267..0000000 --- a/_git_one_commit/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_one_commit/hooks/applypatch-msg.sample b/_git_one_commit/hooks/applypatch-msg.sample deleted file mode 100644 index 8b2a2fe..0000000 --- a/_git_one_commit/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_one_commit/hooks/commit-msg.sample b/_git_one_commit/hooks/commit-msg.sample deleted file mode 100644 index b58d118..0000000 --- a/_git_one_commit/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_one_commit/hooks/post-commit.sample b/_git_one_commit/hooks/post-commit.sample deleted file mode 100644 index 2266821..0000000 --- a/_git_one_commit/hooks/post-commit.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script that is called after a successful -# commit is made. -# -# To enable this hook, rename this file to "post-commit". - -: Nothing diff --git a/_git_one_commit/hooks/post-receive.sample b/_git_one_commit/hooks/post-receive.sample deleted file mode 100644 index 7a83e17..0000000 --- a/_git_one_commit/hooks/post-receive.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script for the "post-receive" event. -# -# The "post-receive" script is run after receive-pack has accepted a pack -# and the repository has been updated. It is passed arguments in through -# stdin in the form -# -# For example: -# aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master -# -# see contrib/hooks/ for a sample, or uncomment the next line and -# rename the file to "post-receive". - -#. /usr/share/doc/git-core/contrib/hooks/post-receive-email diff --git a/_git_one_commit/hooks/post-update.sample b/_git_one_commit/hooks/post-update.sample deleted file mode 100644 index ec17ec1..0000000 --- a/_git_one_commit/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_one_commit/hooks/pre-applypatch.sample b/_git_one_commit/hooks/pre-applypatch.sample deleted file mode 100644 index b1f187c..0000000 --- a/_git_one_commit/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_one_commit/hooks/pre-commit.sample b/_git_one_commit/hooks/pre-commit.sample deleted file mode 100644 index 18c4829..0000000 --- a/_git_one_commit/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_one_commit/hooks/pre-rebase.sample b/_git_one_commit/hooks/pre-rebase.sample deleted file mode 100644 index 9773ed4..0000000 --- a/_git_one_commit/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_one_commit/hooks/prepare-commit-msg.sample b/_git_one_commit/hooks/prepare-commit-msg.sample deleted file mode 100644 index f093a02..0000000 --- a/_git_one_commit/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_one_commit/hooks/update.sample b/_git_one_commit/hooks/update.sample deleted file mode 100644 index 71ab04e..0000000 --- a/_git_one_commit/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_one_commit/index b/_git_one_commit/index deleted file mode 100644 index 58e7d8f..0000000 Binary files a/_git_one_commit/index and /dev/null differ diff --git a/_git_one_commit/info/exclude b/_git_one_commit/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_one_commit/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_one_commit/logs/HEAD b/_git_one_commit/logs/HEAD deleted file mode 100644 index 584a1a8..0000000 --- a/_git_one_commit/logs/HEAD +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 0b0181b49468f45e573eaf3562f163107c5c121d John Doe 1341410041 +0200 commit (initial): initial commit on test project diff --git a/_git_one_commit/logs/refs/heads/master b/_git_one_commit/logs/refs/heads/master deleted file mode 100644 index 584a1a8..0000000 --- a/_git_one_commit/logs/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 0b0181b49468f45e573eaf3562f163107c5c121d John Doe 1341410041 +0200 commit (initial): initial commit on test project diff --git a/_git_one_commit/objects/09/3db1131fab69103a287e5781a937af6b4cae2c b/_git_one_commit/objects/09/3db1131fab69103a287e5781a937af6b4cae2c deleted file mode 100644 index 3a68f53..0000000 --- a/_git_one_commit/objects/09/3db1131fab69103a287e5781a937af6b4cae2c +++ /dev/null @@ -1 +0,0 @@ -xSMo@ٿbJV[FQ:"`e.XVY?p{oX\]]\@Tp2ȹLTY҇s.!O%5K 6n_ y8(nF2fo`jH)7VDHi(Uʳ Q)jE]G%L=DX&,0~9C/l,'bGxmK#hվ5LP bʱn&̷BϞ 2f4Z^.kO|D'9ICUj.Rמd%ZٷĒݦ-?tnsyaw)%z,GntLa7Bm:o=J \ No newline at end of file diff --git a/_git_one_commit/objects/0b/0181b49468f45e573eaf3562f163107c5c121d b/_git_one_commit/objects/0b/0181b49468f45e573eaf3562f163107c5c121d deleted file mode 100644 index 70f66d1..0000000 --- a/_git_one_commit/objects/0b/0181b49468f45e573eaf3562f163107c5c121d +++ /dev/null @@ -1,3 +0,0 @@ -xA -1 E] C֙ -".\ymo{\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_one_commit_dirty/hooks/post-commit.sample b/_git_one_commit_dirty/hooks/post-commit.sample deleted file mode 100644 index 2266821..0000000 --- a/_git_one_commit_dirty/hooks/post-commit.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script that is called after a successful -# commit is made. -# -# To enable this hook, rename this file to "post-commit". - -: Nothing diff --git a/_git_one_commit_dirty/hooks/post-receive.sample b/_git_one_commit_dirty/hooks/post-receive.sample deleted file mode 100644 index 7a83e17..0000000 --- a/_git_one_commit_dirty/hooks/post-receive.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script for the "post-receive" event. -# -# The "post-receive" script is run after receive-pack has accepted a pack -# and the repository has been updated. It is passed arguments in through -# stdin in the form -# -# For example: -# aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master -# -# see contrib/hooks/ for a sample, or uncomment the next line and -# rename the file to "post-receive". - -#. /usr/share/doc/git-core/contrib/hooks/post-receive-email diff --git a/_git_one_commit_dirty/hooks/post-update.sample b/_git_one_commit_dirty/hooks/post-update.sample deleted file mode 100644 index ec17ec1..0000000 --- a/_git_one_commit_dirty/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_one_commit_dirty/hooks/pre-applypatch.sample b/_git_one_commit_dirty/hooks/pre-applypatch.sample deleted file mode 100644 index b1f187c..0000000 --- a/_git_one_commit_dirty/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_one_commit_dirty/hooks/pre-commit.sample b/_git_one_commit_dirty/hooks/pre-commit.sample deleted file mode 100644 index 18c4829..0000000 --- a/_git_one_commit_dirty/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_one_commit_dirty/hooks/pre-rebase.sample b/_git_one_commit_dirty/hooks/pre-rebase.sample deleted file mode 100644 index 9773ed4..0000000 --- a/_git_one_commit_dirty/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_one_commit_dirty/hooks/prepare-commit-msg.sample b/_git_one_commit_dirty/hooks/prepare-commit-msg.sample deleted file mode 100644 index f093a02..0000000 --- a/_git_one_commit_dirty/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_one_commit_dirty/hooks/update.sample b/_git_one_commit_dirty/hooks/update.sample deleted file mode 100644 index 71ab04e..0000000 --- a/_git_one_commit_dirty/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_one_commit_dirty/index b/_git_one_commit_dirty/index deleted file mode 100644 index 7e8b521..0000000 Binary files a/_git_one_commit_dirty/index and /dev/null differ diff --git a/_git_one_commit_dirty/info/exclude b/_git_one_commit_dirty/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_one_commit_dirty/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_one_commit_dirty/logs/HEAD b/_git_one_commit_dirty/logs/HEAD deleted file mode 100644 index 584a1a8..0000000 --- a/_git_one_commit_dirty/logs/HEAD +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 0b0181b49468f45e573eaf3562f163107c5c121d John Doe 1341410041 +0200 commit (initial): initial commit on test project diff --git a/_git_one_commit_dirty/logs/refs/heads/master b/_git_one_commit_dirty/logs/refs/heads/master deleted file mode 100644 index 584a1a8..0000000 --- a/_git_one_commit_dirty/logs/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 0b0181b49468f45e573eaf3562f163107c5c121d John Doe 1341410041 +0200 commit (initial): initial commit on test project diff --git a/_git_one_commit_dirty/objects/09/3db1131fab69103a287e5781a937af6b4cae2c b/_git_one_commit_dirty/objects/09/3db1131fab69103a287e5781a937af6b4cae2c deleted file mode 100644 index 3a68f53..0000000 --- a/_git_one_commit_dirty/objects/09/3db1131fab69103a287e5781a937af6b4cae2c +++ /dev/null @@ -1 +0,0 @@ -xSMo@ٿbJV[FQ:"`e.XVY?p{oX\]]\@Tp2ȹLTY҇s.!O%5K 6n_ y8(nF2fo`jH)7VDHi(Uʳ Q)jE]G%L=DX&,0~9C/l,'bGxmK#hվ5LP bʱn&̷BϞ 2f4Z^.kO|D'9ICUj.Rמd%ZٷĒݦ-?tnsyaw)%z,GntLa7Bm:o=J \ No newline at end of file diff --git a/_git_one_commit_dirty/objects/0b/0181b49468f45e573eaf3562f163107c5c121d b/_git_one_commit_dirty/objects/0b/0181b49468f45e573eaf3562f163107c5c121d deleted file mode 100644 index 70f66d1..0000000 --- a/_git_one_commit_dirty/objects/0b/0181b49468f45e573eaf3562f163107c5c121d +++ /dev/null @@ -1,3 +0,0 @@ -xA -1 E] C֙ -".\ymo{\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_one_commit_with_umlaut/hooks/post-commit.sample b/_git_one_commit_with_umlaut/hooks/post-commit.sample deleted file mode 100644 index 2266821..0000000 --- a/_git_one_commit_with_umlaut/hooks/post-commit.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script that is called after a successful -# commit is made. -# -# To enable this hook, rename this file to "post-commit". - -: Nothing diff --git a/_git_one_commit_with_umlaut/hooks/post-receive.sample b/_git_one_commit_with_umlaut/hooks/post-receive.sample deleted file mode 100644 index 7a83e17..0000000 --- a/_git_one_commit_with_umlaut/hooks/post-receive.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script for the "post-receive" event. -# -# The "post-receive" script is run after receive-pack has accepted a pack -# and the repository has been updated. It is passed arguments in through -# stdin in the form -# -# For example: -# aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master -# -# see contrib/hooks/ for a sample, or uncomment the next line and -# rename the file to "post-receive". - -#. /usr/share/doc/git-core/contrib/hooks/post-receive-email diff --git a/_git_one_commit_with_umlaut/hooks/post-update.sample b/_git_one_commit_with_umlaut/hooks/post-update.sample deleted file mode 100644 index ec17ec1..0000000 --- a/_git_one_commit_with_umlaut/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_one_commit_with_umlaut/hooks/pre-applypatch.sample b/_git_one_commit_with_umlaut/hooks/pre-applypatch.sample deleted file mode 100644 index b1f187c..0000000 --- a/_git_one_commit_with_umlaut/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_one_commit_with_umlaut/hooks/pre-commit.sample b/_git_one_commit_with_umlaut/hooks/pre-commit.sample deleted file mode 100644 index 18c4829..0000000 --- a/_git_one_commit_with_umlaut/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_one_commit_with_umlaut/hooks/pre-rebase.sample b/_git_one_commit_with_umlaut/hooks/pre-rebase.sample deleted file mode 100644 index 9773ed4..0000000 --- a/_git_one_commit_with_umlaut/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_one_commit_with_umlaut/hooks/prepare-commit-msg.sample b/_git_one_commit_with_umlaut/hooks/prepare-commit-msg.sample deleted file mode 100644 index f093a02..0000000 --- a/_git_one_commit_with_umlaut/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_one_commit_with_umlaut/hooks/update.sample b/_git_one_commit_with_umlaut/hooks/update.sample deleted file mode 100644 index 71ab04e..0000000 --- a/_git_one_commit_with_umlaut/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_one_commit_with_umlaut/index b/_git_one_commit_with_umlaut/index deleted file mode 100644 index 58e7d8f..0000000 Binary files a/_git_one_commit_with_umlaut/index and /dev/null differ diff --git a/_git_one_commit_with_umlaut/info/exclude b/_git_one_commit_with_umlaut/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_one_commit_with_umlaut/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_one_commit_with_umlaut/logs/HEAD b/_git_one_commit_with_umlaut/logs/HEAD deleted file mode 100644 index 25d4c07..0000000 --- a/_git_one_commit_with_umlaut/logs/HEAD +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 0b0181b49468f45e573eaf3562f163107c5c121d John Doe 1341410041 +0200 commit (initial): initial commit on test project -0b0181b49468f45e573eaf3562f163107c5c121d 7002d5c2b8c7c68b07efdc0096b6cac67d11c07e John Doe 1411140316 +0200 push diff --git a/_git_one_commit_with_umlaut/logs/refs/heads/master b/_git_one_commit_with_umlaut/logs/refs/heads/master deleted file mode 100644 index 25d4c07..0000000 --- a/_git_one_commit_with_umlaut/logs/refs/heads/master +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 0b0181b49468f45e573eaf3562f163107c5c121d John Doe 1341410041 +0200 commit (initial): initial commit on test project -0b0181b49468f45e573eaf3562f163107c5c121d 7002d5c2b8c7c68b07efdc0096b6cac67d11c07e John Doe 1411140316 +0200 push diff --git a/_git_one_commit_with_umlaut/objects/09/3db1131fab69103a287e5781a937af6b4cae2c b/_git_one_commit_with_umlaut/objects/09/3db1131fab69103a287e5781a937af6b4cae2c deleted file mode 100644 index 3a68f53..0000000 --- a/_git_one_commit_with_umlaut/objects/09/3db1131fab69103a287e5781a937af6b4cae2c +++ /dev/null @@ -1 +0,0 @@ -xSMo@ٿbJV[FQ:"`e.XVY?p{oX\]]\@Tp2ȹLTY҇s.!O%5K 6n_ y8(nF2fo`jH)7VDHi(Uʳ Q)jE]G%L=DX&,0~9C/l,'bGxmK#hվ5LP bʱn&̷BϞ 2f4Z^.kO|D'9ICUj.Rמd%ZٷĒݦ-?tnsyaw)%z,GntLa7Bm:o=J \ No newline at end of file diff --git a/_git_one_commit_with_umlaut/objects/0b/0181b49468f45e573eaf3562f163107c5c121d b/_git_one_commit_with_umlaut/objects/0b/0181b49468f45e573eaf3562f163107c5c121d deleted file mode 100644 index 70f66d1..0000000 --- a/_git_one_commit_with_umlaut/objects/0b/0181b49468f45e573eaf3562f163107c5c121d +++ /dev/null @@ -1,3 +0,0 @@ -xA -1 E] C֙ -".\ymo{xwQFJ!X_RX@9 Nˑpr@[vSb \ No newline at end of file diff --git a/_git_one_commit_with_umlaut/objects/5e/2e162cd8e4ea83361783274edbd2e4e8a24228 b/_git_one_commit_with_umlaut/objects/5e/2e162cd8e4ea83361783274edbd2e4e8a24228 deleted file mode 100644 index 4ce7e84..0000000 Binary files a/_git_one_commit_with_umlaut/objects/5e/2e162cd8e4ea83361783274edbd2e4e8a24228 and /dev/null differ diff --git a/_git_one_commit_with_umlaut/objects/70/02d5c2b8c7c68b07efdc0096b6cac67d11c07e b/_git_one_commit_with_umlaut/objects/70/02d5c2b8c7c68b07efdc0096b6cac67d11c07e deleted file mode 100644 index 052eb0f..0000000 Binary files a/_git_one_commit_with_umlaut/objects/70/02d5c2b8c7c68b07efdc0096b6cac67d11c07e and /dev/null differ diff --git a/_git_one_commit_with_umlaut/objects/96/ae169080ab11c4e7dd3a6668ceb4dc8b9ad0a4 b/_git_one_commit_with_umlaut/objects/96/ae169080ab11c4e7dd3a6668ceb4dc8b9ad0a4 deleted file mode 100644 index b878159..0000000 --- a/_git_one_commit_with_umlaut/objects/96/ae169080ab11c4e7dd3a6668ceb4dc8b9ad0a4 +++ /dev/null @@ -1 +0,0 @@ -xKj1D)z0gBYXj3@dW<U@tgĞsr.-Zi%s;ZLi8o.D0:K  _zr) oיUJmw@K6XL:)iڨ 2}6|PrHR \ No newline at end of file diff --git a/_git_one_commit_with_umlaut/objects/f8/12048b7a9fb2ead5783abf7636ba288b914eda b/_git_one_commit_with_umlaut/objects/f8/12048b7a9fb2ead5783abf7636ba288b914eda deleted file mode 100644 index c298cb3..0000000 Binary files a/_git_one_commit_with_umlaut/objects/f8/12048b7a9fb2ead5783abf7636ba288b914eda and /dev/null differ diff --git a/_git_one_commit_with_umlaut/refs/heads/master b/_git_one_commit_with_umlaut/refs/heads/master deleted file mode 100644 index b99494c..0000000 --- a/_git_one_commit_with_umlaut/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -7002d5c2b8c7c68b07efdc0096b6cac67d11c07e diff --git a/_git_one_commit_with_umlaut/test b/_git_one_commit_with_umlaut/test deleted file mode 100644 index e69de29..0000000 diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/COMMIT_EDITMSG b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/COMMIT_EDITMSG deleted file mode 100644 index 17354a8..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/COMMIT_EDITMSG +++ /dev/null @@ -1 +0,0 @@ -Third line diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/HEAD b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/HEAD deleted file mode 100644 index cb089cd..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/config b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/config deleted file mode 100755 index a375846..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/config +++ /dev/null @@ -1,8 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true -[user] - name = S L - email = s.lange@mailbox.tu-berlin.de diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/description b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/description deleted file mode 100644 index 498b267..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/applypatch-msg.sample b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/commit-msg.sample b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/post-update.sample b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/pre-applypatch.sample b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/pre-commit.sample b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/pre-commit.sample deleted file mode 100755 index 68d62d5..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/pre-commit.sample +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ASCII filenames set this variable to true. -allownonascii=$(git config --bool hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ASCII filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - cat <<\EOF -Error: Attempt to add a non-ASCII file name. - -This can cause problems if you want to work with people on other platforms. - -To be portable it is advisable to rename the file. - -If you know what you are doing you can disable this check using: - - git config hooks.allownonascii true -EOF - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/pre-push.sample b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/pre-push.sample deleted file mode 100755 index 1f3bceb..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/pre-push.sample +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh - -# An example hook script to verify what is about to be pushed. Called by "git -# push" after it has checked the remote status, but before anything has been -# pushed. If this script exits with a non-zero status nothing will be pushed. -# -# This hook is called with the following parameters: -# -# $1 -- Name of the remote to which the push is being done -# $2 -- URL to which the push is being done -# -# If pushing without using a named remote those arguments will be equal. -# -# Information about the commits which are being pushed is supplied as lines to -# the standard input in the form: -# -# -# -# This sample shows how to prevent push of commits where the log message starts -# with "WIP" (work in progress). - -remote="$1" -url="$2" - -z40=0000000000000000000000000000000000000000 - -IFS=' ' -while read local_ref local_sha remote_ref remote_sha -do - if [ "$local_sha" = $z40 ] - then - # Handle delete - : - else - if [ "$remote_sha" = $z40 ] - then - # New branch, examine all commits - range="$local_sha" - else - # Update to existing branch, examine new commits - range="$remote_sha..$local_sha" - fi - - # Check for WIP commit - commit=`git rev-list -n 1 --grep '^WIP' "$range"` - if [ -n "$commit" ] - then - echo "Found WIP commit in $local_ref, not pushing" - exit 1 - fi - fi -done - -exit 0 diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/pre-rebase.sample b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/pre-rebase.sample deleted file mode 100755 index 33730ca..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -<<\DOC_END - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". - -DOC_END diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/prepare-commit-msg.sample b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/prepare-commit-msg.sample deleted file mode 100755 index f093a02..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/update.sample b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/update.sample deleted file mode 100755 index d847583..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/index b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/index deleted file mode 100644 index ee09ba8..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/index and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/info/exclude b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/logs/HEAD b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/logs/HEAD deleted file mode 100644 index 1997ac9..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/logs/HEAD +++ /dev/null @@ -1,3 +0,0 @@ -0000000000000000000000000000000000000000 f830b5f85cad3d33ba50d04c3d1454e1ae469057 S L 1433368673 +0200 commit (initial): initial commit -f830b5f85cad3d33ba50d04c3d1454e1ae469057 0e3495783c56589213ee5f2ae8900e2dc1b776c4 S L 1433368750 +0200 commit: second line -0e3495783c56589213ee5f2ae8900e2dc1b776c4 b0c6d28b3b83bf7b905321bae67d9ca4c75a203f S L 1433371818 +0200 commit: Third line diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/logs/refs/heads/master b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/logs/refs/heads/master deleted file mode 100644 index 1997ac9..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/logs/refs/heads/master +++ /dev/null @@ -1,3 +0,0 @@ -0000000000000000000000000000000000000000 f830b5f85cad3d33ba50d04c3d1454e1ae469057 S L 1433368673 +0200 commit (initial): initial commit -f830b5f85cad3d33ba50d04c3d1454e1ae469057 0e3495783c56589213ee5f2ae8900e2dc1b776c4 S L 1433368750 +0200 commit: second line -0e3495783c56589213ee5f2ae8900e2dc1b776c4 b0c6d28b3b83bf7b905321bae67d9ca4c75a203f S L 1433371818 +0200 commit: Third line diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/0e/3495783c56589213ee5f2ae8900e2dc1b776c4 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/0e/3495783c56589213ee5f2ae8900e2dc1b776c4 deleted file mode 100644 index 1e455cd..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/0e/3495783c56589213ee5f2ae8900e2dc1b776c4 +++ /dev/null @@ -1,3 +0,0 @@ -x[ -0@Q4@ -&D }HW\ ihm r]>gOr(l5S/^enPdk)$X)=Y\Dpn!׉1-$8] dq[#jDM&y |yQF \ No newline at end of file diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/1b/7216a5d803dbdbbbb3512fcdde464699f20432 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/1b/7216a5d803dbdbbbb3512fcdde464699f20432 deleted file mode 100644 index ef62801..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/1b/7216a5d803dbdbbbb3512fcdde464699f20432 and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/28/c7d26272275a346fd1907c3465938b10f616d6 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/28/c7d26272275a346fd1907c3465938b10f616d6 deleted file mode 100644 index ab03b40..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/28/c7d26272275a346fd1907c3465938b10f616d6 and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/2b/108d161001e8908f4bef5a0c93be948d191819 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/2b/108d161001e8908f4bef5a0c93be948d191819 deleted file mode 100644 index 0a62bb7..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/2b/108d161001e8908f4bef5a0c93be948d191819 and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/5a/6824a7bf2b9ca241c88f0a60ce66d204d01188 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/5a/6824a7bf2b9ca241c88f0a60ce66d204d01188 deleted file mode 100644 index 51314d1..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/5a/6824a7bf2b9ca241c88f0a60ce66d204d01188 and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/5d/51b2ce5f1f0341802d29a4e564f4a3edda0641 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/5d/51b2ce5f1f0341802d29a4e564f4a3edda0641 deleted file mode 100644 index 209c435..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/5d/51b2ce5f1f0341802d29a4e564f4a3edda0641 and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/60/da9bcd23cc307771bd51bc49dc090d48357992 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/60/da9bcd23cc307771bd51bc49dc090d48357992 deleted file mode 100644 index 7946f08..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/60/da9bcd23cc307771bd51bc49dc090d48357992 and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/81/374d00d12ebf75310d53b76dc5b18217e786f9 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/81/374d00d12ebf75310d53b76dc5b18217e786f9 deleted file mode 100644 index 8a0add5..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/81/374d00d12ebf75310d53b76dc5b18217e786f9 and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/b0/c6d28b3b83bf7b905321bae67d9ca4c75a203f b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/b0/c6d28b3b83bf7b905321bae67d9ca4c75a203f deleted file mode 100644 index 6d3580c..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/b0/c6d28b3b83bf7b905321bae67d9ca4c75a203f and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/b6/03de3b084bb57de908f9d239c7e7e95b3c61d9 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/b6/03de3b084bb57de908f9d239c7e7e95b3c61d9 deleted file mode 100644 index 9445645..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/b6/03de3b084bb57de908f9d239c7e7e95b3c61d9 and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/b9/f230ba78bed4557f91f2bd1ae47d256f8cceff b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/b9/f230ba78bed4557f91f2bd1ae47d256f8cceff deleted file mode 100644 index ea362c5..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/b9/f230ba78bed4557f91f2bd1ae47d256f8cceff +++ /dev/null @@ -1 +0,0 @@ -xKOR06cHH-IU(J-*NMKQK*,2S0 \ No newline at end of file diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/d9/d37b24af0396769e027885d296da1fb586b4d5 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/d9/d37b24af0396769e027885d296da1fb586b4d5 deleted file mode 100644 index 8440bdb..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/d9/d37b24af0396769e027885d296da1fb586b4d5 and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/db/1bf69ffd564d959327f05dacc782d7d3caa6d3 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/db/1bf69ffd564d959327f05dacc782d7d3caa6d3 deleted file mode 100644 index f686718..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/db/1bf69ffd564d959327f05dacc782d7d3caa6d3 and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/e4/248b6f8800329b7cfb606cbf8a15e448f72d3a b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/e4/248b6f8800329b7cfb606cbf8a15e448f72d3a deleted file mode 100644 index b0b0257..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/e4/248b6f8800329b7cfb606cbf8a15e448f72d3a and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/e8/94cf9906827b4042891a5787bf4cb20ea52ae6 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/e8/94cf9906827b4042891a5787bf4cb20ea52ae6 deleted file mode 100644 index 2fd0fc5..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/e8/94cf9906827b4042891a5787bf4cb20ea52ae6 and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/e8/bf262444b0ad9f9fca52fe1b8841e5c5925b0d b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/e8/bf262444b0ad9f9fca52fe1b8841e5c5925b0d deleted file mode 100644 index 4df6e28..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/e8/bf262444b0ad9f9fca52fe1b8841e5c5925b0d and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/f8/30b5f85cad3d33ba50d04c3d1454e1ae469057 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/f8/30b5f85cad3d33ba50d04c3d1454e1ae469057 deleted file mode 100644 index 72e338f..0000000 Binary files a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/objects/f8/30b5f85cad3d33ba50d04c3d1454e1ae469057 and /dev/null differ diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/refs/heads/master b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/refs/heads/master deleted file mode 100644 index 969c69c..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -b0c6d28b3b83bf7b905321bae67d9ca4c75a203f diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/refs/tags/v1.0 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/refs/tags/v1.0 deleted file mode 100644 index cddf9ba..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/refs/tags/v1.0 +++ /dev/null @@ -1 +0,0 @@ -b603de3b084bb57de908f9d239c7e7e95b3c61d9 diff --git a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/refs/tags/v2.0 b/_git_three_commits_and_two_tags_currently_on_commit_without_tag/refs/tags/v2.0 deleted file mode 100644 index 7431c7f..0000000 --- a/_git_three_commits_and_two_tags_currently_on_commit_without_tag/refs/tags/v2.0 +++ /dev/null @@ -1 +0,0 @@ -db1bf69ffd564d959327f05dacc782d7d3caa6d3 diff --git a/_git_with_commit_that_has_two_tags/COMMIT_EDITMSG b/_git_with_commit_that_has_two_tags/COMMIT_EDITMSG deleted file mode 100644 index 0d91be5..0000000 --- a/_git_with_commit_that_has_two_tags/COMMIT_EDITMSG +++ /dev/null @@ -1,9 +0,0 @@ -third addition -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# On branch master -# Changes to be committed: -# (use "git reset HEAD ..." to unstage) -# -# modified: it -# diff --git a/_git_with_commit_that_has_two_tags/HEAD b/_git_with_commit_that_has_two_tags/HEAD deleted file mode 100644 index cb089cd..0000000 --- a/_git_with_commit_that_has_two_tags/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/_git_with_commit_that_has_two_tags/config b/_git_with_commit_that_has_two_tags/config deleted file mode 100644 index af10792..0000000 --- a/_git_with_commit_that_has_two_tags/config +++ /dev/null @@ -1,6 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - ignorecase = true diff --git a/_git_with_commit_that_has_two_tags/description b/_git_with_commit_that_has_two_tags/description deleted file mode 100644 index 498b267..0000000 --- a/_git_with_commit_that_has_two_tags/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_with_commit_that_has_two_tags/hooks/applypatch-msg.sample b/_git_with_commit_that_has_two_tags/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/_git_with_commit_that_has_two_tags/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_with_commit_that_has_two_tags/hooks/commit-msg.sample b/_git_with_commit_that_has_two_tags/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/_git_with_commit_that_has_two_tags/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_with_commit_that_has_two_tags/hooks/post-update.sample b/_git_with_commit_that_has_two_tags/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/_git_with_commit_that_has_two_tags/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_with_commit_that_has_two_tags/hooks/pre-applypatch.sample b/_git_with_commit_that_has_two_tags/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/_git_with_commit_that_has_two_tags/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_with_commit_that_has_two_tags/hooks/pre-commit.sample b/_git_with_commit_that_has_two_tags/hooks/pre-commit.sample deleted file mode 100755 index 18c4829..0000000 --- a/_git_with_commit_that_has_two_tags/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_with_commit_that_has_two_tags/hooks/pre-rebase.sample b/_git_with_commit_that_has_two_tags/hooks/pre-rebase.sample deleted file mode 100755 index 16b4794..0000000 --- a/_git_with_commit_that_has_two_tags/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /opt/local/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 - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_with_commit_that_has_two_tags/hooks/prepare-commit-msg.sample b/_git_with_commit_that_has_two_tags/hooks/prepare-commit-msg.sample deleted file mode 100755 index d0a7248..0000000 --- a/_git_with_commit_that_has_two_tags/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /opt/local/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /opt/local/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_with_commit_that_has_two_tags/hooks/update.sample b/_git_with_commit_that_has_two_tags/hooks/update.sample deleted file mode 100755 index 71ab04e..0000000 --- a/_git_with_commit_that_has_two_tags/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_with_commit_that_has_two_tags/index b/_git_with_commit_that_has_two_tags/index deleted file mode 100644 index 52bd681..0000000 Binary files a/_git_with_commit_that_has_two_tags/index and /dev/null differ diff --git a/_git_with_commit_that_has_two_tags/info/exclude b/_git_with_commit_that_has_two_tags/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_with_commit_that_has_two_tags/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_with_commit_that_has_two_tags/logs/HEAD b/_git_with_commit_that_has_two_tags/logs/HEAD deleted file mode 100644 index 29a70f1..0000000 --- a/_git_with_commit_that_has_two_tags/logs/HEAD +++ /dev/null @@ -1,3 +0,0 @@ -0000000000000000000000000000000000000000 95975455ef2b1af048f2926b9ba7fb804e22171b Konrad Malawski 1345901379 +0200 commit (initial): initial commit -95975455ef2b1af048f2926b9ba7fb804e22171b d37a598a7a98531ad1375966642c6b1263129436 Konrad Malawski 1345901396 +0200 commit: second line -d37a598a7a98531ad1375966642c6b1263129436 b6a73ed747dd8dc98642d731ddbf09824efb9d48 Konrad Malawski 1345901523 +0200 commit: third addition diff --git a/_git_with_commit_that_has_two_tags/logs/refs/heads/master b/_git_with_commit_that_has_two_tags/logs/refs/heads/master deleted file mode 100644 index 29a70f1..0000000 --- a/_git_with_commit_that_has_two_tags/logs/refs/heads/master +++ /dev/null @@ -1,3 +0,0 @@ -0000000000000000000000000000000000000000 95975455ef2b1af048f2926b9ba7fb804e22171b Konrad Malawski 1345901379 +0200 commit (initial): initial commit -95975455ef2b1af048f2926b9ba7fb804e22171b d37a598a7a98531ad1375966642c6b1263129436 Konrad Malawski 1345901396 +0200 commit: second line -d37a598a7a98531ad1375966642c6b1263129436 b6a73ed747dd8dc98642d731ddbf09824efb9d48 Konrad Malawski 1345901523 +0200 commit: third addition diff --git a/_git_with_commit_that_has_two_tags/objects/61/ccc0904609773ec1342dd7640f3b7e8ddb9f2b b/_git_with_commit_that_has_two_tags/objects/61/ccc0904609773ec1342dd7640f3b7e8ddb9f2b deleted file mode 100644 index dbff3cb..0000000 Binary files a/_git_with_commit_that_has_two_tags/objects/61/ccc0904609773ec1342dd7640f3b7e8ddb9f2b and /dev/null differ diff --git a/_git_with_commit_that_has_two_tags/objects/6d/af66eea8f78d4f8ab1337f214949a4fc097869 b/_git_with_commit_that_has_two_tags/objects/6d/af66eea8f78d4f8ab1337f214949a4fc097869 deleted file mode 100644 index ab2521f..0000000 Binary files a/_git_with_commit_that_has_two_tags/objects/6d/af66eea8f78d4f8ab1337f214949a4fc097869 and /dev/null differ diff --git a/_git_with_commit_that_has_two_tags/objects/88/2476235ef06c5f2cc59325a04ba761988cde36 b/_git_with_commit_that_has_two_tags/objects/88/2476235ef06c5f2cc59325a04ba761988cde36 deleted file mode 100644 index 90f1945..0000000 Binary files a/_git_with_commit_that_has_two_tags/objects/88/2476235ef06c5f2cc59325a04ba761988cde36 and /dev/null differ diff --git a/_git_with_commit_that_has_two_tags/objects/95/975455ef2b1af048f2926b9ba7fb804e22171b b/_git_with_commit_that_has_two_tags/objects/95/975455ef2b1af048f2926b9ba7fb804e22171b deleted file mode 100644 index 0177489..0000000 Binary files a/_git_with_commit_that_has_two_tags/objects/95/975455ef2b1af048f2926b9ba7fb804e22171b and /dev/null differ diff --git a/_git_with_commit_that_has_two_tags/objects/b6/a73ed747dd8dc98642d731ddbf09824efb9d48 b/_git_with_commit_that_has_two_tags/objects/b6/a73ed747dd8dc98642d731ddbf09824efb9d48 deleted file mode 100644 index 9dbb4bc..0000000 Binary files a/_git_with_commit_that_has_two_tags/objects/b6/a73ed747dd8dc98642d731ddbf09824efb9d48 and /dev/null differ diff --git a/_git_with_commit_that_has_two_tags/objects/b9/c7d2fd2d966bc133dca9309bdf07b106e3c24b b/_git_with_commit_that_has_two_tags/objects/b9/c7d2fd2d966bc133dca9309bdf07b106e3c24b deleted file mode 100644 index b187667..0000000 Binary files a/_git_with_commit_that_has_two_tags/objects/b9/c7d2fd2d966bc133dca9309bdf07b106e3c24b and /dev/null differ diff --git a/_git_with_commit_that_has_two_tags/objects/d3/7a598a7a98531ad1375966642c6b1263129436 b/_git_with_commit_that_has_two_tags/objects/d3/7a598a7a98531ad1375966642c6b1263129436 deleted file mode 100644 index da741b6..0000000 --- a/_git_with_commit_that_has_two_tags/objects/d3/7a598a7a98531ad1375966642c6b1263129436 +++ /dev/null @@ -1,2 +0,0 @@ -xMj0 @} -[CȎDIq Cox}_$EsYR.C )(VjCQ$L*gAtUc ѿM·HyJphi)/~,_OP \ No newline at end of file diff --git a/_git_with_commit_that_has_two_tags/objects/d3/abc1fbcd51cb94417d372800f4d3011e766b5c b/_git_with_commit_that_has_two_tags/objects/d3/abc1fbcd51cb94417d372800f4d3011e766b5c deleted file mode 100644 index cfd94c1..0000000 Binary files a/_git_with_commit_that_has_two_tags/objects/d3/abc1fbcd51cb94417d372800f4d3011e766b5c and /dev/null differ diff --git a/_git_with_commit_that_has_two_tags/objects/d8/e7c365bb6cf6305194444ce4fb3f380a62930d b/_git_with_commit_that_has_two_tags/objects/d8/e7c365bb6cf6305194444ce4fb3f380a62930d deleted file mode 100644 index 0a53d19..0000000 Binary files a/_git_with_commit_that_has_two_tags/objects/d8/e7c365bb6cf6305194444ce4fb3f380a62930d and /dev/null differ diff --git a/_git_with_commit_that_has_two_tags/objects/de/a499cd5c243ab2b84f3071c4c27ea0a1a894c4 b/_git_with_commit_that_has_two_tags/objects/de/a499cd5c243ab2b84f3071c4c27ea0a1a894c4 deleted file mode 100644 index 43880ec..0000000 --- a/_git_with_commit_that_has_two_tags/objects/de/a499cd5c243ab2b84f3071c4c27ea0a1a894c4 +++ /dev/null @@ -1,2 +0,0 @@ -x-0E]+fo$11@CG 4!9s֟RuIP$g3 - P#iޘ|m\Ex wp>/D*H%kt=Z_b2 \ No newline at end of file diff --git a/_git_with_commit_that_has_two_tags/objects/e4/f1ea5178a7d2ebf53277503fa1ae2ae7ffa546 b/_git_with_commit_that_has_two_tags/objects/e4/f1ea5178a7d2ebf53277503fa1ae2ae7ffa546 deleted file mode 100644 index 80d629b..0000000 Binary files a/_git_with_commit_that_has_two_tags/objects/e4/f1ea5178a7d2ebf53277503fa1ae2ae7ffa546 and /dev/null differ diff --git a/_git_with_commit_that_has_two_tags/refs/heads/master b/_git_with_commit_that_has_two_tags/refs/heads/master deleted file mode 100644 index bad2097..0000000 --- a/_git_with_commit_that_has_two_tags/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -b6a73ed747dd8dc98642d731ddbf09824efb9d48 diff --git a/_git_with_commit_that_has_two_tags/refs/tags/annotated-tag b/_git_with_commit_that_has_two_tags/refs/tags/annotated-tag deleted file mode 100644 index ef51d68..0000000 --- a/_git_with_commit_that_has_two_tags/refs/tags/annotated-tag +++ /dev/null @@ -1 +0,0 @@ -882476235ef06c5f2cc59325a04ba761988cde36 diff --git a/_git_with_commit_that_has_two_tags/refs/tags/lightweight-tag b/_git_with_commit_that_has_two_tags/refs/tags/lightweight-tag deleted file mode 100644 index b011450..0000000 --- a/_git_with_commit_that_has_two_tags/refs/tags/lightweight-tag +++ /dev/null @@ -1 +0,0 @@ -d37a598a7a98531ad1375966642c6b1263129436 diff --git a/_git_with_commit_that_has_two_tags/refs/tags/newest-tag b/_git_with_commit_that_has_two_tags/refs/tags/newest-tag deleted file mode 100644 index 399c0a8..0000000 --- a/_git_with_commit_that_has_two_tags/refs/tags/newest-tag +++ /dev/null @@ -1 +0,0 @@ -dea499cd5c243ab2b84f3071c4c27ea0a1a894c4 diff --git a/_git_with_no_changes/COMMIT_EDITMSG b/_git_with_no_changes/COMMIT_EDITMSG deleted file mode 100644 index 31abe30..0000000 --- a/_git_with_no_changes/COMMIT_EDITMSG +++ /dev/null @@ -1 +0,0 @@ -delete file diff --git a/_git_with_no_changes/HEAD b/_git_with_no_changes/HEAD deleted file mode 100644 index cb089cd..0000000 --- a/_git_with_no_changes/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/_git_with_no_changes/config b/_git_with_no_changes/config deleted file mode 100644 index 515f483..0000000 --- a/_git_with_no_changes/config +++ /dev/null @@ -1,5 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true diff --git a/_git_with_no_changes/description b/_git_with_no_changes/description deleted file mode 100644 index 498b267..0000000 --- a/_git_with_no_changes/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_with_no_changes/index b/_git_with_no_changes/index deleted file mode 100644 index 3330d71..0000000 Binary files a/_git_with_no_changes/index and /dev/null differ diff --git a/_git_with_no_changes/info/exclude b/_git_with_no_changes/info/exclude deleted file mode 100644 index 84c07bc..0000000 --- a/_git_with_no_changes/info/exclude +++ /dev/null @@ -1,7 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ -/_git_dir/ diff --git a/_git_with_no_changes/info/refs b/_git_with_no_changes/info/refs deleted file mode 100644 index 56a9313..0000000 --- a/_git_with_no_changes/info/refs +++ /dev/null @@ -1 +0,0 @@ -e65f5b15be7a302936db2cf50430eae7ef4ecc6f refs/heads/master diff --git a/_git_with_no_changes/logs/HEAD b/_git_with_no_changes/logs/HEAD deleted file mode 100644 index 391e010..0000000 --- a/_git_with_no_changes/logs/HEAD +++ /dev/null @@ -1,4 +0,0 @@ -0000000000000000000000000000000000000000 ff21f63ce400e3ff07b0b318dd4c61a0fb368bd2 Adam Batkin 1417584929 -0500 commit (initial): add file.txt -ff21f63ce400e3ff07b0b318dd4c61a0fb368bd2 95412a0871d9c4e1421d71d4fc513556e8d6f985 Adam Batkin 1417588894 -0500 commit (amend): add file.txt -95412a0871d9c4e1421d71d4fc513556e8d6f985 e65f5b15be7a302936db2cf50430eae7ef4ecc6f Adam Batkin 1417588980 -0500 commit (amend): add file.txt -e65f5b15be7a302936db2cf50430eae7ef4ecc6f 85c28883281d04688ff8caecb597172cc3c0f982 TheSnoozer 1465332353 +0200 commit: delete file diff --git a/_git_with_no_changes/logs/refs/heads/master b/_git_with_no_changes/logs/refs/heads/master deleted file mode 100644 index 391e010..0000000 --- a/_git_with_no_changes/logs/refs/heads/master +++ /dev/null @@ -1,4 +0,0 @@ -0000000000000000000000000000000000000000 ff21f63ce400e3ff07b0b318dd4c61a0fb368bd2 Adam Batkin 1417584929 -0500 commit (initial): add file.txt -ff21f63ce400e3ff07b0b318dd4c61a0fb368bd2 95412a0871d9c4e1421d71d4fc513556e8d6f985 Adam Batkin 1417588894 -0500 commit (amend): add file.txt -95412a0871d9c4e1421d71d4fc513556e8d6f985 e65f5b15be7a302936db2cf50430eae7ef4ecc6f Adam Batkin 1417588980 -0500 commit (amend): add file.txt -e65f5b15be7a302936db2cf50430eae7ef4ecc6f 85c28883281d04688ff8caecb597172cc3c0f982 TheSnoozer 1465332353 +0200 commit: delete file diff --git a/_git_with_no_changes/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904 b/_git_with_no_changes/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904 deleted file mode 100644 index adf6411..0000000 Binary files a/_git_with_no_changes/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904 and /dev/null differ diff --git a/_git_with_no_changes/objects/85/c28883281d04688ff8caecb597172cc3c0f982 b/_git_with_no_changes/objects/85/c28883281d04688ff8caecb597172cc3c0f982 deleted file mode 100644 index e13f765..0000000 Binary files a/_git_with_no_changes/objects/85/c28883281d04688ff8caecb597172cc3c0f982 and /dev/null differ diff --git a/_git_with_no_changes/objects/info/packs b/_git_with_no_changes/objects/info/packs deleted file mode 100644 index b2239d5..0000000 --- a/_git_with_no_changes/objects/info/packs +++ /dev/null @@ -1,2 +0,0 @@ -P pack-789f4a0163258377aa2befda15661493c77f3ee1.pack - diff --git a/_git_with_no_changes/objects/pack/pack-789f4a0163258377aa2befda15661493c77f3ee1.idx b/_git_with_no_changes/objects/pack/pack-789f4a0163258377aa2befda15661493c77f3ee1.idx deleted file mode 100644 index e2a7d42..0000000 Binary files a/_git_with_no_changes/objects/pack/pack-789f4a0163258377aa2befda15661493c77f3ee1.idx and /dev/null differ diff --git a/_git_with_no_changes/objects/pack/pack-789f4a0163258377aa2befda15661493c77f3ee1.pack b/_git_with_no_changes/objects/pack/pack-789f4a0163258377aa2befda15661493c77f3ee1.pack deleted file mode 100644 index ace0aee..0000000 Binary files a/_git_with_no_changes/objects/pack/pack-789f4a0163258377aa2befda15661493c77f3ee1.pack and /dev/null differ diff --git a/_git_with_no_changes/packed-refs b/_git_with_no_changes/packed-refs deleted file mode 100644 index a9e9282..0000000 --- a/_git_with_no_changes/packed-refs +++ /dev/null @@ -1,2 +0,0 @@ -# pack-refs with: peeled fully-peeled -e65f5b15be7a302936db2cf50430eae7ef4ecc6f refs/heads/master diff --git a/_git_with_no_changes/refs/heads/master b/_git_with_no_changes/refs/heads/master deleted file mode 100644 index bf4d13c..0000000 --- a/_git_with_no_changes/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -85c28883281d04688ff8caecb597172cc3c0f982 diff --git a/_git_with_submodules/COMMIT_EDITMSG b/_git_with_submodules/COMMIT_EDITMSG deleted file mode 100644 index a193b84..0000000 --- a/_git_with_submodules/COMMIT_EDITMSG +++ /dev/null @@ -1,9 +0,0 @@ -any commit, just a readme -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# On branch master -# Changes to be committed: -# (use "git reset HEAD ..." to unstage) -# -# new file: README.md -# diff --git a/_git_with_submodules/HEAD b/_git_with_submodules/HEAD deleted file mode 100644 index cb089cd..0000000 --- a/_git_with_submodules/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/_git_with_submodules/config b/_git_with_submodules/config deleted file mode 100644 index 903c443..0000000 --- a/_git_with_submodules/config +++ /dev/null @@ -1,15 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - ignorecase = true - precomposeunicode = false -[submodule "module1"] - url = /tmp/module1 -[submodule "module2"] - url = /tmp/module1 -[submodule "module3"] - url = /tmp/module1 -[submodule "module4"] - url = /tmp/module1 diff --git a/_git_with_submodules/description b/_git_with_submodules/description deleted file mode 100644 index 498b267..0000000 --- a/_git_with_submodules/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_with_submodules/hooks/applypatch-msg.sample b/_git_with_submodules/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/_git_with_submodules/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_with_submodules/hooks/commit-msg.sample b/_git_with_submodules/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/_git_with_submodules/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_with_submodules/hooks/post-update.sample b/_git_with_submodules/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/_git_with_submodules/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_with_submodules/hooks/pre-applypatch.sample b/_git_with_submodules/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/_git_with_submodules/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_with_submodules/hooks/pre-commit.sample b/_git_with_submodules/hooks/pre-commit.sample deleted file mode 100755 index 18c4829..0000000 --- a/_git_with_submodules/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_with_submodules/hooks/pre-rebase.sample b/_git_with_submodules/hooks/pre-rebase.sample deleted file mode 100755 index 9773ed4..0000000 --- a/_git_with_submodules/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_with_submodules/hooks/prepare-commit-msg.sample b/_git_with_submodules/hooks/prepare-commit-msg.sample deleted file mode 100755 index f093a02..0000000 --- a/_git_with_submodules/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_with_submodules/hooks/update.sample b/_git_with_submodules/hooks/update.sample deleted file mode 100755 index 71ab04e..0000000 --- a/_git_with_submodules/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_with_submodules/index b/_git_with_submodules/index deleted file mode 100644 index 8d06af0..0000000 Binary files a/_git_with_submodules/index and /dev/null differ diff --git a/_git_with_submodules/info/exclude b/_git_with_submodules/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_with_submodules/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_with_submodules/logs/HEAD b/_git_with_submodules/logs/HEAD deleted file mode 100644 index 8d2c37a..0000000 --- a/_git_with_submodules/logs/HEAD +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 4ce26eb46f9122b2e4ff1ea297d2d63ef50b5b42 Konrad Malawski 1361720424 +0100 commit (initial): my submodules, yay -4ce26eb46f9122b2e4ff1ea297d2d63ef50b5b42 01ed93c69b076b1cfb1fcf75d72ca5c680931e47 Konrad Malawski 1361720439 +0100 commit: any commit, just a readme diff --git a/_git_with_submodules/logs/refs/heads/master b/_git_with_submodules/logs/refs/heads/master deleted file mode 100644 index 8d2c37a..0000000 --- a/_git_with_submodules/logs/refs/heads/master +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 4ce26eb46f9122b2e4ff1ea297d2d63ef50b5b42 Konrad Malawski 1361720424 +0100 commit (initial): my submodules, yay -4ce26eb46f9122b2e4ff1ea297d2d63ef50b5b42 01ed93c69b076b1cfb1fcf75d72ca5c680931e47 Konrad Malawski 1361720439 +0100 commit: any commit, just a readme diff --git a/_git_with_submodules/modules/module1/HEAD b/_git_with_submodules/modules/module1/HEAD deleted file mode 100644 index d1128d1..0000000 --- a/_git_with_submodules/modules/module1/HEAD +++ /dev/null @@ -1 +0,0 @@ -9fd4b69a5ca09b60884d4f8f49ce16ea071077be diff --git a/_git_with_submodules/modules/module1/config b/_git_with_submodules/modules/module1/config deleted file mode 100644 index 97b9ef8..0000000 --- a/_git_with_submodules/modules/module1/config +++ /dev/null @@ -1,14 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - worktree = ../../../module1 - ignorecase = true - precomposeunicode = false -[remote "origin"] - url = /tmp/module1 - fetch = +refs/heads/*:refs/remotes/origin/* -[branch "master"] - remote = origin - merge = refs/heads/master diff --git a/_git_with_submodules/modules/module1/description b/_git_with_submodules/modules/module1/description deleted file mode 100644 index 498b267..0000000 --- a/_git_with_submodules/modules/module1/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_with_submodules/modules/module1/hooks/applypatch-msg.sample b/_git_with_submodules/modules/module1/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/_git_with_submodules/modules/module1/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_with_submodules/modules/module1/hooks/commit-msg.sample b/_git_with_submodules/modules/module1/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/_git_with_submodules/modules/module1/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_with_submodules/modules/module1/hooks/post-update.sample b/_git_with_submodules/modules/module1/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/_git_with_submodules/modules/module1/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_with_submodules/modules/module1/hooks/pre-applypatch.sample b/_git_with_submodules/modules/module1/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/_git_with_submodules/modules/module1/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_with_submodules/modules/module1/hooks/pre-commit.sample b/_git_with_submodules/modules/module1/hooks/pre-commit.sample deleted file mode 100755 index 18c4829..0000000 --- a/_git_with_submodules/modules/module1/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_with_submodules/modules/module1/hooks/pre-rebase.sample b/_git_with_submodules/modules/module1/hooks/pre-rebase.sample deleted file mode 100755 index 9773ed4..0000000 --- a/_git_with_submodules/modules/module1/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_with_submodules/modules/module1/hooks/prepare-commit-msg.sample b/_git_with_submodules/modules/module1/hooks/prepare-commit-msg.sample deleted file mode 100755 index f093a02..0000000 --- a/_git_with_submodules/modules/module1/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_with_submodules/modules/module1/hooks/update.sample b/_git_with_submodules/modules/module1/hooks/update.sample deleted file mode 100755 index 71ab04e..0000000 --- a/_git_with_submodules/modules/module1/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_with_submodules/modules/module1/index b/_git_with_submodules/modules/module1/index deleted file mode 100644 index c12d7f2..0000000 Binary files a/_git_with_submodules/modules/module1/index and /dev/null differ diff --git a/_git_with_submodules/modules/module1/info/exclude b/_git_with_submodules/modules/module1/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_with_submodules/modules/module1/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_with_submodules/modules/module1/logs/HEAD b/_git_with_submodules/modules/module1/logs/HEAD deleted file mode 100644 index 2793712..0000000 --- a/_git_with_submodules/modules/module1/logs/HEAD +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720371 +0100 clone: from /tmp/module1 -9fd4b69a5ca09b60884d4f8f49ce16ea071077be 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720409 +0100 checkout: moving from master to 9fd4b69a5ca09b60884d4f8f49ce16ea071077be diff --git a/_git_with_submodules/modules/module1/logs/refs/heads/master b/_git_with_submodules/modules/module1/logs/refs/heads/master deleted file mode 100644 index 4b3b262..0000000 --- a/_git_with_submodules/modules/module1/logs/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720371 +0100 clone: from /tmp/module1 diff --git a/_git_with_submodules/modules/module1/logs/refs/remotes/origin/HEAD b/_git_with_submodules/modules/module1/logs/refs/remotes/origin/HEAD deleted file mode 100644 index 4b3b262..0000000 --- a/_git_with_submodules/modules/module1/logs/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720371 +0100 clone: from /tmp/module1 diff --git a/_git_with_submodules/modules/module1/objects/03/367482265f77f74c54505159bb020ec53aae6b b/_git_with_submodules/modules/module1/objects/03/367482265f77f74c54505159bb020ec53aae6b deleted file mode 100644 index 7346f4b..0000000 Binary files a/_git_with_submodules/modules/module1/objects/03/367482265f77f74c54505159bb020ec53aae6b and /dev/null differ diff --git a/_git_with_submodules/modules/module1/objects/9f/d4b69a5ca09b60884d4f8f49ce16ea071077be b/_git_with_submodules/modules/module1/objects/9f/d4b69a5ca09b60884d4f8f49ce16ea071077be deleted file mode 100644 index 97c9f62..0000000 Binary files a/_git_with_submodules/modules/module1/objects/9f/d4b69a5ca09b60884d4f8f49ce16ea071077be and /dev/null differ diff --git a/_git_with_submodules/modules/module1/objects/a9/36c1d33d249f10b93d102bc1d28e3267a029b4 b/_git_with_submodules/modules/module1/objects/a9/36c1d33d249f10b93d102bc1d28e3267a029b4 deleted file mode 100644 index 2f4d57f..0000000 Binary files a/_git_with_submodules/modules/module1/objects/a9/36c1d33d249f10b93d102bc1d28e3267a029b4 and /dev/null differ diff --git a/_git_with_submodules/modules/module1/packed-refs b/_git_with_submodules/modules/module1/packed-refs deleted file mode 100644 index 47e3ef9..0000000 --- a/_git_with_submodules/modules/module1/packed-refs +++ /dev/null @@ -1,2 +0,0 @@ -# pack-refs with: peeled -9fd4b69a5ca09b60884d4f8f49ce16ea071077be refs/remotes/origin/master diff --git a/_git_with_submodules/modules/module1/refs/heads/master b/_git_with_submodules/modules/module1/refs/heads/master deleted file mode 100644 index d1128d1..0000000 --- a/_git_with_submodules/modules/module1/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -9fd4b69a5ca09b60884d4f8f49ce16ea071077be diff --git a/_git_with_submodules/modules/module1/refs/remotes/origin/HEAD b/_git_with_submodules/modules/module1/refs/remotes/origin/HEAD deleted file mode 100644 index 6efe28f..0000000 --- a/_git_with_submodules/modules/module1/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/remotes/origin/master diff --git a/_git_with_submodules/modules/module2/HEAD b/_git_with_submodules/modules/module2/HEAD deleted file mode 100644 index d1128d1..0000000 --- a/_git_with_submodules/modules/module2/HEAD +++ /dev/null @@ -1 +0,0 @@ -9fd4b69a5ca09b60884d4f8f49ce16ea071077be diff --git a/_git_with_submodules/modules/module2/config b/_git_with_submodules/modules/module2/config deleted file mode 100644 index 377bdd2..0000000 --- a/_git_with_submodules/modules/module2/config +++ /dev/null @@ -1,14 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - worktree = ../../../module2 - ignorecase = true - precomposeunicode = false -[remote "origin"] - url = /tmp/module1 - fetch = +refs/heads/*:refs/remotes/origin/* -[branch "master"] - remote = origin - merge = refs/heads/master diff --git a/_git_with_submodules/modules/module2/description b/_git_with_submodules/modules/module2/description deleted file mode 100644 index 498b267..0000000 --- a/_git_with_submodules/modules/module2/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_with_submodules/modules/module2/hooks/applypatch-msg.sample b/_git_with_submodules/modules/module2/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/_git_with_submodules/modules/module2/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_with_submodules/modules/module2/hooks/commit-msg.sample b/_git_with_submodules/modules/module2/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/_git_with_submodules/modules/module2/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_with_submodules/modules/module2/hooks/post-update.sample b/_git_with_submodules/modules/module2/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/_git_with_submodules/modules/module2/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_with_submodules/modules/module2/hooks/pre-applypatch.sample b/_git_with_submodules/modules/module2/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/_git_with_submodules/modules/module2/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_with_submodules/modules/module2/hooks/pre-commit.sample b/_git_with_submodules/modules/module2/hooks/pre-commit.sample deleted file mode 100755 index 18c4829..0000000 --- a/_git_with_submodules/modules/module2/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_with_submodules/modules/module2/hooks/pre-rebase.sample b/_git_with_submodules/modules/module2/hooks/pre-rebase.sample deleted file mode 100755 index 9773ed4..0000000 --- a/_git_with_submodules/modules/module2/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_with_submodules/modules/module2/hooks/prepare-commit-msg.sample b/_git_with_submodules/modules/module2/hooks/prepare-commit-msg.sample deleted file mode 100755 index f093a02..0000000 --- a/_git_with_submodules/modules/module2/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_with_submodules/modules/module2/hooks/update.sample b/_git_with_submodules/modules/module2/hooks/update.sample deleted file mode 100755 index 71ab04e..0000000 --- a/_git_with_submodules/modules/module2/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_with_submodules/modules/module2/index b/_git_with_submodules/modules/module2/index deleted file mode 100644 index 147e6dc..0000000 Binary files a/_git_with_submodules/modules/module2/index and /dev/null differ diff --git a/_git_with_submodules/modules/module2/info/exclude b/_git_with_submodules/modules/module2/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_with_submodules/modules/module2/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_with_submodules/modules/module2/logs/HEAD b/_git_with_submodules/modules/module2/logs/HEAD deleted file mode 100644 index e2917d3..0000000 --- a/_git_with_submodules/modules/module2/logs/HEAD +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720373 +0100 clone: from /tmp/module1 -9fd4b69a5ca09b60884d4f8f49ce16ea071077be 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720410 +0100 checkout: moving from master to 9fd4b69a5ca09b60884d4f8f49ce16ea071077be diff --git a/_git_with_submodules/modules/module2/logs/refs/heads/master b/_git_with_submodules/modules/module2/logs/refs/heads/master deleted file mode 100644 index 7cb0d0d..0000000 --- a/_git_with_submodules/modules/module2/logs/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720373 +0100 clone: from /tmp/module1 diff --git a/_git_with_submodules/modules/module2/logs/refs/remotes/origin/HEAD b/_git_with_submodules/modules/module2/logs/refs/remotes/origin/HEAD deleted file mode 100644 index 7cb0d0d..0000000 --- a/_git_with_submodules/modules/module2/logs/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720373 +0100 clone: from /tmp/module1 diff --git a/_git_with_submodules/modules/module2/objects/03/367482265f77f74c54505159bb020ec53aae6b b/_git_with_submodules/modules/module2/objects/03/367482265f77f74c54505159bb020ec53aae6b deleted file mode 100644 index 7346f4b..0000000 Binary files a/_git_with_submodules/modules/module2/objects/03/367482265f77f74c54505159bb020ec53aae6b and /dev/null differ diff --git a/_git_with_submodules/modules/module2/objects/9f/d4b69a5ca09b60884d4f8f49ce16ea071077be b/_git_with_submodules/modules/module2/objects/9f/d4b69a5ca09b60884d4f8f49ce16ea071077be deleted file mode 100644 index 97c9f62..0000000 Binary files a/_git_with_submodules/modules/module2/objects/9f/d4b69a5ca09b60884d4f8f49ce16ea071077be and /dev/null differ diff --git a/_git_with_submodules/modules/module2/objects/a9/36c1d33d249f10b93d102bc1d28e3267a029b4 b/_git_with_submodules/modules/module2/objects/a9/36c1d33d249f10b93d102bc1d28e3267a029b4 deleted file mode 100644 index 2f4d57f..0000000 Binary files a/_git_with_submodules/modules/module2/objects/a9/36c1d33d249f10b93d102bc1d28e3267a029b4 and /dev/null differ diff --git a/_git_with_submodules/modules/module2/packed-refs b/_git_with_submodules/modules/module2/packed-refs deleted file mode 100644 index 47e3ef9..0000000 --- a/_git_with_submodules/modules/module2/packed-refs +++ /dev/null @@ -1,2 +0,0 @@ -# pack-refs with: peeled -9fd4b69a5ca09b60884d4f8f49ce16ea071077be refs/remotes/origin/master diff --git a/_git_with_submodules/modules/module2/refs/heads/master b/_git_with_submodules/modules/module2/refs/heads/master deleted file mode 100644 index d1128d1..0000000 --- a/_git_with_submodules/modules/module2/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -9fd4b69a5ca09b60884d4f8f49ce16ea071077be diff --git a/_git_with_submodules/modules/module2/refs/remotes/origin/HEAD b/_git_with_submodules/modules/module2/refs/remotes/origin/HEAD deleted file mode 100644 index 6efe28f..0000000 --- a/_git_with_submodules/modules/module2/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/remotes/origin/master diff --git a/_git_with_submodules/modules/module3/HEAD b/_git_with_submodules/modules/module3/HEAD deleted file mode 100644 index d1128d1..0000000 --- a/_git_with_submodules/modules/module3/HEAD +++ /dev/null @@ -1 +0,0 @@ -9fd4b69a5ca09b60884d4f8f49ce16ea071077be diff --git a/_git_with_submodules/modules/module3/config b/_git_with_submodules/modules/module3/config deleted file mode 100644 index 061cce8..0000000 --- a/_git_with_submodules/modules/module3/config +++ /dev/null @@ -1,14 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - worktree = ../../../module3 - ignorecase = true - precomposeunicode = false -[remote "origin"] - url = /tmp/module1 - fetch = +refs/heads/*:refs/remotes/origin/* -[branch "master"] - remote = origin - merge = refs/heads/master diff --git a/_git_with_submodules/modules/module3/description b/_git_with_submodules/modules/module3/description deleted file mode 100644 index 498b267..0000000 --- a/_git_with_submodules/modules/module3/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_with_submodules/modules/module3/hooks/applypatch-msg.sample b/_git_with_submodules/modules/module3/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/_git_with_submodules/modules/module3/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_with_submodules/modules/module3/hooks/commit-msg.sample b/_git_with_submodules/modules/module3/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/_git_with_submodules/modules/module3/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_with_submodules/modules/module3/hooks/post-update.sample b/_git_with_submodules/modules/module3/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/_git_with_submodules/modules/module3/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_with_submodules/modules/module3/hooks/pre-applypatch.sample b/_git_with_submodules/modules/module3/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/_git_with_submodules/modules/module3/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_with_submodules/modules/module3/hooks/pre-commit.sample b/_git_with_submodules/modules/module3/hooks/pre-commit.sample deleted file mode 100755 index 18c4829..0000000 --- a/_git_with_submodules/modules/module3/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_with_submodules/modules/module3/hooks/pre-rebase.sample b/_git_with_submodules/modules/module3/hooks/pre-rebase.sample deleted file mode 100755 index 9773ed4..0000000 --- a/_git_with_submodules/modules/module3/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_with_submodules/modules/module3/hooks/prepare-commit-msg.sample b/_git_with_submodules/modules/module3/hooks/prepare-commit-msg.sample deleted file mode 100755 index f093a02..0000000 --- a/_git_with_submodules/modules/module3/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_with_submodules/modules/module3/hooks/update.sample b/_git_with_submodules/modules/module3/hooks/update.sample deleted file mode 100755 index 71ab04e..0000000 --- a/_git_with_submodules/modules/module3/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_with_submodules/modules/module3/index b/_git_with_submodules/modules/module3/index deleted file mode 100644 index 72d8f5c..0000000 Binary files a/_git_with_submodules/modules/module3/index and /dev/null differ diff --git a/_git_with_submodules/modules/module3/info/exclude b/_git_with_submodules/modules/module3/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_with_submodules/modules/module3/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_with_submodules/modules/module3/logs/HEAD b/_git_with_submodules/modules/module3/logs/HEAD deleted file mode 100644 index 938bc9d..0000000 --- a/_git_with_submodules/modules/module3/logs/HEAD +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720374 +0100 clone: from /tmp/module1 -9fd4b69a5ca09b60884d4f8f49ce16ea071077be 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720410 +0100 checkout: moving from master to 9fd4b69a5ca09b60884d4f8f49ce16ea071077be diff --git a/_git_with_submodules/modules/module3/logs/refs/heads/master b/_git_with_submodules/modules/module3/logs/refs/heads/master deleted file mode 100644 index ebe8579..0000000 --- a/_git_with_submodules/modules/module3/logs/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720374 +0100 clone: from /tmp/module1 diff --git a/_git_with_submodules/modules/module3/logs/refs/remotes/origin/HEAD b/_git_with_submodules/modules/module3/logs/refs/remotes/origin/HEAD deleted file mode 100644 index ebe8579..0000000 --- a/_git_with_submodules/modules/module3/logs/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720374 +0100 clone: from /tmp/module1 diff --git a/_git_with_submodules/modules/module3/objects/03/367482265f77f74c54505159bb020ec53aae6b b/_git_with_submodules/modules/module3/objects/03/367482265f77f74c54505159bb020ec53aae6b deleted file mode 100644 index 7346f4b..0000000 Binary files a/_git_with_submodules/modules/module3/objects/03/367482265f77f74c54505159bb020ec53aae6b and /dev/null differ diff --git a/_git_with_submodules/modules/module3/objects/9f/d4b69a5ca09b60884d4f8f49ce16ea071077be b/_git_with_submodules/modules/module3/objects/9f/d4b69a5ca09b60884d4f8f49ce16ea071077be deleted file mode 100644 index 97c9f62..0000000 Binary files a/_git_with_submodules/modules/module3/objects/9f/d4b69a5ca09b60884d4f8f49ce16ea071077be and /dev/null differ diff --git a/_git_with_submodules/modules/module3/objects/a9/36c1d33d249f10b93d102bc1d28e3267a029b4 b/_git_with_submodules/modules/module3/objects/a9/36c1d33d249f10b93d102bc1d28e3267a029b4 deleted file mode 100644 index 2f4d57f..0000000 Binary files a/_git_with_submodules/modules/module3/objects/a9/36c1d33d249f10b93d102bc1d28e3267a029b4 and /dev/null differ diff --git a/_git_with_submodules/modules/module3/packed-refs b/_git_with_submodules/modules/module3/packed-refs deleted file mode 100644 index 47e3ef9..0000000 --- a/_git_with_submodules/modules/module3/packed-refs +++ /dev/null @@ -1,2 +0,0 @@ -# pack-refs with: peeled -9fd4b69a5ca09b60884d4f8f49ce16ea071077be refs/remotes/origin/master diff --git a/_git_with_submodules/modules/module3/refs/heads/master b/_git_with_submodules/modules/module3/refs/heads/master deleted file mode 100644 index d1128d1..0000000 --- a/_git_with_submodules/modules/module3/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -9fd4b69a5ca09b60884d4f8f49ce16ea071077be diff --git a/_git_with_submodules/modules/module3/refs/remotes/origin/HEAD b/_git_with_submodules/modules/module3/refs/remotes/origin/HEAD deleted file mode 100644 index 6efe28f..0000000 --- a/_git_with_submodules/modules/module3/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/remotes/origin/master diff --git a/_git_with_submodules/modules/module4/HEAD b/_git_with_submodules/modules/module4/HEAD deleted file mode 100644 index d1128d1..0000000 --- a/_git_with_submodules/modules/module4/HEAD +++ /dev/null @@ -1 +0,0 @@ -9fd4b69a5ca09b60884d4f8f49ce16ea071077be diff --git a/_git_with_submodules/modules/module4/config b/_git_with_submodules/modules/module4/config deleted file mode 100644 index 612a9cb..0000000 --- a/_git_with_submodules/modules/module4/config +++ /dev/null @@ -1,14 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - worktree = ../../../module4 - ignorecase = true - precomposeunicode = false -[remote "origin"] - url = /tmp/module1 - fetch = +refs/heads/*:refs/remotes/origin/* -[branch "master"] - remote = origin - merge = refs/heads/master diff --git a/_git_with_submodules/modules/module4/description b/_git_with_submodules/modules/module4/description deleted file mode 100644 index 498b267..0000000 --- a/_git_with_submodules/modules/module4/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_with_submodules/modules/module4/hooks/applypatch-msg.sample b/_git_with_submodules/modules/module4/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/_git_with_submodules/modules/module4/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_with_submodules/modules/module4/hooks/commit-msg.sample b/_git_with_submodules/modules/module4/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/_git_with_submodules/modules/module4/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_with_submodules/modules/module4/hooks/post-update.sample b/_git_with_submodules/modules/module4/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/_git_with_submodules/modules/module4/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_with_submodules/modules/module4/hooks/pre-applypatch.sample b/_git_with_submodules/modules/module4/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/_git_with_submodules/modules/module4/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_with_submodules/modules/module4/hooks/pre-commit.sample b/_git_with_submodules/modules/module4/hooks/pre-commit.sample deleted file mode 100755 index 18c4829..0000000 --- a/_git_with_submodules/modules/module4/hooks/pre-commit.sample +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ascii filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ascii filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - echo "Error: Attempt to add a non-ascii file name." - echo - echo "This can cause problems if you want to work" - echo "with people on other platforms." - echo - echo "To be portable it is advisable to rename the file ..." - echo - echo "If you know what you are doing you can disable this" - echo "check using:" - echo - echo " git config hooks.allownonascii true" - echo - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_with_submodules/modules/module4/hooks/pre-rebase.sample b/_git_with_submodules/modules/module4/hooks/pre-rebase.sample deleted file mode 100755 index 9773ed4..0000000 --- a/_git_with_submodules/modules/module4/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_with_submodules/modules/module4/hooks/prepare-commit-msg.sample b/_git_with_submodules/modules/module4/hooks/prepare-commit-msg.sample deleted file mode 100755 index f093a02..0000000 --- a/_git_with_submodules/modules/module4/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_with_submodules/modules/module4/hooks/update.sample b/_git_with_submodules/modules/module4/hooks/update.sample deleted file mode 100755 index 71ab04e..0000000 --- a/_git_with_submodules/modules/module4/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_with_submodules/modules/module4/index b/_git_with_submodules/modules/module4/index deleted file mode 100644 index 1e4496a..0000000 Binary files a/_git_with_submodules/modules/module4/index and /dev/null differ diff --git a/_git_with_submodules/modules/module4/info/exclude b/_git_with_submodules/modules/module4/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_with_submodules/modules/module4/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_with_submodules/modules/module4/logs/HEAD b/_git_with_submodules/modules/module4/logs/HEAD deleted file mode 100644 index c659631..0000000 --- a/_git_with_submodules/modules/module4/logs/HEAD +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720376 +0100 clone: from /tmp/module1 -9fd4b69a5ca09b60884d4f8f49ce16ea071077be 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720410 +0100 checkout: moving from master to 9fd4b69a5ca09b60884d4f8f49ce16ea071077be diff --git a/_git_with_submodules/modules/module4/logs/refs/heads/master b/_git_with_submodules/modules/module4/logs/refs/heads/master deleted file mode 100644 index e2c109b..0000000 --- a/_git_with_submodules/modules/module4/logs/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720376 +0100 clone: from /tmp/module1 diff --git a/_git_with_submodules/modules/module4/logs/refs/remotes/origin/HEAD b/_git_with_submodules/modules/module4/logs/refs/remotes/origin/HEAD deleted file mode 100644 index e2c109b..0000000 --- a/_git_with_submodules/modules/module4/logs/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 9fd4b69a5ca09b60884d4f8f49ce16ea071077be Konrad Malawski 1361720376 +0100 clone: from /tmp/module1 diff --git a/_git_with_submodules/modules/module4/objects/03/367482265f77f74c54505159bb020ec53aae6b b/_git_with_submodules/modules/module4/objects/03/367482265f77f74c54505159bb020ec53aae6b deleted file mode 100644 index 7346f4b..0000000 Binary files a/_git_with_submodules/modules/module4/objects/03/367482265f77f74c54505159bb020ec53aae6b and /dev/null differ diff --git a/_git_with_submodules/modules/module4/objects/9f/d4b69a5ca09b60884d4f8f49ce16ea071077be b/_git_with_submodules/modules/module4/objects/9f/d4b69a5ca09b60884d4f8f49ce16ea071077be deleted file mode 100644 index 97c9f62..0000000 Binary files a/_git_with_submodules/modules/module4/objects/9f/d4b69a5ca09b60884d4f8f49ce16ea071077be and /dev/null differ diff --git a/_git_with_submodules/modules/module4/objects/a9/36c1d33d249f10b93d102bc1d28e3267a029b4 b/_git_with_submodules/modules/module4/objects/a9/36c1d33d249f10b93d102bc1d28e3267a029b4 deleted file mode 100644 index 2f4d57f..0000000 Binary files a/_git_with_submodules/modules/module4/objects/a9/36c1d33d249f10b93d102bc1d28e3267a029b4 and /dev/null differ diff --git a/_git_with_submodules/modules/module4/packed-refs b/_git_with_submodules/modules/module4/packed-refs deleted file mode 100644 index 47e3ef9..0000000 --- a/_git_with_submodules/modules/module4/packed-refs +++ /dev/null @@ -1,2 +0,0 @@ -# pack-refs with: peeled -9fd4b69a5ca09b60884d4f8f49ce16ea071077be refs/remotes/origin/master diff --git a/_git_with_submodules/modules/module4/refs/heads/master b/_git_with_submodules/modules/module4/refs/heads/master deleted file mode 100644 index d1128d1..0000000 --- a/_git_with_submodules/modules/module4/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -9fd4b69a5ca09b60884d4f8f49ce16ea071077be diff --git a/_git_with_submodules/modules/module4/refs/remotes/origin/HEAD b/_git_with_submodules/modules/module4/refs/remotes/origin/HEAD deleted file mode 100644 index 6efe28f..0000000 --- a/_git_with_submodules/modules/module4/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/remotes/origin/master diff --git a/_git_with_submodules/objects/01/ed93c69b076b1cfb1fcf75d72ca5c680931e47 b/_git_with_submodules/objects/01/ed93c69b076b1cfb1fcf75d72ca5c680931e47 deleted file mode 100644 index b87ebdc..0000000 --- a/_git_with_submodules/objects/01/ed93c69b076b1cfb1fcf75d72ca5c680931e47 +++ /dev/null @@ -1,4 +0,0 @@ -xK -B1 @Q]E护G "E} ~ޏZw/;pz[a4R@N(TPZ)d!'B`f26E(JQ%$^ -StE'0𣝧 -i{~o>a=aUJn={. w hM6_2<˭7` cVt \ No newline at end of file diff --git a/_git_with_submodules/objects/07/45ee2221dabd15743fd1fdc74343e7b625f31a b/_git_with_submodules/objects/07/45ee2221dabd15743fd1fdc74343e7b625f31a deleted file mode 100644 index b864e68..0000000 Binary files a/_git_with_submodules/objects/07/45ee2221dabd15743fd1fdc74343e7b625f31a and /dev/null differ diff --git a/_git_with_submodules/objects/09/e6abb3468f1206449501732c73de45ef217c60 b/_git_with_submodules/objects/09/e6abb3468f1206449501732c73de45ef217c60 deleted file mode 100644 index 963e17a..0000000 Binary files a/_git_with_submodules/objects/09/e6abb3468f1206449501732c73de45ef217c60 and /dev/null differ diff --git a/_git_with_submodules/objects/11/f6ec80c3b18953633d8458a07d5c73f87a31f9 b/_git_with_submodules/objects/11/f6ec80c3b18953633d8458a07d5c73f87a31f9 deleted file mode 100644 index 61b9e08..0000000 Binary files a/_git_with_submodules/objects/11/f6ec80c3b18953633d8458a07d5c73f87a31f9 and /dev/null differ diff --git a/_git_with_submodules/objects/4c/e26eb46f9122b2e4ff1ea297d2d63ef50b5b42 b/_git_with_submodules/objects/4c/e26eb46f9122b2e4ff1ea297d2d63ef50b5b42 deleted file mode 100644 index af7025a..0000000 Binary files a/_git_with_submodules/objects/4c/e26eb46f9122b2e4ff1ea297d2d63ef50b5b42 and /dev/null differ diff --git a/_git_with_submodules/objects/97/46274eb7a88218e274aff52b4850fbdeb1de36 b/_git_with_submodules/objects/97/46274eb7a88218e274aff52b4850fbdeb1de36 deleted file mode 100644 index a05cfd2..0000000 Binary files a/_git_with_submodules/objects/97/46274eb7a88218e274aff52b4850fbdeb1de36 and /dev/null differ diff --git a/_git_with_submodules/objects/ae/106b6639e917f90f42d5d78729e0ecdbd702cd b/_git_with_submodules/objects/ae/106b6639e917f90f42d5d78729e0ecdbd702cd deleted file mode 100644 index 7ddbd1b..0000000 Binary files a/_git_with_submodules/objects/ae/106b6639e917f90f42d5d78729e0ecdbd702cd and /dev/null differ diff --git a/_git_with_submodules/objects/ee/7dbc2cfb31b5a118dca682d6c476b49ac68f39 b/_git_with_submodules/objects/ee/7dbc2cfb31b5a118dca682d6c476b49ac68f39 deleted file mode 100644 index fe632ac..0000000 Binary files a/_git_with_submodules/objects/ee/7dbc2cfb31b5a118dca682d6c476b49ac68f39 and /dev/null differ diff --git a/_git_with_submodules/objects/f2/50a90e2c0f8ba3f0f14095be216249fbf35ce5 b/_git_with_submodules/objects/f2/50a90e2c0f8ba3f0f14095be216249fbf35ce5 deleted file mode 100644 index 2c56b90..0000000 Binary files a/_git_with_submodules/objects/f2/50a90e2c0f8ba3f0f14095be216249fbf35ce5 and /dev/null differ diff --git a/_git_with_submodules/refs/heads/master b/_git_with_submodules/refs/heads/master deleted file mode 100644 index 70fb5a9..0000000 --- a/_git_with_submodules/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -01ed93c69b076b1cfb1fcf75d72ca5c680931e47 diff --git a/_git_with_tag_on_different_branch/COMMIT_EDITMSG b/_git_with_tag_on_different_branch/COMMIT_EDITMSG deleted file mode 100644 index df0df8c..0000000 --- a/_git_with_tag_on_different_branch/COMMIT_EDITMSG +++ /dev/null @@ -1,16 +0,0 @@ -Change in tag -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# On branch test -# Changes to be committed: -# (use "git reset HEAD ..." to unstage) -# -# modified: readme.txt -# -diff --git a/readme.txt b/readme.txt -index 53a90bf..e69336e 100644 ---- a/readme.txt -+++ b/readme.txt -@@ -1 +1 @@ --Empty -+Other content diff --git a/_git_with_tag_on_different_branch/HEAD b/_git_with_tag_on_different_branch/HEAD deleted file mode 100644 index cb089cd..0000000 --- a/_git_with_tag_on_different_branch/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/_git_with_tag_on_different_branch/config b/_git_with_tag_on_different_branch/config deleted file mode 100644 index bb4d11c..0000000 --- a/_git_with_tag_on_different_branch/config +++ /dev/null @@ -1,7 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true - ignorecase = true - precomposeunicode = false diff --git a/_git_with_tag_on_different_branch/description b/_git_with_tag_on_different_branch/description deleted file mode 100644 index 498b267..0000000 --- a/_git_with_tag_on_different_branch/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/_git_with_tag_on_different_branch/hooks/applypatch-msg.sample b/_git_with_tag_on_different_branch/hooks/applypatch-msg.sample deleted file mode 100755 index 8b2a2fe..0000000 --- a/_git_with_tag_on_different_branch/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/_git_with_tag_on_different_branch/hooks/commit-msg.sample b/_git_with_tag_on_different_branch/hooks/commit-msg.sample deleted file mode 100755 index b58d118..0000000 --- a/_git_with_tag_on_different_branch/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/_git_with_tag_on_different_branch/hooks/post-update.sample b/_git_with_tag_on_different_branch/hooks/post-update.sample deleted file mode 100755 index ec17ec1..0000000 --- a/_git_with_tag_on_different_branch/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/_git_with_tag_on_different_branch/hooks/pre-applypatch.sample b/_git_with_tag_on_different_branch/hooks/pre-applypatch.sample deleted file mode 100755 index b1f187c..0000000 --- a/_git_with_tag_on_different_branch/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/_git_with_tag_on_different_branch/hooks/pre-commit.sample b/_git_with_tag_on_different_branch/hooks/pre-commit.sample deleted file mode 100755 index 586e3bf..0000000 --- a/_git_with_tag_on_different_branch/hooks/pre-commit.sample +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ASCII filenames set this variable to true. -allownonascii=$(git config hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ASCII filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - cat <<\EOF -Error: Attempt to add a non-ASCII file name. - -This can cause problems if you want to work with people on other platforms. - -To be portable it is advisable to rename the file. - -If you know what you are doing you can disable this check using: - - git config hooks.allownonascii true -EOF - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/_git_with_tag_on_different_branch/hooks/pre-push.sample b/_git_with_tag_on_different_branch/hooks/pre-push.sample deleted file mode 100755 index 15ab6d8..0000000 --- a/_git_with_tag_on_different_branch/hooks/pre-push.sample +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh - -# An example hook script to verify what is about to be pushed. Called by "git -# push" after it has checked the remote status, but before anything has been -# pushed. If this script exits with a non-zero status nothing will be pushed. -# -# This hook is called with the following parameters: -# -# $1 -- Name of the remote to which the push is being done -# $2 -- URL to which the push is being done -# -# If pushing without using a named remote those arguments will be equal. -# -# Information about the commits which are being pushed is supplied as lines to -# the standard input in the form: -# -# -# -# This sample shows how to prevent push of commits where the log message starts -# with "WIP" (work in progress). - -remote="$1" -url="$2" - -z40=0000000000000000000000000000000000000000 - -IFS=' ' -while read local_ref local_sha remote_ref remote_sha -do - if [ "$local_sha" = $z40 ] - then - # Handle delete - else - if [ "$remote_sha" = $z40 ] - then - # New branch, examine all commits - range="$local_sha" - else - # Update to existing branch, examine new commits - range="$remote_sha..$local_sha" - fi - - # Check for WIP commit - commit=`git rev-list -n 1 --grep '^WIP' "$range"` - if [ -n "$commit" ] - then - echo "Found WIP commit in $local_ref, not pushing" - exit 1 - fi - fi -done - -exit 0 diff --git a/_git_with_tag_on_different_branch/hooks/pre-rebase.sample b/_git_with_tag_on_different_branch/hooks/pre-rebase.sample deleted file mode 100755 index 9773ed4..0000000 --- a/_git_with_tag_on_different_branch/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/_git_with_tag_on_different_branch/hooks/prepare-commit-msg.sample b/_git_with_tag_on_different_branch/hooks/prepare-commit-msg.sample deleted file mode 100755 index f093a02..0000000 --- a/_git_with_tag_on_different_branch/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/_git_with_tag_on_different_branch/hooks/update.sample b/_git_with_tag_on_different_branch/hooks/update.sample deleted file mode 100755 index d847583..0000000 --- a/_git_with_tag_on_different_branch/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/_git_with_tag_on_different_branch/index b/_git_with_tag_on_different_branch/index deleted file mode 100644 index 3ec7e55..0000000 Binary files a/_git_with_tag_on_different_branch/index and /dev/null differ diff --git a/_git_with_tag_on_different_branch/info/exclude b/_git_with_tag_on_different_branch/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/_git_with_tag_on_different_branch/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git a/_git_with_tag_on_different_branch/logs/HEAD b/_git_with_tag_on_different_branch/logs/HEAD deleted file mode 100644 index 428ae8c..0000000 --- a/_git_with_tag_on_different_branch/logs/HEAD +++ /dev/null @@ -1,6 +0,0 @@ -0000000000000000000000000000000000000000 e3d159dd7383cb06acf7787f1c0d5370a0417a1c Karol Lassak 1385717882 +0100 commit (initial): Added readme -e3d159dd7383cb06acf7787f1c0d5370a0417a1c 234342815bc16c473495871118b3dc5ee68a8a4a Karol Lassak 1385717914 +0100 commit: Moved master -234342815bc16c473495871118b3dc5ee68a8a4a e3d159dd7383cb06acf7787f1c0d5370a0417a1c Karol Lassak 1385717941 +0100 checkout: moving from master to master^ -e3d159dd7383cb06acf7787f1c0d5370a0417a1c e3d159dd7383cb06acf7787f1c0d5370a0417a1c Karol Lassak 1385717955 +0100 checkout: moving from e3d159dd7383cb06acf7787f1c0d5370a0417a1c to test -e3d159dd7383cb06acf7787f1c0d5370a0417a1c 9cb810e57e2994f38c7ec6a698a31de66fdd9e24 Karol Lassak 1385717971 +0100 commit: Change in tag -9cb810e57e2994f38c7ec6a698a31de66fdd9e24 234342815bc16c473495871118b3dc5ee68a8a4a Karol Lassak 1385718126 +0100 checkout: moving from test to master diff --git a/_git_with_tag_on_different_branch/logs/refs/heads/master b/_git_with_tag_on_different_branch/logs/refs/heads/master deleted file mode 100644 index 90bbbbc..0000000 --- a/_git_with_tag_on_different_branch/logs/refs/heads/master +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 e3d159dd7383cb06acf7787f1c0d5370a0417a1c Karol Lassak 1385717882 +0100 commit (initial): Added readme -e3d159dd7383cb06acf7787f1c0d5370a0417a1c 234342815bc16c473495871118b3dc5ee68a8a4a Karol Lassak 1385717914 +0100 commit: Moved master diff --git a/_git_with_tag_on_different_branch/logs/refs/heads/test b/_git_with_tag_on_different_branch/logs/refs/heads/test deleted file mode 100644 index cfa7f22..0000000 --- a/_git_with_tag_on_different_branch/logs/refs/heads/test +++ /dev/null @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 e3d159dd7383cb06acf7787f1c0d5370a0417a1c Karol Lassak 1385717955 +0100 branch: Created from HEAD -e3d159dd7383cb06acf7787f1c0d5370a0417a1c 9cb810e57e2994f38c7ec6a698a31de66fdd9e24 Karol Lassak 1385717971 +0100 commit: Change in tag diff --git a/_git_with_tag_on_different_branch/objects/23/4342815bc16c473495871118b3dc5ee68a8a4a b/_git_with_tag_on_different_branch/objects/23/4342815bc16c473495871118b3dc5ee68a8a4a deleted file mode 100644 index 6ff590f..0000000 --- a/_git_with_tag_on_different_branch/objects/23/4342815bc16c473495871118b3dc5ee68a8a4a +++ /dev/null @@ -1 +0,0 @@ -xM0@a=MȔLIqbhjKr~#|//q|Th ,>G ,-}lDlDij*Iu) &9f@YGL2ZMw<.,WͰ)Gs+k3 G&8i {Ԉ*nUԵ`嫨b&Ke \ No newline at end of file diff --git a/_git_with_tag_on_different_branch/objects/53/926330ba010a18efab4af2244beb12d96de8de b/_git_with_tag_on_different_branch/objects/53/926330ba010a18efab4af2244beb12d96de8de deleted file mode 100644 index b5daec4..0000000 Binary files a/_git_with_tag_on_different_branch/objects/53/926330ba010a18efab4af2244beb12d96de8de and /dev/null differ diff --git a/_git_with_tag_on_different_branch/objects/53/a90bffae3d87177f8eeb064b8fc81d1f9a3781 b/_git_with_tag_on_different_branch/objects/53/a90bffae3d87177f8eeb064b8fc81d1f9a3781 deleted file mode 100644 index 12f46e2..0000000 Binary files a/_git_with_tag_on_different_branch/objects/53/a90bffae3d87177f8eeb064b8fc81d1f9a3781 and /dev/null differ diff --git a/_git_with_tag_on_different_branch/objects/55/3cb2a70e3820b490169f619ab591aa46269695 b/_git_with_tag_on_different_branch/objects/55/3cb2a70e3820b490169f619ab591aa46269695 deleted file mode 100644 index 10d0786..0000000 --- a/_git_with_tag_on_different_branch/objects/55/3cb2a70e3820b490169f619ab591aa46269695 +++ /dev/null @@ -1 +0,0 @@ -x+)JMU0`040031Q(JMLM+(a^mx}k6XD \ No newline at end of file diff --git a/_git_with_tag_on_different_branch/objects/6f/76045802d98ae275cbbbdaf3eed694f6774777 b/_git_with_tag_on_different_branch/objects/6f/76045802d98ae275cbbbdaf3eed694f6774777 deleted file mode 100644 index d24603a..0000000 Binary files a/_git_with_tag_on_different_branch/objects/6f/76045802d98ae275cbbbdaf3eed694f6774777 and /dev/null differ diff --git a/_git_with_tag_on_different_branch/objects/8f/d26be268fd77188a08f064b0c80d34b0ba89c4 b/_git_with_tag_on_different_branch/objects/8f/d26be268fd77188a08f064b0c80d34b0ba89c4 deleted file mode 100644 index c979879..0000000 Binary files a/_git_with_tag_on_different_branch/objects/8f/d26be268fd77188a08f064b0c80d34b0ba89c4 and /dev/null differ diff --git a/_git_with_tag_on_different_branch/objects/9c/b810e57e2994f38c7ec6a698a31de66fdd9e24 b/_git_with_tag_on_different_branch/objects/9c/b810e57e2994f38c7ec6a698a31de66fdd9e24 deleted file mode 100644 index 8c60848..0000000 --- a/_git_with_tag_on_different_branch/objects/9c/b810e57e2994f38c7ec6a698a31de66fdd9e24 +++ /dev/null @@ -1 +0,0 @@ -xA0@Q=MHLI1q_.x]YTεD6E+赗PK\] R&IS (%l<`[=M [# F#r \d\e]OմX ]=# ;FGg |yPg(2WK \ No newline at end of file diff --git a/_git_with_tag_on_different_branch/objects/dc/033fe75e04c5b74428bfd15fb6189843af0214 b/_git_with_tag_on_different_branch/objects/dc/033fe75e04c5b74428bfd15fb6189843af0214 deleted file mode 100644 index 7a03b6a..0000000 Binary files a/_git_with_tag_on_different_branch/objects/dc/033fe75e04c5b74428bfd15fb6189843af0214 and /dev/null differ diff --git a/_git_with_tag_on_different_branch/objects/e3/d159dd7383cb06acf7787f1c0d5370a0417a1c b/_git_with_tag_on_different_branch/objects/e3/d159dd7383cb06acf7787f1c0d5370a0417a1c deleted file mode 100644 index 84ca392..0000000 --- a/_git_with_tag_on_different_branch/objects/e3/d159dd7383cb06acf7787f1c0d5370a0417a1c +++ /dev/null @@ -1,4 +0,0 @@ -xM -0@a9셐I"KLQK["ibۼʺN 0ҡUpK`֌=tH<:B[Ow{ -Weo0?e9I?G`]AcTڿM/KΒ -UL< \ No newline at end of file diff --git a/_git_with_tag_on_different_branch/objects/e6/9336e9b0991073c1f12fbb6c60feae7870ed22 b/_git_with_tag_on_different_branch/objects/e6/9336e9b0991073c1f12fbb6c60feae7870ed22 deleted file mode 100644 index e4efcb2..0000000 Binary files a/_git_with_tag_on_different_branch/objects/e6/9336e9b0991073c1f12fbb6c60feae7870ed22 and /dev/null differ diff --git a/_git_with_tag_on_different_branch/refs/heads/master b/_git_with_tag_on_different_branch/refs/heads/master deleted file mode 100644 index 943a8e3..0000000 --- a/_git_with_tag_on_different_branch/refs/heads/master +++ /dev/null @@ -1 +0,0 @@ -234342815bc16c473495871118b3dc5ee68a8a4a diff --git a/_git_with_tag_on_different_branch/refs/heads/test b/_git_with_tag_on_different_branch/refs/heads/test deleted file mode 100644 index 8283990..0000000 --- a/_git_with_tag_on_different_branch/refs/heads/test +++ /dev/null @@ -1 +0,0 @@ -9cb810e57e2994f38c7ec6a698a31de66fdd9e24 diff --git a/_git_with_tag_on_different_branch/refs/tags/test_tag b/_git_with_tag_on_different_branch/refs/tags/test_tag deleted file mode 100644 index b0ef69b..0000000 --- a/_git_with_tag_on_different_branch/refs/tags/test_tag +++ /dev/null @@ -1 +0,0 @@ -8fd26be268fd77188a08f064b0c80d34b0ba89c4 diff --git a/git.properties b/git.properties deleted file mode 100644 index 8591979..0000000 --- a/git.properties +++ /dev/null @@ -1,32 +0,0 @@ -# -# This file is part of git-commit-id-maven-plugin by Konrad Malawski -# -# git-commit-id-maven-plugin is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# git-commit-id-maven-plugin is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License -# along with git-commit-id-maven-plugin. If not, see . -# - -git.branch=${git.branch} - -git.build.user.name=${git.build.user.name} -git.build.user.email=${git.build.user.email} -git.build.time=${git.build.time} - -git.commit.id.full=${git.commit.id.full} -git.commit.id.abbrev=${git.commit.id.abbrev} -git.commit.user.name=${git.commit.user.name} -git.commit.user.email=${git.commit.user.email} -git.commit.message.full=${git.commit.message.full} -git.commit.message.short=${git.commit.message.short} -git.commit.time=${git.commit.time} - -git.remote.origin.url=${git.remote.origin.url}