diff --git a/project/.git_disabled/COMMIT_EDITMSG b/project/.git_disabled/COMMIT_EDITMSG deleted file mode 100644 index 673be0e..0000000 --- a/project/.git_disabled/COMMIT_EDITMSG +++ /dev/null @@ -1,10 +0,0 @@ -Updated with Lightboxes -# Please enter the commit message for your changes. Lines starting -# with '#' will be ignored, and an empty message aborts the commit. -# -# On branch main -# Your branch is up to date with 'puffin-offset/main'. -# -# Changes to be committed: -# modified: src/components/OffsetOrder.tsx -# diff --git a/project/.git_disabled/FETCH_HEAD b/project/.git_disabled/FETCH_HEAD deleted file mode 100644 index cef2d45..0000000 --- a/project/.git_disabled/FETCH_HEAD +++ /dev/null @@ -1 +0,0 @@ -df2e11f600834970a66693513a39dff330375d1b branch 'main' of https://code.puffinoffset.com/matt/puffin-app diff --git a/project/.git_disabled/HEAD b/project/.git_disabled/HEAD deleted file mode 100644 index b870d82..0000000 --- a/project/.git_disabled/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/main diff --git a/project/.git_disabled/ORIG_HEAD b/project/.git_disabled/ORIG_HEAD deleted file mode 100644 index aff119e..0000000 --- a/project/.git_disabled/ORIG_HEAD +++ /dev/null @@ -1 +0,0 @@ -96496350ee59fb2fd226eb340094130203514ab8 diff --git a/project/.git_disabled/config b/project/.git_disabled/config deleted file mode 100644 index f0e93b1..0000000 --- a/project/.git_disabled/config +++ /dev/null @@ -1,16 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = false - bare = false - logallrefupdates = true - symlinks = false - ignorecase = true -[remote "puffin-offset"] - url = https://code.puffinoffset.com/matt/puffin-app.git - fetch = +refs/heads/*:refs/remotes/puffin-offset/* -[branch "main"] - remote = puffin-offset - merge = refs/heads/main - vscode-merge-base = puffin-offset/main - vscode-merge-base = puffin-offset/main - vscode-merge-base = puffin-offset/main diff --git a/project/.git_disabled/description b/project/.git_disabled/description deleted file mode 100644 index 498b267..0000000 --- a/project/.git_disabled/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/project/.git_disabled/hooks/applypatch-msg.sample b/project/.git_disabled/hooks/applypatch-msg.sample deleted file mode 100644 index a5d7b84..0000000 --- a/project/.git_disabled/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -commitmsg="$(git rev-parse --git-path hooks/commit-msg)" -test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} -: diff --git a/project/.git_disabled/hooks/commit-msg.sample b/project/.git_disabled/hooks/commit-msg.sample deleted file mode 100644 index b58d118..0000000 --- a/project/.git_disabled/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/project/.git_disabled/hooks/fsmonitor-watchman.sample b/project/.git_disabled/hooks/fsmonitor-watchman.sample deleted file mode 100644 index 23e856f..0000000 --- a/project/.git_disabled/hooks/fsmonitor-watchman.sample +++ /dev/null @@ -1,174 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; -use IPC::Open2; - -# An example hook script to integrate Watchman -# (https://facebook.github.io/watchman/) with git to speed up detecting -# new and modified files. -# -# The hook is passed a version (currently 2) and last update token -# formatted as a string and outputs to stdout a new update token and -# all files that have been modified since the update token. Paths must -# be relative to the root of the working tree and separated by a single NUL. -# -# To enable this hook, rename this file to "query-watchman" and set -# 'git config core.fsmonitor .git/hooks/query-watchman' -# -my ($version, $last_update_token) = @ARGV; - -# Uncomment for debugging -# print STDERR "$0 $version $last_update_token\n"; - -# Check the hook interface version -if ($version ne 2) { - die "Unsupported query-fsmonitor hook version '$version'.\n" . - "Falling back to scanning...\n"; -} - -my $git_work_tree = get_working_dir(); - -my $retry = 1; - -my $json_pkg; -eval { - require JSON::XS; - $json_pkg = "JSON::XS"; - 1; -} or do { - require JSON::PP; - $json_pkg = "JSON::PP"; -}; - -launch_watchman(); - -sub launch_watchman { - my $o = watchman_query(); - if (is_work_tree_watched($o)) { - output_result($o->{clock}, @{$o->{files}}); - } -} - -sub output_result { - my ($clockid, @files) = @_; - - # Uncomment for debugging watchman output - # open (my $fh, ">", ".git/watchman-output.out"); - # binmode $fh, ":utf8"; - # print $fh "$clockid\n@files\n"; - # close $fh; - - binmode STDOUT, ":utf8"; - print $clockid; - print "\0"; - local $, = "\0"; - print @files; -} - -sub watchman_clock { - my $response = qx/watchman clock "$git_work_tree"/; - die "Failed to get clock id on '$git_work_tree'.\n" . - "Falling back to scanning...\n" if $? != 0; - - return $json_pkg->new->utf8->decode($response); -} - -sub watchman_query { - my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty') - or die "open2() failed: $!\n" . - "Falling back to scanning...\n"; - - # In the query expression below we're asking for names of files that - # changed since $last_update_token but not from the .git folder. - # - # To accomplish this, we're using the "since" generator to use the - # recency index to select candidate nodes and "fields" to limit the - # output to file names only. Then we're using the "expression" term to - # further constrain the results. - my $last_update_line = ""; - if (substr($last_update_token, 0, 1) eq "c") { - $last_update_token = "\"$last_update_token\""; - $last_update_line = qq[\n"since": $last_update_token,]; - } - my $query = <<" END"; - ["query", "$git_work_tree", {$last_update_line - "fields": ["name"], - "expression": ["not", ["dirname", ".git"]] - }] - END - - # Uncomment for debugging the watchman query - # open (my $fh, ">", ".git/watchman-query.json"); - # print $fh $query; - # close $fh; - - print CHLD_IN $query; - close CHLD_IN; - my $response = do {local $/; }; - - # Uncomment for debugging the watch response - # open ($fh, ">", ".git/watchman-response.json"); - # print $fh $response; - # close $fh; - - die "Watchman: command returned no output.\n" . - "Falling back to scanning...\n" if $response eq ""; - die "Watchman: command returned invalid output: $response\n" . - "Falling back to scanning...\n" unless $response =~ /^\{/; - - return $json_pkg->new->utf8->decode($response); -} - -sub is_work_tree_watched { - my ($output) = @_; - my $error = $output->{error}; - if ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) { - $retry--; - my $response = qx/watchman watch "$git_work_tree"/; - die "Failed to make watchman watch '$git_work_tree'.\n" . - "Falling back to scanning...\n" if $? != 0; - $output = $json_pkg->new->utf8->decode($response); - $error = $output->{error}; - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - # Uncomment for debugging watchman output - # open (my $fh, ">", ".git/watchman-output.out"); - # close $fh; - - # Watchman will always return all files on the first query so - # return the fast "everything is dirty" flag to git and do the - # Watchman query just to get it over with now so we won't pay - # the cost in git to look up each individual file. - my $o = watchman_clock(); - $error = $output->{error}; - - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - output_result($o->{clock}, ("/")); - $last_update_token = $o->{clock}; - - eval { launch_watchman() }; - return 0; - } - - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - return 1; -} - -sub get_working_dir { - my $working_dir; - if ($^O =~ 'msys' || $^O =~ 'cygwin') { - $working_dir = Win32::GetCwd(); - $working_dir =~ tr/\\/\//; - } else { - require Cwd; - $working_dir = Cwd::cwd(); - } - - return $working_dir; -} diff --git a/project/.git_disabled/hooks/post-update.sample b/project/.git_disabled/hooks/post-update.sample deleted file mode 100644 index ec17ec1..0000000 --- a/project/.git_disabled/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/project/.git_disabled/hooks/pre-applypatch.sample b/project/.git_disabled/hooks/pre-applypatch.sample deleted file mode 100644 index 4142082..0000000 --- a/project/.git_disabled/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -precommit="$(git rev-parse --git-path hooks/pre-commit)" -test -x "$precommit" && exec "$precommit" ${1+"$@"} -: diff --git a/project/.git_disabled/hooks/pre-commit.sample b/project/.git_disabled/hooks/pre-commit.sample deleted file mode 100644 index 29ed5ee..0000000 --- a/project/.git_disabled/hooks/pre-commit.sample +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=$(git hash-object -t tree /dev/null) -fi - -# If you want to allow non-ASCII filenames set this variable to true. -allownonascii=$(git config --type=bool hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ASCII filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff-index --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - cat <<\EOF -Error: Attempt to add a non-ASCII file name. - -This can cause problems if you want to work with people on other platforms. - -To be portable it is advisable to rename the file. - -If you know what you are doing you can disable this check using: - - git config hooks.allownonascii true -EOF - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/project/.git_disabled/hooks/pre-merge-commit.sample b/project/.git_disabled/hooks/pre-merge-commit.sample deleted file mode 100644 index 399eab1..0000000 --- a/project/.git_disabled/hooks/pre-merge-commit.sample +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git merge" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message to -# stderr if it wants to stop the merge commit. -# -# To enable this hook, rename this file to "pre-merge-commit". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" -: diff --git a/project/.git_disabled/hooks/pre-push.sample b/project/.git_disabled/hooks/pre-push.sample deleted file mode 100644 index 4ce688d..0000000 --- a/project/.git_disabled/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" - -zero=$(git hash-object --stdin &2 "Found WIP commit in $local_ref, not pushing" - exit 1 - fi - fi -done - -exit 0 diff --git a/project/.git_disabled/hooks/pre-rebase.sample b/project/.git_disabled/hooks/pre-rebase.sample deleted file mode 100644 index 6cbef5c..0000000 --- a/project/.git_disabled/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/project/.git_disabled/hooks/pre-receive.sample b/project/.git_disabled/hooks/pre-receive.sample deleted file mode 100644 index a1fd29e..0000000 --- a/project/.git_disabled/hooks/pre-receive.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to make use of push options. -# The example simply echoes all push options that start with 'echoback=' -# and rejects all pushes when the "reject" push option is used. -# -# To enable this hook, rename this file to "pre-receive". - -if test -n "$GIT_PUSH_OPTION_COUNT" -then - i=0 - while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" - do - eval "value=\$GIT_PUSH_OPTION_$i" - case "$value" in - echoback=*) - echo "echo from the pre-receive-hook: ${value#*=}" >&2 - ;; - reject) - exit 1 - esac - i=$((i + 1)) - done -fi diff --git a/project/.git_disabled/hooks/prepare-commit-msg.sample b/project/.git_disabled/hooks/prepare-commit-msg.sample deleted file mode 100644 index 10fa14c..0000000 --- a/project/.git_disabled/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first one removes the -# "# Please enter the commit message..." help message. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -COMMIT_MSG_FILE=$1 -COMMIT_SOURCE=$2 -SHA1=$3 - -/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" - -# case "$COMMIT_SOURCE,$SHA1" in -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; -# *) ;; -# esac - -# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" -# if test -z "$COMMIT_SOURCE" -# then -# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" -# fi diff --git a/project/.git_disabled/hooks/push-to-checkout.sample b/project/.git_disabled/hooks/push-to-checkout.sample deleted file mode 100644 index af5a0c0..0000000 --- a/project/.git_disabled/hooks/push-to-checkout.sample +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh - -# An example hook script to update a checked-out tree on a git push. -# -# This hook is invoked by git-receive-pack(1) when it reacts to git -# push and updates reference(s) in its repository, and when the push -# tries to update the branch that is currently checked out and the -# receive.denyCurrentBranch configuration variable is set to -# updateInstead. -# -# By default, such a push is refused if the working tree and the index -# of the remote repository has any difference from the currently -# checked out commit; when both the working tree and the index match -# the current commit, they are updated to match the newly pushed tip -# of the branch. This hook is to be used to override the default -# behaviour; however the code below reimplements the default behaviour -# as a starting point for convenient modification. -# -# The hook receives the commit with which the tip of the current -# branch is going to be updated: -commit=$1 - -# It can exit with a non-zero status to refuse the push (when it does -# so, it must not modify the index or the working tree). -die () { - echo >&2 "$*" - exit 1 -} - -# Or it can make any necessary changes to the working tree and to the -# index to bring them to the desired state when the tip of the current -# branch is updated to the new commit, and exit with a zero status. -# -# For example, the hook can simply run git read-tree -u -m HEAD "$1" -# in order to emulate git fetch that is run in the reverse direction -# with git push, as the two-tree form of git read-tree -u -m is -# essentially the same as git switch or git checkout that switches -# branches while keeping the local changes in the working tree that do -# not interfere with the difference between the branches. - -# The below is a more-or-less exact translation to shell of the C code -# for the default behaviour for git's push-to-checkout hook defined in -# the push_to_deploy() function in builtin/receive-pack.c. -# -# Note that the hook will be executed from the repository directory, -# not from the working tree, so if you want to perform operations on -# the working tree, you will have to adapt your code accordingly, e.g. -# by adding "cd .." or using relative paths. - -if ! git update-index -q --ignore-submodules --refresh -then - die "Up-to-date check failed" -fi - -if ! git diff-files --quiet --ignore-submodules -- -then - die "Working directory has unstaged changes" -fi - -# This is a rough translation of: -# -# head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX -if git cat-file -e HEAD 2>/dev/null -then - head=HEAD -else - head=$(git hash-object -t tree --stdin &2 - exit 1 -} - -unset GIT_DIR GIT_WORK_TREE -cd "$worktree" && - -if grep -q "^diff --git " "$1" -then - validate_patch "$1" -else - validate_cover_letter "$1" -fi && - -if test "$GIT_SENDEMAIL_FILE_COUNTER" = "$GIT_SENDEMAIL_FILE_TOTAL" -then - git config --unset-all sendemail.validateWorktree && - trap 'git worktree remove -ff "$worktree"' EXIT && - validate_series -fi diff --git a/project/.git_disabled/hooks/update.sample b/project/.git_disabled/hooks/update.sample deleted file mode 100644 index c4d426b..0000000 --- a/project/.git_disabled/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to block unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --type=bool hooks.allowunannotated) -allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch) -denycreatebranch=$(git config --type=bool hooks.denycreatebranch) -allowdeletetag=$(git config --type=bool hooks.allowdeletetag) -allowmodifytag=$(git config --type=bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero=$(git hash-object --stdin &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/project/.git_disabled/index b/project/.git_disabled/index deleted file mode 100644 index 5f578e9..0000000 Binary files a/project/.git_disabled/index and /dev/null differ diff --git a/project/.git_disabled/info/exclude b/project/.git_disabled/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/project/.git_disabled/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/project/.git_disabled/objects/04/160a2fd22d14bd7cbf70e2ad153bfa490c400f b/project/.git_disabled/objects/04/160a2fd22d14bd7cbf70e2ad153bfa490c400f deleted file mode 100644 index b6fdbde..0000000 --- a/project/.git_disabled/objects/04/160a2fd22d14bd7cbf70e2ad153bfa490c400f +++ /dev/null @@ -1,2 +0,0 @@ -xM -@ @as i&łҦo>x1!|5]cK%aY) ՞A 15e0ʍF\47 ߗ5=omӶ#= rKxiu9x[I ևyVF)ģ,r_&=G \ No newline at end of file diff --git a/project/.git_disabled/objects/23/fafb9da0510a2353f22287b851fde594270bc6 b/project/.git_disabled/objects/23/fafb9da0510a2353f22287b851fde594270bc6 deleted file mode 100644 index 3aa79b1..0000000 Binary files a/project/.git_disabled/objects/23/fafb9da0510a2353f22287b851fde594270bc6 and /dev/null differ diff --git a/project/.git_disabled/objects/27/9098e9fa34030017cef48e0c0e7e46f95bd30c b/project/.git_disabled/objects/27/9098e9fa34030017cef48e0c0e7e46f95bd30c deleted file mode 100644 index 19bcb25..0000000 --- a/project/.git_disabled/objects/27/9098e9fa34030017cef48e0c0e7e46f95bd30c +++ /dev/null @@ -1,2 +0,0 @@ -x[ -!@vq}]ZW3ԁ9?'Z)rٙu*p*)D#*h39爀.Ɗw:F%@K.b>C19:|.qNyϱemk{TzB@%ϠDMue_D CP \ No newline at end of file diff --git a/project/.git_disabled/objects/28/20b97dafcfe569c2bf3853143fae3789326677 b/project/.git_disabled/objects/28/20b97dafcfe569c2bf3853143fae3789326677 deleted file mode 100644 index b300bf8..0000000 Binary files a/project/.git_disabled/objects/28/20b97dafcfe569c2bf3853143fae3789326677 and /dev/null differ diff --git a/project/.git_disabled/objects/28/a87caff04583e9527f75f10faf578bbc6766b6 b/project/.git_disabled/objects/28/a87caff04583e9527f75f10faf578bbc6766b6 deleted file mode 100644 index 303769d..0000000 Binary files a/project/.git_disabled/objects/28/a87caff04583e9527f75f10faf578bbc6766b6 and /dev/null differ diff --git a/project/.git_disabled/objects/29/099a701aa79c28941e67172b0770e5fb4b8d5d b/project/.git_disabled/objects/29/099a701aa79c28941e67172b0770e5fb4b8d5d deleted file mode 100644 index d696ff8..0000000 Binary files a/project/.git_disabled/objects/29/099a701aa79c28941e67172b0770e5fb4b8d5d and /dev/null differ diff --git a/project/.git_disabled/objects/2a/540db28bdef4e91de30c51e6e2f58ed9b21cab b/project/.git_disabled/objects/2a/540db28bdef4e91de30c51e6e2f58ed9b21cab deleted file mode 100644 index 30830f5..0000000 Binary files a/project/.git_disabled/objects/2a/540db28bdef4e91de30c51e6e2f58ed9b21cab and /dev/null differ diff --git a/project/.git_disabled/objects/2a/a7205d4b402a1bdfbe07110c61df920b370066 b/project/.git_disabled/objects/2a/a7205d4b402a1bdfbe07110c61df920b370066 deleted file mode 100644 index 35ab644..0000000 Binary files a/project/.git_disabled/objects/2a/a7205d4b402a1bdfbe07110c61df920b370066 and /dev/null differ diff --git a/project/.git_disabled/objects/2c/cd9792422d03c979b5b72a44d45c04c563bd8d b/project/.git_disabled/objects/2c/cd9792422d03c979b5b72a44d45c04c563bd8d deleted file mode 100644 index 4dde1bf..0000000 Binary files a/project/.git_disabled/objects/2c/cd9792422d03c979b5b72a44d45c04c563bd8d and /dev/null differ diff --git a/project/.git_disabled/objects/2d/8005edc4dae70788318c3c75d91a8b17d701a5 b/project/.git_disabled/objects/2d/8005edc4dae70788318c3c75d91a8b17d701a5 deleted file mode 100644 index d631048..0000000 Binary files a/project/.git_disabled/objects/2d/8005edc4dae70788318c3c75d91a8b17d701a5 and /dev/null differ diff --git a/project/.git_disabled/objects/2e/02dad998d13644fc43668bd7bf4e3c824b5514 b/project/.git_disabled/objects/2e/02dad998d13644fc43668bd7bf4e3c824b5514 deleted file mode 100644 index 902d609..0000000 Binary files a/project/.git_disabled/objects/2e/02dad998d13644fc43668bd7bf4e3c824b5514 and /dev/null differ diff --git a/project/.git_disabled/objects/2f/7f26e4fd306485d81e6a7c8202f7e85869e2d0 b/project/.git_disabled/objects/2f/7f26e4fd306485d81e6a7c8202f7e85869e2d0 deleted file mode 100644 index f20ee6d..0000000 --- a/project/.git_disabled/objects/2f/7f26e4fd306485d81e6a7c8202f7e85869e2d0 +++ /dev/null @@ -1,2 +0,0 @@ -xK - @ etc^u7}{:ϣZEwPR&CDn qa9-C0ﲨm%PH.H`LR+rAӯIgu:t\N<);;slUC \ No newline at end of file diff --git a/project/.git_disabled/objects/30/64b4386eb92c12236809ec3aad0f39b03b9b8c b/project/.git_disabled/objects/30/64b4386eb92c12236809ec3aad0f39b03b9b8c deleted file mode 100644 index cf83567..0000000 Binary files a/project/.git_disabled/objects/30/64b4386eb92c12236809ec3aad0f39b03b9b8c and /dev/null differ diff --git a/project/.git_disabled/objects/30/b61119238d273640bc33639d7915516a8a1b5e b/project/.git_disabled/objects/30/b61119238d273640bc33639d7915516a8a1b5e deleted file mode 100644 index c1996bd..0000000 Binary files a/project/.git_disabled/objects/30/b61119238d273640bc33639d7915516a8a1b5e and /dev/null differ diff --git a/project/.git_disabled/objects/32/edcbd78e031deb9cf77d86f1b7d6f82e9e639e b/project/.git_disabled/objects/32/edcbd78e031deb9cf77d86f1b7d6f82e9e639e deleted file mode 100644 index 5b1b2f5..0000000 Binary files a/project/.git_disabled/objects/32/edcbd78e031deb9cf77d86f1b7d6f82e9e639e and /dev/null differ diff --git a/project/.git_disabled/objects/34/b07e2efd0bbd9aa8164ea5225736eba803dc53 b/project/.git_disabled/objects/34/b07e2efd0bbd9aa8164ea5225736eba803dc53 deleted file mode 100644 index 52d31f9..0000000 Binary files a/project/.git_disabled/objects/34/b07e2efd0bbd9aa8164ea5225736eba803dc53 and /dev/null differ diff --git a/project/.git_disabled/objects/36/19cc0d8a8febd19e41a338330f040369ddd88d b/project/.git_disabled/objects/36/19cc0d8a8febd19e41a338330f040369ddd88d deleted file mode 100644 index c5f9292..0000000 Binary files a/project/.git_disabled/objects/36/19cc0d8a8febd19e41a338330f040369ddd88d and /dev/null differ diff --git a/project/.git_disabled/objects/36/5d3514f251161b6e00c8b0b0192c3e0e1fb362 b/project/.git_disabled/objects/36/5d3514f251161b6e00c8b0b0192c3e0e1fb362 deleted file mode 100644 index 4a12fe4..0000000 Binary files a/project/.git_disabled/objects/36/5d3514f251161b6e00c8b0b0192c3e0e1fb362 and /dev/null differ diff --git a/project/.git_disabled/objects/36/b64295e4c7535951b8821d501179ab0cba9c4c b/project/.git_disabled/objects/36/b64295e4c7535951b8821d501179ab0cba9c4c deleted file mode 100644 index 526ec2d..0000000 Binary files a/project/.git_disabled/objects/36/b64295e4c7535951b8821d501179ab0cba9c4c and /dev/null differ diff --git a/project/.git_disabled/objects/3a/081599aba8943dca8bdb4366241c9f8cf10048 b/project/.git_disabled/objects/3a/081599aba8943dca8bdb4366241c9f8cf10048 deleted file mode 100644 index b88052a..0000000 Binary files a/project/.git_disabled/objects/3a/081599aba8943dca8bdb4366241c9f8cf10048 and /dev/null differ diff --git a/project/.git_disabled/objects/3e/e6fba76d78914002e60798d7008fcb0800c718 b/project/.git_disabled/objects/3e/e6fba76d78914002e60798d7008fcb0800c718 deleted file mode 100644 index 166ecfe..0000000 Binary files a/project/.git_disabled/objects/3e/e6fba76d78914002e60798d7008fcb0800c718 and /dev/null differ diff --git a/project/.git_disabled/objects/41/105e22153e29ff19b3d9695b784d58ffa5909a b/project/.git_disabled/objects/41/105e22153e29ff19b3d9695b784d58ffa5909a deleted file mode 100644 index a49c853..0000000 --- a/project/.git_disabled/objects/41/105e22153e29ff19b3d9695b784d58ffa5909a +++ /dev/null @@ -1,2 +0,0 @@ -xK -1 a=E>R"80f+ͿeԢZ0gi DZ"%4DA̋uK0fB)Q`}Km>t~.BHH `ߝiӻvdB \ No newline at end of file diff --git a/project/.git_disabled/objects/41/af4c78e854c974bb81b5ff0f205c82cdd4778c b/project/.git_disabled/objects/41/af4c78e854c974bb81b5ff0f205c82cdd4778c deleted file mode 100644 index 4f2e7ea..0000000 --- a/project/.git_disabled/objects/41/af4c78e854c974bb81b5ff0f205c82cdd4778c +++ /dev/null @@ -1,2 +0,0 @@ -x}T[o0yoYt+/!$4$'9I\&YwԕJs|.Ʉf& \me;ܹdժ՞ h)d\+oI):BՈ9ctx޺+﮶G-A¦I>?#+yzsJ)B[g0 I\fU7d`Cn^jF/3@,@ E05Й-S"4گz PޣP(P>|BY.gP" ߆\Ugɚ`` lħ2 RigaIoߞr곮?YAsr,Ig#T.T̼|'t{ֿD} y^va !XլлBc\a2R[9g N+,~$3z>!?qWL:m<TiOzŨ)cbiii`C8qF%-u y1KV{CJ? -W 4O0RgӢs^ ߸3HlmUkCk^Fa&n_}r?uؠ;7("'ƯV~ rF#Ӧ s+J<=+l\f6DāLmaX|| \ No newline at end of file diff --git a/project/.git_disabled/objects/43/fca42b7f06d04645f6f9da5877cbc91db8f663 b/project/.git_disabled/objects/43/fca42b7f06d04645f6f9da5877cbc91db8f663 deleted file mode 100644 index 4f55b52..0000000 --- a/project/.git_disabled/objects/43/fca42b7f06d04645f6f9da5877cbc91db8f663 +++ /dev/null @@ -1,3 +0,0 @@ -xK -0@] N&dH2on=xԶm ;Ig)njW m!%P%Sr C)lؘLFV]G}e/,5nz -&~lE;;κ. 1D \ No newline at end of file diff --git a/project/.git_disabled/objects/44/4ab364a4ed3e52703f79cbc90e0c238a0b4643 b/project/.git_disabled/objects/44/4ab364a4ed3e52703f79cbc90e0c238a0b4643 deleted file mode 100644 index cdc73c0..0000000 --- a/project/.git_disabled/objects/44/4ab364a4ed3e52703f79cbc90e0c238a0b4643 +++ /dev/null @@ -1,2 +0,0 @@ -xQ -0D)/ni*xI6X{&y:OXv# ,21y >ZKH@!fw ͇WY0RBCNce\c2뫭ɪ6|E$wڲ-F88ў|S3Ig,u|HK \ No newline at end of file diff --git a/project/.git_disabled/objects/44/4cf260e65eb3fae24aa5ce71dca8d2b56c0ed7 b/project/.git_disabled/objects/44/4cf260e65eb3fae24aa5ce71dca8d2b56c0ed7 deleted file mode 100644 index 1aa5fe0..0000000 Binary files a/project/.git_disabled/objects/44/4cf260e65eb3fae24aa5ce71dca8d2b56c0ed7 and /dev/null differ diff --git a/project/.git_disabled/objects/45/19ecfc9ae4276613664f3092d8555880e04b34 b/project/.git_disabled/objects/45/19ecfc9ae4276613664f3092d8555880e04b34 deleted file mode 100644 index d89c8cb..0000000 Binary files a/project/.git_disabled/objects/45/19ecfc9ae4276613664f3092d8555880e04b34 and /dev/null differ diff --git a/project/.git_disabled/objects/48/3ba7ebd0dd92219fd5d68a7c48051231159ff3 b/project/.git_disabled/objects/48/3ba7ebd0dd92219fd5d68a7c48051231159ff3 deleted file mode 100644 index 3fd8667..0000000 Binary files a/project/.git_disabled/objects/48/3ba7ebd0dd92219fd5d68a7c48051231159ff3 and /dev/null differ diff --git a/project/.git_disabled/objects/4b/23ffda06d9299bfd136a1115158216d19a9dee b/project/.git_disabled/objects/4b/23ffda06d9299bfd136a1115158216d19a9dee deleted file mode 100644 index 9ee7e54..0000000 Binary files a/project/.git_disabled/objects/4b/23ffda06d9299bfd136a1115158216d19a9dee and /dev/null differ diff --git a/project/.git_disabled/objects/4e/ecf2bbe122cb54108063a78841731877438af2 b/project/.git_disabled/objects/4e/ecf2bbe122cb54108063a78841731877438af2 deleted file mode 100644 index 6a4d1f3..0000000 Binary files a/project/.git_disabled/objects/4e/ecf2bbe122cb54108063a78841731877438af2 and /dev/null differ diff --git a/project/.git_disabled/objects/4f/3f7173b383e385a857dd12b86cfbbfd93ac7a7 b/project/.git_disabled/objects/4f/3f7173b383e385a857dd12b86cfbbfd93ac7a7 deleted file mode 100644 index fd50dcb..0000000 Binary files a/project/.git_disabled/objects/4f/3f7173b383e385a857dd12b86cfbbfd93ac7a7 and /dev/null differ diff --git a/project/.git_disabled/objects/4f/56a32d7d5b29507380ea7538ed2b1e81682840 b/project/.git_disabled/objects/4f/56a32d7d5b29507380ea7538ed2b1e81682840 deleted file mode 100644 index 4ccdccc..0000000 Binary files a/project/.git_disabled/objects/4f/56a32d7d5b29507380ea7538ed2b1e81682840 and /dev/null differ diff --git a/project/.git_disabled/objects/52/d8a1d0c182f38c71b95027a911c57fad77534a b/project/.git_disabled/objects/52/d8a1d0c182f38c71b95027a911c57fad77534a deleted file mode 100644 index 31b5601..0000000 Binary files a/project/.git_disabled/objects/52/d8a1d0c182f38c71b95027a911c57fad77534a and /dev/null differ diff --git a/project/.git_disabled/objects/53/08cb61d1624204c36af92a7ec04d1f7ac6caac b/project/.git_disabled/objects/53/08cb61d1624204c36af92a7ec04d1f7ac6caac deleted file mode 100644 index 6d6275d..0000000 --- a/project/.git_disabled/objects/53/08cb61d1624204c36af92a7ec04d1f7ac6caac +++ /dev/null @@ -1,3 +0,0 @@ -xK -0@] o3 ZS-<uN{N6yٓrLYyȭx `h. -)&MX"*8w}_O>t}9d6\bLqƨS@h/D6 \ No newline at end of file diff --git a/project/.git_disabled/objects/53/635cf234b122cf1abbd36636611572e9002e7a b/project/.git_disabled/objects/53/635cf234b122cf1abbd36636611572e9002e7a deleted file mode 100644 index 1867b6d..0000000 Binary files a/project/.git_disabled/objects/53/635cf234b122cf1abbd36636611572e9002e7a and /dev/null differ diff --git a/project/.git_disabled/objects/53/64cae7afd5c8cd90a633f63b1b7d60a002786a b/project/.git_disabled/objects/53/64cae7afd5c8cd90a633f63b1b7d60a002786a deleted file mode 100644 index 4e4feed..0000000 Binary files a/project/.git_disabled/objects/53/64cae7afd5c8cd90a633f63b1b7d60a002786a and /dev/null differ diff --git a/project/.git_disabled/objects/54/18b71424f15c6cdd7cf6a5a600ad4d680ce61a b/project/.git_disabled/objects/54/18b71424f15c6cdd7cf6a5a600ad4d680ce61a deleted file mode 100644 index bf8eba6..0000000 Binary files a/project/.git_disabled/objects/54/18b71424f15c6cdd7cf6a5a600ad4d680ce61a and /dev/null differ diff --git a/project/.git_disabled/objects/56/3275c22e2a44ab504059ea8ddc0dbfd1205cd0 b/project/.git_disabled/objects/56/3275c22e2a44ab504059ea8ddc0dbfd1205cd0 deleted file mode 100644 index 6867fa5..0000000 Binary files a/project/.git_disabled/objects/56/3275c22e2a44ab504059ea8ddc0dbfd1205cd0 and /dev/null differ diff --git a/project/.git_disabled/objects/56/3a66fa267f050cad0c400ee061f427a6c7605a b/project/.git_disabled/objects/56/3a66fa267f050cad0c400ee061f427a6c7605a deleted file mode 100644 index dc19e32..0000000 Binary files a/project/.git_disabled/objects/56/3a66fa267f050cad0c400ee061f427a6c7605a and /dev/null differ diff --git a/project/.git_disabled/objects/57/d22e9ac5e7d1e47431389a24b644ea2dad3fdd b/project/.git_disabled/objects/57/d22e9ac5e7d1e47431389a24b644ea2dad3fdd deleted file mode 100644 index f3ba5d8..0000000 Binary files a/project/.git_disabled/objects/57/d22e9ac5e7d1e47431389a24b644ea2dad3fdd and /dev/null differ diff --git a/project/.git_disabled/objects/5a/0e466738df771bf28c877d4061f7414d166417 b/project/.git_disabled/objects/5a/0e466738df771bf28c877d4061f7414d166417 deleted file mode 100644 index 2f167b0..0000000 Binary files a/project/.git_disabled/objects/5a/0e466738df771bf28c877d4061f7414d166417 and /dev/null differ diff --git a/project/.git_disabled/objects/5d/0cfdef478da816595a7f8379f202a27c4165fb b/project/.git_disabled/objects/5d/0cfdef478da816595a7f8379f202a27c4165fb deleted file mode 100644 index 16955c7..0000000 --- a/project/.git_disabled/objects/5d/0cfdef478da816595a7f8379f202a27c4165fb +++ /dev/null @@ -1 +0,0 @@ -x 1@aϩ"wA,؀E$\If]˻=4ڟx ʄOFXA6e$yٙI\p-5#Xt-B"C>2 y̾׼I]jmY?㿟h}S|OE \ No newline at end of file diff --git a/project/.git_disabled/objects/5d/583cb120323273d8f8b1457b9bbeefd01f2b63 b/project/.git_disabled/objects/5d/583cb120323273d8f8b1457b9bbeefd01f2b63 deleted file mode 100644 index e0e4a5c..0000000 Binary files a/project/.git_disabled/objects/5d/583cb120323273d8f8b1457b9bbeefd01f2b63 and /dev/null differ diff --git a/project/.git_disabled/objects/5e/36703bffa22e619c253b5e25399882750ff505 b/project/.git_disabled/objects/5e/36703bffa22e619c253b5e25399882750ff505 deleted file mode 100644 index 6404222..0000000 Binary files a/project/.git_disabled/objects/5e/36703bffa22e619c253b5e25399882750ff505 and /dev/null differ diff --git a/project/.git_disabled/objects/5e/4f7cb2f76ef5492540c60867eb86fae557e0ab b/project/.git_disabled/objects/5e/4f7cb2f76ef5492540c60867eb86fae557e0ab deleted file mode 100644 index fd37c2b..0000000 Binary files a/project/.git_disabled/objects/5e/4f7cb2f76ef5492540c60867eb86fae557e0ab and /dev/null differ diff --git a/project/.git_disabled/objects/60/643ef4a8770eee550cdeb81b5fa40eef61cb17 b/project/.git_disabled/objects/60/643ef4a8770eee550cdeb81b5fa40eef61cb17 deleted file mode 100644 index bf88c33..0000000 Binary files a/project/.git_disabled/objects/60/643ef4a8770eee550cdeb81b5fa40eef61cb17 and /dev/null differ diff --git a/project/.git_disabled/objects/61/81eeeb0161de3e5bd640641d3ae999a7e99608 b/project/.git_disabled/objects/61/81eeeb0161de3e5bd640641d3ae999a7e99608 deleted file mode 100644 index 76003b3..0000000 Binary files a/project/.git_disabled/objects/61/81eeeb0161de3e5bd640641d3ae999a7e99608 and /dev/null differ diff --git a/project/.git_disabled/objects/63/3e369d83b85a1ceb4de0903ac3efa1c9f90f2a b/project/.git_disabled/objects/63/3e369d83b85a1ceb4de0903ac3efa1c9f90f2a deleted file mode 100644 index 6f40a9b..0000000 Binary files a/project/.git_disabled/objects/63/3e369d83b85a1ceb4de0903ac3efa1c9f90f2a and /dev/null differ diff --git a/project/.git_disabled/objects/64/31b79510c6b090e799173b4fd5c8290c2f69bc b/project/.git_disabled/objects/64/31b79510c6b090e799173b4fd5c8290c2f69bc deleted file mode 100644 index ce2fc43..0000000 Binary files a/project/.git_disabled/objects/64/31b79510c6b090e799173b4fd5c8290c2f69bc and /dev/null differ diff --git a/project/.git_disabled/objects/66/b88a2e212b1df685522673d09c9a21c41ec92c b/project/.git_disabled/objects/66/b88a2e212b1df685522673d09c9a21c41ec92c deleted file mode 100644 index f072ba5..0000000 Binary files a/project/.git_disabled/objects/66/b88a2e212b1df685522673d09c9a21c41ec92c and /dev/null differ diff --git a/project/.git_disabled/objects/67/5d0e41dc652dd00c3f1276fe3133155663f869 b/project/.git_disabled/objects/67/5d0e41dc652dd00c3f1276fe3133155663f869 deleted file mode 100644 index 53770ab..0000000 Binary files a/project/.git_disabled/objects/67/5d0e41dc652dd00c3f1276fe3133155663f869 and /dev/null differ diff --git a/project/.git_disabled/objects/67/a69bdfd351bd409a3a09515bc37cabc849b685 b/project/.git_disabled/objects/67/a69bdfd351bd409a3a09515bc37cabc849b685 deleted file mode 100644 index df6c0be..0000000 Binary files a/project/.git_disabled/objects/67/a69bdfd351bd409a3a09515bc37cabc849b685 and /dev/null differ diff --git a/project/.git_disabled/objects/6b/6787dcd124b08cbe754dca375d4780fe93829d b/project/.git_disabled/objects/6b/6787dcd124b08cbe754dca375d4780fe93829d deleted file mode 100644 index c630c97..0000000 Binary files a/project/.git_disabled/objects/6b/6787dcd124b08cbe754dca375d4780fe93829d and /dev/null differ diff --git a/project/.git_disabled/objects/6d/3410be9c7010e7ba1c25d79028db3c9f2fa5f0 b/project/.git_disabled/objects/6d/3410be9c7010e7ba1c25d79028db3c9f2fa5f0 deleted file mode 100644 index ca415ed..0000000 Binary files a/project/.git_disabled/objects/6d/3410be9c7010e7ba1c25d79028db3c9f2fa5f0 and /dev/null differ diff --git a/project/.git_disabled/objects/6e/bd2527cdce2b15bd6cc270a499f9d52ffa9af5 b/project/.git_disabled/objects/6e/bd2527cdce2b15bd6cc270a499f9d52ffa9af5 deleted file mode 100644 index a462acb..0000000 --- a/project/.git_disabled/objects/6e/bd2527cdce2b15bd6cc270a499f9d52ffa9af5 +++ /dev/null @@ -1,2 +0,0 @@ -xM -0@a9EL&/!& m#< ܼuE:y!R*ylE^& @*b5.XrHx hy]?HD_o |}9d۸i]4>& N_>B \ No newline at end of file diff --git a/project/.git_disabled/objects/6f/ddb9b73aa728fcbed47d4700059f7f994eea64 b/project/.git_disabled/objects/6f/ddb9b73aa728fcbed47d4700059f7f994eea64 deleted file mode 100644 index cd68f21..0000000 Binary files a/project/.git_disabled/objects/6f/ddb9b73aa728fcbed47d4700059f7f994eea64 and /dev/null differ diff --git a/project/.git_disabled/objects/70/78380060fd2f66b1f7df9d3e0b8cd2bd1f5764 b/project/.git_disabled/objects/70/78380060fd2f66b1f7df9d3e0b8cd2bd1f5764 deleted file mode 100644 index 40b4cd3..0000000 Binary files a/project/.git_disabled/objects/70/78380060fd2f66b1f7df9d3e0b8cd2bd1f5764 and /dev/null differ diff --git a/project/.git_disabled/objects/71/cfb0fd474f2eac7fd983944c0dc3e97001dee1 b/project/.git_disabled/objects/71/cfb0fd474f2eac7fd983944c0dc3e97001dee1 deleted file mode 100644 index 47112ed..0000000 Binary files a/project/.git_disabled/objects/71/cfb0fd474f2eac7fd983944c0dc3e97001dee1 and /dev/null differ diff --git a/project/.git_disabled/objects/77/3a9fd182a19dcee76d0fbd38c77130512c6789 b/project/.git_disabled/objects/77/3a9fd182a19dcee76d0fbd38c77130512c6789 deleted file mode 100644 index 6d6c457..0000000 Binary files a/project/.git_disabled/objects/77/3a9fd182a19dcee76d0fbd38c77130512c6789 and /dev/null differ diff --git a/project/.git_disabled/objects/77/4ed9cdaf05d0ef484fe96b619b563c72f69b65 b/project/.git_disabled/objects/77/4ed9cdaf05d0ef484fe96b619b563c72f69b65 deleted file mode 100644 index af50ca5..0000000 Binary files a/project/.git_disabled/objects/77/4ed9cdaf05d0ef484fe96b619b563c72f69b65 and /dev/null differ diff --git a/project/.git_disabled/objects/7b/be5062e9bb89ec7f2d1dabd54974f02e9b3be4 b/project/.git_disabled/objects/7b/be5062e9bb89ec7f2d1dabd54974f02e9b3be4 deleted file mode 100644 index 9d31042..0000000 Binary files a/project/.git_disabled/objects/7b/be5062e9bb89ec7f2d1dabd54974f02e9b3be4 and /dev/null differ diff --git a/project/.git_disabled/objects/7b/e9fc3722215175a1ca19a7907681291f2ebbe9 b/project/.git_disabled/objects/7b/e9fc3722215175a1ca19a7907681291f2ebbe9 deleted file mode 100644 index 1dfdffb..0000000 --- a/project/.git_disabled/objects/7b/e9fc3722215175a1ca19a7907681291f2ebbe9 +++ /dev/null @@ -1,2 +0,0 @@ -xK -0FaYEܼo@ 4H˷'gɭeHil“טd y֦xbT10LPNӆCȈ%KHb ֗Pi϶GC^'\z[WIlPwLHNԶA.C \ No newline at end of file diff --git a/project/.git_disabled/objects/7c/12aefe3047ef4f821042cbd864c09426ac8f7a b/project/.git_disabled/objects/7c/12aefe3047ef4f821042cbd864c09426ac8f7a deleted file mode 100644 index a9660a7..0000000 Binary files a/project/.git_disabled/objects/7c/12aefe3047ef4f821042cbd864c09426ac8f7a and /dev/null differ diff --git a/project/.git_disabled/objects/7f/1b905d0e9147e236fee0e24cc1188bfe8b720e b/project/.git_disabled/objects/7f/1b905d0e9147e236fee0e24cc1188bfe8b720e deleted file mode 100644 index 0639667..0000000 Binary files a/project/.git_disabled/objects/7f/1b905d0e9147e236fee0e24cc1188bfe8b720e and /dev/null differ diff --git a/project/.git_disabled/objects/80/ffcb4d56bc010c94425214ebab7bc39a969f55 b/project/.git_disabled/objects/80/ffcb4d56bc010c94425214ebab7bc39a969f55 deleted file mode 100644 index 2da603e..0000000 Binary files a/project/.git_disabled/objects/80/ffcb4d56bc010c94425214ebab7bc39a969f55 and /dev/null differ diff --git a/project/.git_disabled/objects/81/036a412fcfbba8372f7a419b7633081788070c b/project/.git_disabled/objects/81/036a412fcfbba8372f7a419b7633081788070c deleted file mode 100644 index f3c441e..0000000 Binary files a/project/.git_disabled/objects/81/036a412fcfbba8372f7a419b7633081788070c and /dev/null differ diff --git a/project/.git_disabled/objects/81/9ff33f58502cc32f471ee2182c89afa1bee690 b/project/.git_disabled/objects/81/9ff33f58502cc32f471ee2182c89afa1bee690 deleted file mode 100644 index 2a17353..0000000 Binary files a/project/.git_disabled/objects/81/9ff33f58502cc32f471ee2182c89afa1bee690 and /dev/null differ diff --git a/project/.git_disabled/objects/81/a7a712331a57287829b87d2caeec0bab649d0c b/project/.git_disabled/objects/81/a7a712331a57287829b87d2caeec0bab649d0c deleted file mode 100644 index 18033e0..0000000 --- a/project/.git_disabled/objects/81/a7a712331a57287829b87d2caeec0bab649d0c +++ /dev/null @@ -1,3 +0,0 @@ -xSn@_1] h"o$}S -)#D{UCL9geK'vSEՓlq2sFb2vEuWI J JlJMm=-v$ i>>, D^VH2IU]^mzfj) p1CsqRZ(gKjw4y İo7w8)2ʦEoUf$A3rn<njEMNlIZY[V=DI+5y #P+P!Y{jLjˆ6#xT[ C}C=9>T27 H,B5?=E (ogH+Np( 9mYU+U|>^p} RKM/;7`+RHq6\HloBl9ċx-aqe WOU!]Wrކ{Tuqt;u {ZZZ!߅X}95Ih hetUգ \ No newline at end of file diff --git a/project/.git_disabled/objects/9e/617af2850975276c1dca90f1c9a27ebdf81093 b/project/.git_disabled/objects/9e/617af2850975276c1dca90f1c9a27ebdf81093 deleted file mode 100644 index 21476e3..0000000 Binary files a/project/.git_disabled/objects/9e/617af2850975276c1dca90f1c9a27ebdf81093 and /dev/null differ diff --git a/project/.git_disabled/objects/9e/b5a5df0052086c2f844a4d62ca4bbbc8de9955 b/project/.git_disabled/objects/9e/b5a5df0052086c2f844a4d62ca4bbbc8de9955 deleted file mode 100644 index f0bc396..0000000 Binary files a/project/.git_disabled/objects/9e/b5a5df0052086c2f844a4d62ca4bbbc8de9955 and /dev/null differ diff --git a/project/.git_disabled/objects/9f/add0398552242f6e69e3d55805db7eaff17e58 b/project/.git_disabled/objects/9f/add0398552242f6e69e3d55805db7eaff17e58 deleted file mode 100644 index 89ed26d..0000000 Binary files a/project/.git_disabled/objects/9f/add0398552242f6e69e3d55805db7eaff17e58 and /dev/null differ diff --git a/project/.git_disabled/objects/a0/c8b72648677c3915acfdddd7aca0bb6a26fb04 b/project/.git_disabled/objects/a0/c8b72648677c3915acfdddd7aca0bb6a26fb04 deleted file mode 100644 index 0b3159d..0000000 Binary files a/project/.git_disabled/objects/a0/c8b72648677c3915acfdddd7aca0bb6a26fb04 and /dev/null differ diff --git a/project/.git_disabled/objects/a1/4fccc209d999439c04aee9ab45ffd3ff2c1a2a b/project/.git_disabled/objects/a1/4fccc209d999439c04aee9ab45ffd3ff2c1a2a deleted file mode 100644 index 537365c..0000000 Binary files a/project/.git_disabled/objects/a1/4fccc209d999439c04aee9ab45ffd3ff2c1a2a and /dev/null differ diff --git a/project/.git_disabled/objects/a2/846ae74c028b3af2d63b7fd41d5b0457c295a3 b/project/.git_disabled/objects/a2/846ae74c028b3af2d63b7fd41d5b0457c295a3 deleted file mode 100644 index c175840..0000000 Binary files a/project/.git_disabled/objects/a2/846ae74c028b3af2d63b7fd41d5b0457c295a3 and /dev/null differ diff --git a/project/.git_disabled/objects/a3/359637e67b2a43527dfdf35051ebd580e945cb b/project/.git_disabled/objects/a3/359637e67b2a43527dfdf35051ebd580e945cb deleted file mode 100644 index 5811828..0000000 Binary files a/project/.git_disabled/objects/a3/359637e67b2a43527dfdf35051ebd580e945cb and /dev/null differ diff --git a/project/.git_disabled/objects/a4/003ae8980aa451893c3c30254696cc707e9612 b/project/.git_disabled/objects/a4/003ae8980aa451893c3c30254696cc707e9612 deleted file mode 100644 index 802a3e5..0000000 Binary files a/project/.git_disabled/objects/a4/003ae8980aa451893c3c30254696cc707e9612 and /dev/null differ diff --git a/project/.git_disabled/objects/a4/751a95c9e121afe4ff6f330b0f54e5c78e6f2d b/project/.git_disabled/objects/a4/751a95c9e121afe4ff6f330b0f54e5c78e6f2d deleted file mode 100644 index fbbe70f..0000000 Binary files a/project/.git_disabled/objects/a4/751a95c9e121afe4ff6f330b0f54e5c78e6f2d and /dev/null differ diff --git a/project/.git_disabled/objects/a5/47bf36d8d11a4f89c59c144f24795749086dd1 b/project/.git_disabled/objects/a5/47bf36d8d11a4f89c59c144f24795749086dd1 deleted file mode 100644 index acadfb2..0000000 Binary files a/project/.git_disabled/objects/a5/47bf36d8d11a4f89c59c144f24795749086dd1 and /dev/null differ diff --git a/project/.git_disabled/objects/a6/26f254fcb5e8bd017768d61c7d5456c0343b6a b/project/.git_disabled/objects/a6/26f254fcb5e8bd017768d61c7d5456c0343b6a deleted file mode 100644 index 27f9ab4..0000000 Binary files a/project/.git_disabled/objects/a6/26f254fcb5e8bd017768d61c7d5456c0343b6a and /dev/null differ diff --git a/project/.git_disabled/objects/a9/a719a6a64830aae5e1b4e588bccd0b84144d65 b/project/.git_disabled/objects/a9/a719a6a64830aae5e1b4e588bccd0b84144d65 deleted file mode 100644 index 804e4eb..0000000 Binary files a/project/.git_disabled/objects/a9/a719a6a64830aae5e1b4e588bccd0b84144d65 and /dev/null differ diff --git a/project/.git_disabled/objects/ad/b9870dfbc9da4ace55cd4d86a80305ffc282b0 b/project/.git_disabled/objects/ad/b9870dfbc9da4ace55cd4d86a80305ffc282b0 deleted file mode 100644 index feefcc0..0000000 Binary files a/project/.git_disabled/objects/ad/b9870dfbc9da4ace55cd4d86a80305ffc282b0 and /dev/null differ diff --git a/project/.git_disabled/objects/b0/adc7efd76a6377e079418dfcb8c72a23431cbe b/project/.git_disabled/objects/b0/adc7efd76a6377e079418dfcb8c72a23431cbe deleted file mode 100644 index 20073db..0000000 Binary files a/project/.git_disabled/objects/b0/adc7efd76a6377e079418dfcb8c72a23431cbe and /dev/null differ diff --git a/project/.git_disabled/objects/b0/e2109b25d8075179631b8e8482815940ddcc51 b/project/.git_disabled/objects/b0/e2109b25d8075179631b8e8482815940ddcc51 deleted file mode 100644 index da0df90..0000000 Binary files a/project/.git_disabled/objects/b0/e2109b25d8075179631b8e8482815940ddcc51 and /dev/null differ diff --git a/project/.git_disabled/objects/b2/9eae97ff3862f9fd4e0eaab6b366b8253f9f6f b/project/.git_disabled/objects/b2/9eae97ff3862f9fd4e0eaab6b366b8253f9f6f deleted file mode 100644 index 75c5b39..0000000 Binary files a/project/.git_disabled/objects/b2/9eae97ff3862f9fd4e0eaab6b366b8253f9f6f and /dev/null differ diff --git a/project/.git_disabled/objects/b2/d540e0790a850cb385b1e81d5a89ddd88927db b/project/.git_disabled/objects/b2/d540e0790a850cb385b1e81d5a89ddd88927db deleted file mode 100644 index b9674d1..0000000 Binary files a/project/.git_disabled/objects/b2/d540e0790a850cb385b1e81d5a89ddd88927db and /dev/null differ diff --git a/project/.git_disabled/objects/b3/b94da1f480f6a330758f6d40411fde31377340 b/project/.git_disabled/objects/b3/b94da1f480f6a330758f6d40411fde31377340 deleted file mode 100644 index fc1deb7..0000000 Binary files a/project/.git_disabled/objects/b3/b94da1f480f6a330758f6d40411fde31377340 and /dev/null differ diff --git a/project/.git_disabled/objects/b4/89b14e31fbc6d2cb2b824831651c13572d1320 b/project/.git_disabled/objects/b4/89b14e31fbc6d2cb2b824831651c13572d1320 deleted file mode 100644 index 5b5c2e8..0000000 --- a/project/.git_disabled/objects/b4/89b14e31fbc6d2cb2b824831651c13572d1320 +++ /dev/null @@ -1 +0,0 @@ -x+)JMU064e040031Qp,(+)`JVʳǁAeL @! y_ބH:1!ZA}lr~nA~^j^I1CAC_ϵW><jKf^Jj^rq1c2S6.󻕠r3n~e=7;vjf>?JRK?orQ:_{^8cFT`9a?5KΛ`C%{#JK2se5p-mv7#Ԍ̒TԼ2A&rBoRw_g \ No newline at end of file diff --git a/project/.git_disabled/objects/b4/eee0fb31e438fb4965950fb8366f28d5c57207 b/project/.git_disabled/objects/b4/eee0fb31e438fb4965950fb8366f28d5c57207 deleted file mode 100644 index dde9ee8..0000000 Binary files a/project/.git_disabled/objects/b4/eee0fb31e438fb4965950fb8366f28d5c57207 and /dev/null differ diff --git a/project/.git_disabled/objects/b5/3fe37af1ea9109ceb3639a23f61f388e37ee0d b/project/.git_disabled/objects/b5/3fe37af1ea9109ceb3639a23f61f388e37ee0d deleted file mode 100644 index 22f21a4..0000000 Binary files a/project/.git_disabled/objects/b5/3fe37af1ea9109ceb3639a23f61f388e37ee0d and /dev/null differ diff --git a/project/.git_disabled/objects/b5/c54b11ade52984481ebd13ffe4e4f954fd9e61 b/project/.git_disabled/objects/b5/c54b11ade52984481ebd13ffe4e4f954fd9e61 deleted file mode 100644 index 6be8afa..0000000 Binary files a/project/.git_disabled/objects/b5/c54b11ade52984481ebd13ffe4e4f954fd9e61 and /dev/null differ diff --git a/project/.git_disabled/objects/b5/c61c956711f981a41e95f7fcf0038436cfbb22 b/project/.git_disabled/objects/b5/c61c956711f981a41e95f7fcf0038436cfbb22 deleted file mode 100644 index 2d717ea..0000000 Binary files a/project/.git_disabled/objects/b5/c61c956711f981a41e95f7fcf0038436cfbb22 and /dev/null differ diff --git a/project/.git_disabled/objects/b7/d6c4d32e4629dcdabadc6a830091af62c3a7fc b/project/.git_disabled/objects/b7/d6c4d32e4629dcdabadc6a830091af62c3a7fc deleted file mode 100644 index 7ddda1c..0000000 Binary files a/project/.git_disabled/objects/b7/d6c4d32e4629dcdabadc6a830091af62c3a7fc and /dev/null differ diff --git a/project/.git_disabled/objects/ba/16969816de7663935649ffc51681767e27c032 b/project/.git_disabled/objects/ba/16969816de7663935649ffc51681767e27c032 deleted file mode 100644 index b9ab9cc..0000000 Binary files a/project/.git_disabled/objects/ba/16969816de7663935649ffc51681767e27c032 and /dev/null differ diff --git a/project/.git_disabled/objects/ba/55b19e5ef8ce2275f246e8c66f09a7739aecfa b/project/.git_disabled/objects/ba/55b19e5ef8ce2275f246e8c66f09a7739aecfa deleted file mode 100644 index 9e9cd56..0000000 Binary files a/project/.git_disabled/objects/ba/55b19e5ef8ce2275f246e8c66f09a7739aecfa and /dev/null differ diff --git a/project/.git_disabled/objects/bc/c94668f2ce3e40696be620b5bb981c81b94e97 b/project/.git_disabled/objects/bc/c94668f2ce3e40696be620b5bb981c81b94e97 deleted file mode 100644 index 96ff2e8..0000000 Binary files a/project/.git_disabled/objects/bc/c94668f2ce3e40696be620b5bb981c81b94e97 and /dev/null differ diff --git a/project/.git_disabled/objects/be/bac89496a3f6dd1ab7c4a3d4cb6e0f5cbd343a b/project/.git_disabled/objects/be/bac89496a3f6dd1ab7c4a3d4cb6e0f5cbd343a deleted file mode 100644 index 94dc175..0000000 Binary files a/project/.git_disabled/objects/be/bac89496a3f6dd1ab7c4a3d4cb6e0f5cbd343a and /dev/null differ diff --git a/project/.git_disabled/objects/be/d33f625c78e83df9d0f90dfd09db67b721a4c6 b/project/.git_disabled/objects/be/d33f625c78e83df9d0f90dfd09db67b721a4c6 deleted file mode 100644 index 8c94ab7..0000000 Binary files a/project/.git_disabled/objects/be/d33f625c78e83df9d0f90dfd09db67b721a4c6 and /dev/null differ diff --git a/project/.git_disabled/objects/bf/0f362ab7eb0fe1ce44afabfce3f0ca3bceb5e5 b/project/.git_disabled/objects/bf/0f362ab7eb0fe1ce44afabfce3f0ca3bceb5e5 deleted file mode 100644 index 4ad58d8..0000000 Binary files a/project/.git_disabled/objects/bf/0f362ab7eb0fe1ce44afabfce3f0ca3bceb5e5 and /dev/null differ diff --git a/project/.git_disabled/objects/bf/38357c74ec9071af91e31701f9bb37265f40ca b/project/.git_disabled/objects/bf/38357c74ec9071af91e31701f9bb37265f40ca deleted file mode 100644 index b9127b1..0000000 Binary files a/project/.git_disabled/objects/bf/38357c74ec9071af91e31701f9bb37265f40ca and /dev/null differ diff --git a/project/.git_disabled/objects/bf/f8c370e531596abd134fa788c4a94cbb976398 b/project/.git_disabled/objects/bf/f8c370e531596abd134fa788c4a94cbb976398 deleted file mode 100644 index 3967a32..0000000 Binary files a/project/.git_disabled/objects/bf/f8c370e531596abd134fa788c4a94cbb976398 and /dev/null differ diff --git a/project/.git_disabled/objects/c1/02821778a4fc2b06e4e9c4e5266e02507f6c81 b/project/.git_disabled/objects/c1/02821778a4fc2b06e4e9c4e5266e02507f6c81 deleted file mode 100644 index e748482..0000000 Binary files a/project/.git_disabled/objects/c1/02821778a4fc2b06e4e9c4e5266e02507f6c81 and /dev/null differ diff --git a/project/.git_disabled/objects/c2/9b15cd0bf4be414a63b0f01d51fa4ecd5a15e4 b/project/.git_disabled/objects/c2/9b15cd0bf4be414a63b0f01d51fa4ecd5a15e4 deleted file mode 100644 index 6d90fc5..0000000 --- a/project/.git_disabled/objects/c2/9b15cd0bf4be414a63b0f01d51fa4ecd5a15e4 +++ /dev/null @@ -1,3 +0,0 @@ -xA -0E] DHF)x|7pW=~2eNV -C^/9c*y ZI%w|$HH9R8Pa1qW#r}KS]͒B9zfl>h D@ \ No newline at end of file diff --git a/project/.git_disabled/objects/c3/d0d185cfb2f49bfcbe62b72c69bab7d03e92c3 b/project/.git_disabled/objects/c3/d0d185cfb2f49bfcbe62b72c69bab7d03e92c3 deleted file mode 100644 index 2715b42..0000000 Binary files a/project/.git_disabled/objects/c3/d0d185cfb2f49bfcbe62b72c69bab7d03e92c3 and /dev/null differ diff --git a/project/.git_disabled/objects/c4/49095724c50aa2b14617f7c73b0380b0a92220 b/project/.git_disabled/objects/c4/49095724c50aa2b14617f7c73b0380b0a92220 deleted file mode 100644 index ad6e1df..0000000 Binary files a/project/.git_disabled/objects/c4/49095724c50aa2b14617f7c73b0380b0a92220 and /dev/null differ diff --git a/project/.git_disabled/objects/c4/64e59be78fd65a3f17cf89dbf60063c57b650e b/project/.git_disabled/objects/c4/64e59be78fd65a3f17cf89dbf60063c57b650e deleted file mode 100644 index 901b415..0000000 Binary files a/project/.git_disabled/objects/c4/64e59be78fd65a3f17cf89dbf60063c57b650e and /dev/null differ diff --git a/project/.git_disabled/objects/c4/7456dee26fde2b6cf54aae215915a9f04c3756 b/project/.git_disabled/objects/c4/7456dee26fde2b6cf54aae215915a9f04c3756 deleted file mode 100644 index 4c5f7c5..0000000 Binary files a/project/.git_disabled/objects/c4/7456dee26fde2b6cf54aae215915a9f04c3756 and /dev/null differ diff --git a/project/.git_disabled/objects/c8/a9d4f30756d696694d5f417de959b296a91b1f b/project/.git_disabled/objects/c8/a9d4f30756d696694d5f417de959b296a91b1f deleted file mode 100644 index 5a37b72..0000000 Binary files a/project/.git_disabled/objects/c8/a9d4f30756d696694d5f417de959b296a91b1f and /dev/null differ diff --git a/project/.git_disabled/objects/c9/cb2438220ac47eb7e0fe477d30f1470ca72549 b/project/.git_disabled/objects/c9/cb2438220ac47eb7e0fe477d30f1470ca72549 deleted file mode 100644 index dd358d9..0000000 Binary files a/project/.git_disabled/objects/c9/cb2438220ac47eb7e0fe477d30f1470ca72549 and /dev/null differ diff --git a/project/.git_disabled/objects/c9/ee4596524a279f7fb058a7ae3917f7edfb121f b/project/.git_disabled/objects/c9/ee4596524a279f7fb058a7ae3917f7edfb121f deleted file mode 100644 index 1e1ce7a..0000000 Binary files a/project/.git_disabled/objects/c9/ee4596524a279f7fb058a7ae3917f7edfb121f and /dev/null differ diff --git a/project/.git_disabled/objects/cc/782936676ee9d8e87c7e1e352dca4433a8a2f6 b/project/.git_disabled/objects/cc/782936676ee9d8e87c7e1e352dca4433a8a2f6 deleted file mode 100644 index 8dbc2d1..0000000 Binary files a/project/.git_disabled/objects/cc/782936676ee9d8e87c7e1e352dca4433a8a2f6 and /dev/null differ diff --git a/project/.git_disabled/objects/cd/ab7ca9fe26a45c3526c87cbb63de189efa8fbc b/project/.git_disabled/objects/cd/ab7ca9fe26a45c3526c87cbb63de189efa8fbc deleted file mode 100644 index 54ae218..0000000 Binary files a/project/.git_disabled/objects/cd/ab7ca9fe26a45c3526c87cbb63de189efa8fbc and /dev/null differ diff --git a/project/.git_disabled/objects/d0/0925a62e4e73eda639da9581b11b6fb167856c b/project/.git_disabled/objects/d0/0925a62e4e73eda639da9581b11b6fb167856c deleted file mode 100644 index 354d333..0000000 Binary files a/project/.git_disabled/objects/d0/0925a62e4e73eda639da9581b11b6fb167856c and /dev/null differ diff --git a/project/.git_disabled/objects/d0/c0a8ff5c5a4b33197a6470eab7d3411c179c61 b/project/.git_disabled/objects/d0/c0a8ff5c5a4b33197a6470eab7d3411c179c61 deleted file mode 100644 index ea7d2b4..0000000 Binary files a/project/.git_disabled/objects/d0/c0a8ff5c5a4b33197a6470eab7d3411c179c61 and /dev/null differ diff --git a/project/.git_disabled/objects/d2/dc9d4ddf66aad4668c61419d119dd5ea8a3f4a b/project/.git_disabled/objects/d2/dc9d4ddf66aad4668c61419d119dd5ea8a3f4a deleted file mode 100644 index fdcbd12..0000000 Binary files a/project/.git_disabled/objects/d2/dc9d4ddf66aad4668c61419d119dd5ea8a3f4a and /dev/null differ diff --git a/project/.git_disabled/objects/d5/2f6431eafdaac9434a1488e98c4b16ff9e9b7c b/project/.git_disabled/objects/d5/2f6431eafdaac9434a1488e98c4b16ff9e9b7c deleted file mode 100644 index 5d34b6e..0000000 Binary files a/project/.git_disabled/objects/d5/2f6431eafdaac9434a1488e98c4b16ff9e9b7c and /dev/null differ diff --git a/project/.git_disabled/objects/d6/2d21a3c2b3220c7d47210b2d45cfb5197de0e7 b/project/.git_disabled/objects/d6/2d21a3c2b3220c7d47210b2d45cfb5197de0e7 deleted file mode 100644 index d447571..0000000 Binary files a/project/.git_disabled/objects/d6/2d21a3c2b3220c7d47210b2d45cfb5197de0e7 and /dev/null differ diff --git a/project/.git_disabled/objects/d6/518329b7eba9e029ad9a7695c6aec1214ff77e b/project/.git_disabled/objects/d6/518329b7eba9e029ad9a7695c6aec1214ff77e deleted file mode 100644 index 0ed2666..0000000 Binary files a/project/.git_disabled/objects/d6/518329b7eba9e029ad9a7695c6aec1214ff77e and /dev/null differ diff --git a/project/.git_disabled/objects/d6/bd4d00abf814e0e4e3eccaa3a5f3ea53d612ab b/project/.git_disabled/objects/d6/bd4d00abf814e0e4e3eccaa3a5f3ea53d612ab deleted file mode 100644 index 3110815..0000000 Binary files a/project/.git_disabled/objects/d6/bd4d00abf814e0e4e3eccaa3a5f3ea53d612ab and /dev/null differ diff --git a/project/.git_disabled/objects/d9/549061be9bb96d845452c4170e3b6c167d58f7 b/project/.git_disabled/objects/d9/549061be9bb96d845452c4170e3b6c167d58f7 deleted file mode 100644 index 866db50..0000000 Binary files a/project/.git_disabled/objects/d9/549061be9bb96d845452c4170e3b6c167d58f7 and /dev/null differ diff --git a/project/.git_disabled/objects/da/45bd51441b91df70f8d49e3f2899c770489625 b/project/.git_disabled/objects/da/45bd51441b91df70f8d49e3f2899c770489625 deleted file mode 100644 index f4da2bc..0000000 Binary files a/project/.git_disabled/objects/da/45bd51441b91df70f8d49e3f2899c770489625 and /dev/null differ diff --git a/project/.git_disabled/objects/dc/ed12795a91967440a9a96d9c420bc78ac4a142 b/project/.git_disabled/objects/dc/ed12795a91967440a9a96d9c420bc78ac4a142 deleted file mode 100644 index 5fc2c50..0000000 Binary files a/project/.git_disabled/objects/dc/ed12795a91967440a9a96d9c420bc78ac4a142 and /dev/null differ diff --git a/project/.git_disabled/objects/df/2e11f600834970a66693513a39dff330375d1b b/project/.git_disabled/objects/df/2e11f600834970a66693513a39dff330375d1b deleted file mode 100644 index ff9866d..0000000 --- a/project/.git_disabled/objects/df/2e11f600834970a66693513a39dff330375d1b +++ /dev/null @@ -1,2 +0,0 @@ -xM -0@a9EӀd֖fz7pv<^eR]tCHb]xN͵-Q[}$ 0- luj,ڋ::HaL0SיcY/38Ce \ No newline at end of file diff --git a/project/.git_disabled/objects/df/c8ed71f10a06b2804cb8fa4451145741b77aab b/project/.git_disabled/objects/df/c8ed71f10a06b2804cb8fa4451145741b77aab deleted file mode 100644 index 06dee35..0000000 Binary files a/project/.git_disabled/objects/df/c8ed71f10a06b2804cb8fa4451145741b77aab and /dev/null differ diff --git a/project/.git_disabled/objects/e1/619f35ea62a03c5ba4f2b799beb469c8929d3b b/project/.git_disabled/objects/e1/619f35ea62a03c5ba4f2b799beb469c8929d3b deleted file mode 100644 index 15132ec..0000000 Binary files a/project/.git_disabled/objects/e1/619f35ea62a03c5ba4f2b799beb469c8929d3b and /dev/null differ diff --git a/project/.git_disabled/objects/e1/7cc88d306e1e58f859ad17e28310a3bb37ae28 b/project/.git_disabled/objects/e1/7cc88d306e1e58f859ad17e28310a3bb37ae28 deleted file mode 100644 index ea25356..0000000 Binary files a/project/.git_disabled/objects/e1/7cc88d306e1e58f859ad17e28310a3bb37ae28 and /dev/null differ diff --git a/project/.git_disabled/objects/e1/e0e9f703417970972d6e9ebaeec76eafdae136 b/project/.git_disabled/objects/e1/e0e9f703417970972d6e9ebaeec76eafdae136 deleted file mode 100644 index 7b69a3e..0000000 Binary files a/project/.git_disabled/objects/e1/e0e9f703417970972d6e9ebaeec76eafdae136 and /dev/null differ diff --git a/project/.git_disabled/objects/e1/ec7f938536ebb520c87356a0f72d15c2b8fb83 b/project/.git_disabled/objects/e1/ec7f938536ebb520c87356a0f72d15c2b8fb83 deleted file mode 100644 index fb1922b..0000000 --- a/project/.git_disabled/objects/e1/ec7f938536ebb520c87356a0f72d15c2b8fb83 +++ /dev/null @@ -1,4 +0,0 @@ -xeN0E]+0`d&7.?xt,-)Lw -1qѤ;Ҹw7:V!Ձ33jZQ\*8֑ -4#:XjTOQM҈ ;y4 ~7C{- \ No newline at end of file diff --git a/project/.git_disabled/objects/e8/045507e926205e3b10480572f232f86256cf25 b/project/.git_disabled/objects/e8/045507e926205e3b10480572f232f86256cf25 deleted file mode 100644 index dbfe194..0000000 --- a/project/.git_disabled/objects/e8/045507e926205e3b10480572f232f86256cf25 +++ /dev/null @@ -1 +0,0 @@ -xMPN0 䜯Pi8#= "ZeSv=NgƱco#mJB@a[,!HZ y0;tAP@~M؛Hm5Lyp=5%\-3QM ?Qj4[+_t֎D f2-N!w'Ũ]ށA3$m8(8-4_vHbA>1+@-N:V5Ge⦾;Nv5˪\d GdqUҘJ҂9,폲@#"8`yzjnZ3xuwn[(- \ No newline at end of file diff --git a/project/.git_disabled/objects/e8/16ea48d2b26447d8fea1fa744c4808809e1917 b/project/.git_disabled/objects/e8/16ea48d2b26447d8fea1fa744c4808809e1917 deleted file mode 100644 index fa216a0..0000000 Binary files a/project/.git_disabled/objects/e8/16ea48d2b26447d8fea1fa744c4808809e1917 and /dev/null differ diff --git a/project/.git_disabled/objects/ea/7c56093930356b8d0ff7bb228fc5f7ffa17f4f b/project/.git_disabled/objects/ea/7c56093930356b8d0ff7bb228fc5f7ffa17f4f deleted file mode 100644 index a774b45..0000000 Binary files a/project/.git_disabled/objects/ea/7c56093930356b8d0ff7bb228fc5f7ffa17f4f and /dev/null differ diff --git a/project/.git_disabled/objects/ec/80153cacc78066a77e8c4caeeeff0d8fa149f0 b/project/.git_disabled/objects/ec/80153cacc78066a77e8c4caeeeff0d8fa149f0 deleted file mode 100644 index 10b834a..0000000 --- a/project/.git_disabled/objects/ec/80153cacc78066a77e8c4caeeeff0d8fa149f0 +++ /dev/null @@ -1 +0,0 @@ -x1k0;Wf)JBvY9lQUÎ Tzj.'wkor8ryI C]‡YWW3PLF"p0 l4iZOpF'jmc/*2%ԧ/hyACnݳٯ9+_ͪxw8K:m8(|p"3RN_VTm*r!T.H-~G-/_칳[ \ No newline at end of file diff --git a/project/.git_disabled/objects/f0/bbd19b2fd2e3e1e3ef3bc3ab9402f69c467b25 b/project/.git_disabled/objects/f0/bbd19b2fd2e3e1e3ef3bc3ab9402f69c467b25 deleted file mode 100644 index 432680a..0000000 Binary files a/project/.git_disabled/objects/f0/bbd19b2fd2e3e1e3ef3bc3ab9402f69c467b25 and /dev/null differ diff --git a/project/.git_disabled/objects/f1/31b4569c88af60054df997aa3852762d2bc9ff b/project/.git_disabled/objects/f1/31b4569c88af60054df997aa3852762d2bc9ff deleted file mode 100644 index 1aabad7..0000000 Binary files a/project/.git_disabled/objects/f1/31b4569c88af60054df997aa3852762d2bc9ff and /dev/null differ diff --git a/project/.git_disabled/objects/f1/ed375869c79130cc4cc03eb2c49d95f1234a1a b/project/.git_disabled/objects/f1/ed375869c79130cc4cc03eb2c49d95f1234a1a deleted file mode 100644 index 90498eb..0000000 Binary files a/project/.git_disabled/objects/f1/ed375869c79130cc4cc03eb2c49d95f1234a1a and /dev/null differ diff --git a/project/.git_disabled/objects/f2/fc872e3d5dc7a6783ad54e64a436f75462ad58 b/project/.git_disabled/objects/f2/fc872e3d5dc7a6783ad54e64a436f75462ad58 deleted file mode 100644 index 4df2c39..0000000 Binary files a/project/.git_disabled/objects/f2/fc872e3d5dc7a6783ad54e64a436f75462ad58 and /dev/null differ diff --git a/project/.git_disabled/objects/f3/6864ec393faae6f4079c4e4241fad7d82c86b3 b/project/.git_disabled/objects/f3/6864ec393faae6f4079c4e4241fad7d82c86b3 deleted file mode 100644 index 111f74f..0000000 Binary files a/project/.git_disabled/objects/f3/6864ec393faae6f4079c4e4241fad7d82c86b3 and /dev/null differ diff --git a/project/.git_disabled/objects/f4/31988a5f85f6507bba877e1f80edae989c9fe8 b/project/.git_disabled/objects/f4/31988a5f85f6507bba877e1f80edae989c9fe8 deleted file mode 100644 index f92ffa3..0000000 Binary files a/project/.git_disabled/objects/f4/31988a5f85f6507bba877e1f80edae989c9fe8 and /dev/null differ diff --git a/project/.git_disabled/objects/f4/56e32a24ac3ac4c76ce3c799e5eb2c837b8e46 b/project/.git_disabled/objects/f4/56e32a24ac3ac4c76ce3c799e5eb2c837b8e46 deleted file mode 100644 index 030d5ef..0000000 Binary files a/project/.git_disabled/objects/f4/56e32a24ac3ac4c76ce3c799e5eb2c837b8e46 and /dev/null differ diff --git a/project/.git_disabled/objects/f9/90bffe00c0b28f28ef199e99f37095e12236de b/project/.git_disabled/objects/f9/90bffe00c0b28f28ef199e99f37095e12236de deleted file mode 100644 index f11d181..0000000 Binary files a/project/.git_disabled/objects/f9/90bffe00c0b28f28ef199e99f37095e12236de and /dev/null differ diff --git a/project/.git_disabled/objects/f9/e4bc0149a415f9c7af509fd6b8226901eed75b b/project/.git_disabled/objects/f9/e4bc0149a415f9c7af509fd6b8226901eed75b deleted file mode 100644 index 2ab19ad..0000000 --- a/project/.git_disabled/objects/f9/e4bc0149a415f9c7af509fd6b8226901eed75b +++ /dev/null @@ -1,2 +0,0 @@ -xn19S1e8+EжHc{d,U]Um -ad֓rf8?;w>[6QxǻFyĞ< ;2}c@e9t8Qz:{I'x6NJmD'X^b^+C^JHIN$c>P*֑Dw=g^춰ha]ڒt={ej/rWm[S5k)Z'uT*V乶kfV.KG 1*{v/ \ No newline at end of file diff --git a/project/.git_disabled/objects/fc/47823714e47cfe3f0368edd3a80335e27eb030 b/project/.git_disabled/objects/fc/47823714e47cfe3f0368edd3a80335e27eb030 deleted file mode 100644 index 09f7ec5..0000000 --- a/project/.git_disabled/objects/fc/47823714e47cfe3f0368edd3a80335e27eb030 +++ /dev/null @@ -1,3 +0,0 @@ -xM -1 @a=Ex)L̀WQ߶EpT7 H- `0!`Qp.:p\J슅R}-Wpa -y(۷e̾}޴>ZH)f}6E;`ݖ7OE \ No newline at end of file diff --git a/project/.git_disabled/objects/fc/5288f38fc15a836b47b345d688e60ecb96e807 b/project/.git_disabled/objects/fc/5288f38fc15a836b47b345d688e60ecb96e807 deleted file mode 100644 index 3915c22..0000000 Binary files a/project/.git_disabled/objects/fc/5288f38fc15a836b47b345d688e60ecb96e807 and /dev/null differ diff --git a/project/.git_disabled/objects/ff/df9093d39a28277c6c9db9a92578294d777af5 b/project/.git_disabled/objects/ff/df9093d39a28277c6c9db9a92578294d777af5 deleted file mode 100644 index 9c048e1..0000000 Binary files a/project/.git_disabled/objects/ff/df9093d39a28277c6c9db9a92578294d777af5 and /dev/null differ diff --git a/project/.git_disabled/refs/heads/main b/project/.git_disabled/refs/heads/main deleted file mode 100644 index 083ee36..0000000 --- a/project/.git_disabled/refs/heads/main +++ /dev/null @@ -1 +0,0 @@ -df2e11f600834970a66693513a39dff330375d1b diff --git a/project/.git_disabled/refs/remotes/puffin-offset/HEAD b/project/.git_disabled/refs/remotes/puffin-offset/HEAD deleted file mode 100644 index 242e0e7..0000000 --- a/project/.git_disabled/refs/remotes/puffin-offset/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/remotes/puffin-offset/main diff --git a/project/.git_disabled/refs/remotes/puffin-offset/main b/project/.git_disabled/refs/remotes/puffin-offset/main deleted file mode 100644 index 083ee36..0000000 --- a/project/.git_disabled/refs/remotes/puffin-offset/main +++ /dev/null @@ -1 +0,0 @@ -df2e11f600834970a66693513a39dff330375d1b diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/HEAD b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/HEAD deleted file mode 100644 index b870d82..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/main diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/config b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/config deleted file mode 100644 index 36788ce..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/config +++ /dev/null @@ -1,13 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = false - bare = false - logallrefupdates = true - symlinks = false - ignorecase = true -[remote "origin"] - url = https://github.com/bstanfield/wren-api-tutorial.git - fetch = +refs/heads/*:refs/remotes/origin/* -[branch "main"] - remote = origin - merge = refs/heads/main diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/description b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/description deleted file mode 100644 index 498b267..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/applypatch-msg.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/applypatch-msg.sample deleted file mode 100644 index a5d7b84..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -commitmsg="$(git rev-parse --git-path hooks/commit-msg)" -test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} -: diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/commit-msg.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/commit-msg.sample deleted file mode 100644 index b58d118..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/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/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/fsmonitor-watchman.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/fsmonitor-watchman.sample deleted file mode 100644 index 23e856f..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/fsmonitor-watchman.sample +++ /dev/null @@ -1,174 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; -use IPC::Open2; - -# An example hook script to integrate Watchman -# (https://facebook.github.io/watchman/) with git to speed up detecting -# new and modified files. -# -# The hook is passed a version (currently 2) and last update token -# formatted as a string and outputs to stdout a new update token and -# all files that have been modified since the update token. Paths must -# be relative to the root of the working tree and separated by a single NUL. -# -# To enable this hook, rename this file to "query-watchman" and set -# 'git config core.fsmonitor .git/hooks/query-watchman' -# -my ($version, $last_update_token) = @ARGV; - -# Uncomment for debugging -# print STDERR "$0 $version $last_update_token\n"; - -# Check the hook interface version -if ($version ne 2) { - die "Unsupported query-fsmonitor hook version '$version'.\n" . - "Falling back to scanning...\n"; -} - -my $git_work_tree = get_working_dir(); - -my $retry = 1; - -my $json_pkg; -eval { - require JSON::XS; - $json_pkg = "JSON::XS"; - 1; -} or do { - require JSON::PP; - $json_pkg = "JSON::PP"; -}; - -launch_watchman(); - -sub launch_watchman { - my $o = watchman_query(); - if (is_work_tree_watched($o)) { - output_result($o->{clock}, @{$o->{files}}); - } -} - -sub output_result { - my ($clockid, @files) = @_; - - # Uncomment for debugging watchman output - # open (my $fh, ">", ".git/watchman-output.out"); - # binmode $fh, ":utf8"; - # print $fh "$clockid\n@files\n"; - # close $fh; - - binmode STDOUT, ":utf8"; - print $clockid; - print "\0"; - local $, = "\0"; - print @files; -} - -sub watchman_clock { - my $response = qx/watchman clock "$git_work_tree"/; - die "Failed to get clock id on '$git_work_tree'.\n" . - "Falling back to scanning...\n" if $? != 0; - - return $json_pkg->new->utf8->decode($response); -} - -sub watchman_query { - my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty') - or die "open2() failed: $!\n" . - "Falling back to scanning...\n"; - - # In the query expression below we're asking for names of files that - # changed since $last_update_token but not from the .git folder. - # - # To accomplish this, we're using the "since" generator to use the - # recency index to select candidate nodes and "fields" to limit the - # output to file names only. Then we're using the "expression" term to - # further constrain the results. - my $last_update_line = ""; - if (substr($last_update_token, 0, 1) eq "c") { - $last_update_token = "\"$last_update_token\""; - $last_update_line = qq[\n"since": $last_update_token,]; - } - my $query = <<" END"; - ["query", "$git_work_tree", {$last_update_line - "fields": ["name"], - "expression": ["not", ["dirname", ".git"]] - }] - END - - # Uncomment for debugging the watchman query - # open (my $fh, ">", ".git/watchman-query.json"); - # print $fh $query; - # close $fh; - - print CHLD_IN $query; - close CHLD_IN; - my $response = do {local $/; }; - - # Uncomment for debugging the watch response - # open ($fh, ">", ".git/watchman-response.json"); - # print $fh $response; - # close $fh; - - die "Watchman: command returned no output.\n" . - "Falling back to scanning...\n" if $response eq ""; - die "Watchman: command returned invalid output: $response\n" . - "Falling back to scanning...\n" unless $response =~ /^\{/; - - return $json_pkg->new->utf8->decode($response); -} - -sub is_work_tree_watched { - my ($output) = @_; - my $error = $output->{error}; - if ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) { - $retry--; - my $response = qx/watchman watch "$git_work_tree"/; - die "Failed to make watchman watch '$git_work_tree'.\n" . - "Falling back to scanning...\n" if $? != 0; - $output = $json_pkg->new->utf8->decode($response); - $error = $output->{error}; - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - # Uncomment for debugging watchman output - # open (my $fh, ">", ".git/watchman-output.out"); - # close $fh; - - # Watchman will always return all files on the first query so - # return the fast "everything is dirty" flag to git and do the - # Watchman query just to get it over with now so we won't pay - # the cost in git to look up each individual file. - my $o = watchman_clock(); - $error = $output->{error}; - - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - output_result($o->{clock}, ("/")); - $last_update_token = $o->{clock}; - - eval { launch_watchman() }; - return 0; - } - - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - return 1; -} - -sub get_working_dir { - my $working_dir; - if ($^O =~ 'msys' || $^O =~ 'cygwin') { - $working_dir = Win32::GetCwd(); - $working_dir =~ tr/\\/\//; - } else { - require Cwd; - $working_dir = Cwd::cwd(); - } - - return $working_dir; -} diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/post-update.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/post-update.sample deleted file mode 100644 index ec17ec1..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/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/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-applypatch.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-applypatch.sample deleted file mode 100644 index 4142082..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -precommit="$(git rev-parse --git-path hooks/pre-commit)" -test -x "$precommit" && exec "$precommit" ${1+"$@"} -: diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-commit.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-commit.sample deleted file mode 100644 index 29ed5ee..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-commit.sample +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=$(git hash-object -t tree /dev/null) -fi - -# If you want to allow non-ASCII filenames set this variable to true. -allownonascii=$(git config --type=bool hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ASCII filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff-index --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - cat <<\EOF -Error: Attempt to add a non-ASCII file name. - -This can cause problems if you want to work with people on other platforms. - -To be portable it is advisable to rename the file. - -If you know what you are doing you can disable this check using: - - git config hooks.allownonascii true -EOF - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-merge-commit.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-merge-commit.sample deleted file mode 100644 index 399eab1..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-merge-commit.sample +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git merge" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message to -# stderr if it wants to stop the merge commit. -# -# To enable this hook, rename this file to "pre-merge-commit". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" -: diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-push.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-push.sample deleted file mode 100644 index 4ce688d..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/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" - -zero=$(git hash-object --stdin &2 "Found WIP commit in $local_ref, not pushing" - exit 1 - fi - fi -done - -exit 0 diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-rebase.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-rebase.sample deleted file mode 100644 index 6cbef5c..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/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/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-receive.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-receive.sample deleted file mode 100644 index a1fd29e..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/pre-receive.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to make use of push options. -# The example simply echoes all push options that start with 'echoback=' -# and rejects all pushes when the "reject" push option is used. -# -# To enable this hook, rename this file to "pre-receive". - -if test -n "$GIT_PUSH_OPTION_COUNT" -then - i=0 - while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" - do - eval "value=\$GIT_PUSH_OPTION_$i" - case "$value" in - echoback=*) - echo "echo from the pre-receive-hook: ${value#*=}" >&2 - ;; - reject) - exit 1 - esac - i=$((i + 1)) - done -fi diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/prepare-commit-msg.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/prepare-commit-msg.sample deleted file mode 100644 index 10fa14c..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first one removes the -# "# Please enter the commit message..." help message. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -COMMIT_MSG_FILE=$1 -COMMIT_SOURCE=$2 -SHA1=$3 - -/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" - -# case "$COMMIT_SOURCE,$SHA1" in -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; -# *) ;; -# esac - -# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" -# if test -z "$COMMIT_SOURCE" -# then -# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" -# fi diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/push-to-checkout.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/push-to-checkout.sample deleted file mode 100644 index af5a0c0..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/push-to-checkout.sample +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh - -# An example hook script to update a checked-out tree on a git push. -# -# This hook is invoked by git-receive-pack(1) when it reacts to git -# push and updates reference(s) in its repository, and when the push -# tries to update the branch that is currently checked out and the -# receive.denyCurrentBranch configuration variable is set to -# updateInstead. -# -# By default, such a push is refused if the working tree and the index -# of the remote repository has any difference from the currently -# checked out commit; when both the working tree and the index match -# the current commit, they are updated to match the newly pushed tip -# of the branch. This hook is to be used to override the default -# behaviour; however the code below reimplements the default behaviour -# as a starting point for convenient modification. -# -# The hook receives the commit with which the tip of the current -# branch is going to be updated: -commit=$1 - -# It can exit with a non-zero status to refuse the push (when it does -# so, it must not modify the index or the working tree). -die () { - echo >&2 "$*" - exit 1 -} - -# Or it can make any necessary changes to the working tree and to the -# index to bring them to the desired state when the tip of the current -# branch is updated to the new commit, and exit with a zero status. -# -# For example, the hook can simply run git read-tree -u -m HEAD "$1" -# in order to emulate git fetch that is run in the reverse direction -# with git push, as the two-tree form of git read-tree -u -m is -# essentially the same as git switch or git checkout that switches -# branches while keeping the local changes in the working tree that do -# not interfere with the difference between the branches. - -# The below is a more-or-less exact translation to shell of the C code -# for the default behaviour for git's push-to-checkout hook defined in -# the push_to_deploy() function in builtin/receive-pack.c. -# -# Note that the hook will be executed from the repository directory, -# not from the working tree, so if you want to perform operations on -# the working tree, you will have to adapt your code accordingly, e.g. -# by adding "cd .." or using relative paths. - -if ! git update-index -q --ignore-submodules --refresh -then - die "Up-to-date check failed" -fi - -if ! git diff-files --quiet --ignore-submodules -- -then - die "Working directory has unstaged changes" -fi - -# This is a rough translation of: -# -# head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX -if git cat-file -e HEAD 2>/dev/null -then - head=HEAD -else - head=$(git hash-object -t tree --stdin &2 - exit 1 -} - -unset GIT_DIR GIT_WORK_TREE -cd "$worktree" && - -if grep -q "^diff --git " "$1" -then - validate_patch "$1" -else - validate_cover_letter "$1" -fi && - -if test "$GIT_SENDEMAIL_FILE_COUNTER" = "$GIT_SENDEMAIL_FILE_TOTAL" -then - git config --unset-all sendemail.validateWorktree && - trap 'git worktree remove -ff "$worktree"' EXIT && - validate_series -fi diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/update.sample b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/update.sample deleted file mode 100644 index c4d426b..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to block unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --type=bool hooks.allowunannotated) -allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch) -denycreatebranch=$(git config --type=bool hooks.denycreatebranch) -allowdeletetag=$(git config --type=bool hooks.allowdeletetag) -allowmodifytag=$(git config --type=bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero=$(git hash-object --stdin &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/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/index b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/index deleted file mode 100644 index eb1d88c..0000000 Binary files a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/index and /dev/null differ diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/info/exclude b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/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/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/objects/pack/pack-106c3028698466114383299512d896e3e74fbd97.idx b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/objects/pack/pack-106c3028698466114383299512d896e3e74fbd97.idx deleted file mode 100644 index 31c85cf..0000000 Binary files a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/objects/pack/pack-106c3028698466114383299512d896e3e74fbd97.idx and /dev/null differ diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/objects/pack/pack-106c3028698466114383299512d896e3e74fbd97.pack b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/objects/pack/pack-106c3028698466114383299512d896e3e74fbd97.pack deleted file mode 100644 index 63745db..0000000 Binary files a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/objects/pack/pack-106c3028698466114383299512d896e3e74fbd97.pack and /dev/null differ diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/objects/pack/pack-106c3028698466114383299512d896e3e74fbd97.rev b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/objects/pack/pack-106c3028698466114383299512d896e3e74fbd97.rev deleted file mode 100644 index 69a4273..0000000 Binary files a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/objects/pack/pack-106c3028698466114383299512d896e3e74fbd97.rev and /dev/null differ diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/packed-refs b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/packed-refs deleted file mode 100644 index 8b29a1d..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/packed-refs +++ /dev/null @@ -1,2 +0,0 @@ -# pack-refs with: peeled fully-peeled sorted -a73b96c463b92b02beb8772d0436b653a5e1404c refs/remotes/origin/main diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/refs/heads/main b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/refs/heads/main deleted file mode 100644 index 74effb0..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/refs/heads/main +++ /dev/null @@ -1 +0,0 @@ -a73b96c463b92b02beb8772d0436b653a5e1404c diff --git a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/refs/remotes/origin/HEAD b/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/refs/remotes/origin/HEAD deleted file mode 100644 index 4b0a875..0000000 --- a/project/api-tutorials/web/node/wren-api-tutorial/.git_disabled/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/remotes/origin/main diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/HEAD b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/HEAD deleted file mode 100644 index b870d82..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/main diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/config b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/config deleted file mode 100644 index c16e4c5..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/config +++ /dev/null @@ -1,13 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = false - bare = false - logallrefupdates = true - symlinks = false - ignorecase = true -[remote "origin"] - url = https://github.com/taylorlapeyre/wren-api-tutorial.git - fetch = +refs/heads/*:refs/remotes/origin/* -[branch "main"] - remote = origin - merge = refs/heads/main diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/description b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/description deleted file mode 100644 index 498b267..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/applypatch-msg.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/applypatch-msg.sample deleted file mode 100644 index a5d7b84..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -commitmsg="$(git rev-parse --git-path hooks/commit-msg)" -test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} -: diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/commit-msg.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/commit-msg.sample deleted file mode 100644 index b58d118..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/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/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/fsmonitor-watchman.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/fsmonitor-watchman.sample deleted file mode 100644 index 23e856f..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/fsmonitor-watchman.sample +++ /dev/null @@ -1,174 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; -use IPC::Open2; - -# An example hook script to integrate Watchman -# (https://facebook.github.io/watchman/) with git to speed up detecting -# new and modified files. -# -# The hook is passed a version (currently 2) and last update token -# formatted as a string and outputs to stdout a new update token and -# all files that have been modified since the update token. Paths must -# be relative to the root of the working tree and separated by a single NUL. -# -# To enable this hook, rename this file to "query-watchman" and set -# 'git config core.fsmonitor .git/hooks/query-watchman' -# -my ($version, $last_update_token) = @ARGV; - -# Uncomment for debugging -# print STDERR "$0 $version $last_update_token\n"; - -# Check the hook interface version -if ($version ne 2) { - die "Unsupported query-fsmonitor hook version '$version'.\n" . - "Falling back to scanning...\n"; -} - -my $git_work_tree = get_working_dir(); - -my $retry = 1; - -my $json_pkg; -eval { - require JSON::XS; - $json_pkg = "JSON::XS"; - 1; -} or do { - require JSON::PP; - $json_pkg = "JSON::PP"; -}; - -launch_watchman(); - -sub launch_watchman { - my $o = watchman_query(); - if (is_work_tree_watched($o)) { - output_result($o->{clock}, @{$o->{files}}); - } -} - -sub output_result { - my ($clockid, @files) = @_; - - # Uncomment for debugging watchman output - # open (my $fh, ">", ".git/watchman-output.out"); - # binmode $fh, ":utf8"; - # print $fh "$clockid\n@files\n"; - # close $fh; - - binmode STDOUT, ":utf8"; - print $clockid; - print "\0"; - local $, = "\0"; - print @files; -} - -sub watchman_clock { - my $response = qx/watchman clock "$git_work_tree"/; - die "Failed to get clock id on '$git_work_tree'.\n" . - "Falling back to scanning...\n" if $? != 0; - - return $json_pkg->new->utf8->decode($response); -} - -sub watchman_query { - my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty') - or die "open2() failed: $!\n" . - "Falling back to scanning...\n"; - - # In the query expression below we're asking for names of files that - # changed since $last_update_token but not from the .git folder. - # - # To accomplish this, we're using the "since" generator to use the - # recency index to select candidate nodes and "fields" to limit the - # output to file names only. Then we're using the "expression" term to - # further constrain the results. - my $last_update_line = ""; - if (substr($last_update_token, 0, 1) eq "c") { - $last_update_token = "\"$last_update_token\""; - $last_update_line = qq[\n"since": $last_update_token,]; - } - my $query = <<" END"; - ["query", "$git_work_tree", {$last_update_line - "fields": ["name"], - "expression": ["not", ["dirname", ".git"]] - }] - END - - # Uncomment for debugging the watchman query - # open (my $fh, ">", ".git/watchman-query.json"); - # print $fh $query; - # close $fh; - - print CHLD_IN $query; - close CHLD_IN; - my $response = do {local $/; }; - - # Uncomment for debugging the watch response - # open ($fh, ">", ".git/watchman-response.json"); - # print $fh $response; - # close $fh; - - die "Watchman: command returned no output.\n" . - "Falling back to scanning...\n" if $response eq ""; - die "Watchman: command returned invalid output: $response\n" . - "Falling back to scanning...\n" unless $response =~ /^\{/; - - return $json_pkg->new->utf8->decode($response); -} - -sub is_work_tree_watched { - my ($output) = @_; - my $error = $output->{error}; - if ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) { - $retry--; - my $response = qx/watchman watch "$git_work_tree"/; - die "Failed to make watchman watch '$git_work_tree'.\n" . - "Falling back to scanning...\n" if $? != 0; - $output = $json_pkg->new->utf8->decode($response); - $error = $output->{error}; - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - # Uncomment for debugging watchman output - # open (my $fh, ">", ".git/watchman-output.out"); - # close $fh; - - # Watchman will always return all files on the first query so - # return the fast "everything is dirty" flag to git and do the - # Watchman query just to get it over with now so we won't pay - # the cost in git to look up each individual file. - my $o = watchman_clock(); - $error = $output->{error}; - - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - output_result($o->{clock}, ("/")); - $last_update_token = $o->{clock}; - - eval { launch_watchman() }; - return 0; - } - - die "Watchman: $error.\n" . - "Falling back to scanning...\n" if $error; - - return 1; -} - -sub get_working_dir { - my $working_dir; - if ($^O =~ 'msys' || $^O =~ 'cygwin') { - $working_dir = Win32::GetCwd(); - $working_dir =~ tr/\\/\//; - } else { - require Cwd; - $working_dir = Cwd::cwd(); - } - - return $working_dir; -} diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/post-update.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/post-update.sample deleted file mode 100644 index ec17ec1..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/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/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-applypatch.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-applypatch.sample deleted file mode 100644 index 4142082..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -precommit="$(git rev-parse --git-path hooks/pre-commit)" -test -x "$precommit" && exec "$precommit" ${1+"$@"} -: diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-commit.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-commit.sample deleted file mode 100644 index 29ed5ee..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-commit.sample +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=$(git hash-object -t tree /dev/null) -fi - -# If you want to allow non-ASCII filenames set this variable to true. -allownonascii=$(git config --type=bool hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ASCII filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff-index --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - cat <<\EOF -Error: Attempt to add a non-ASCII file name. - -This can cause problems if you want to work with people on other platforms. - -To be portable it is advisable to rename the file. - -If you know what you are doing you can disable this check using: - - git config hooks.allownonascii true -EOF - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-merge-commit.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-merge-commit.sample deleted file mode 100644 index 399eab1..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-merge-commit.sample +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git merge" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message to -# stderr if it wants to stop the merge commit. -# -# To enable this hook, rename this file to "pre-merge-commit". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" -: diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-push.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-push.sample deleted file mode 100644 index 4ce688d..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/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" - -zero=$(git hash-object --stdin &2 "Found WIP commit in $local_ref, not pushing" - exit 1 - fi - fi -done - -exit 0 diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-rebase.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-rebase.sample deleted file mode 100644 index 6cbef5c..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/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/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-receive.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-receive.sample deleted file mode 100644 index a1fd29e..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/pre-receive.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to make use of push options. -# The example simply echoes all push options that start with 'echoback=' -# and rejects all pushes when the "reject" push option is used. -# -# To enable this hook, rename this file to "pre-receive". - -if test -n "$GIT_PUSH_OPTION_COUNT" -then - i=0 - while test "$i" -lt "$GIT_PUSH_OPTION_COUNT" - do - eval "value=\$GIT_PUSH_OPTION_$i" - case "$value" in - echoback=*) - echo "echo from the pre-receive-hook: ${value#*=}" >&2 - ;; - reject) - exit 1 - esac - i=$((i + 1)) - done -fi diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/prepare-commit-msg.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/prepare-commit-msg.sample deleted file mode 100644 index 10fa14c..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first one removes the -# "# Please enter the commit message..." help message. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -COMMIT_MSG_FILE=$1 -COMMIT_SOURCE=$2 -SHA1=$3 - -/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE" - -# case "$COMMIT_SOURCE,$SHA1" in -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;; -# *) ;; -# esac - -# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE" -# if test -z "$COMMIT_SOURCE" -# then -# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE" -# fi diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/push-to-checkout.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/push-to-checkout.sample deleted file mode 100644 index af5a0c0..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/push-to-checkout.sample +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh - -# An example hook script to update a checked-out tree on a git push. -# -# This hook is invoked by git-receive-pack(1) when it reacts to git -# push and updates reference(s) in its repository, and when the push -# tries to update the branch that is currently checked out and the -# receive.denyCurrentBranch configuration variable is set to -# updateInstead. -# -# By default, such a push is refused if the working tree and the index -# of the remote repository has any difference from the currently -# checked out commit; when both the working tree and the index match -# the current commit, they are updated to match the newly pushed tip -# of the branch. This hook is to be used to override the default -# behaviour; however the code below reimplements the default behaviour -# as a starting point for convenient modification. -# -# The hook receives the commit with which the tip of the current -# branch is going to be updated: -commit=$1 - -# It can exit with a non-zero status to refuse the push (when it does -# so, it must not modify the index or the working tree). -die () { - echo >&2 "$*" - exit 1 -} - -# Or it can make any necessary changes to the working tree and to the -# index to bring them to the desired state when the tip of the current -# branch is updated to the new commit, and exit with a zero status. -# -# For example, the hook can simply run git read-tree -u -m HEAD "$1" -# in order to emulate git fetch that is run in the reverse direction -# with git push, as the two-tree form of git read-tree -u -m is -# essentially the same as git switch or git checkout that switches -# branches while keeping the local changes in the working tree that do -# not interfere with the difference between the branches. - -# The below is a more-or-less exact translation to shell of the C code -# for the default behaviour for git's push-to-checkout hook defined in -# the push_to_deploy() function in builtin/receive-pack.c. -# -# Note that the hook will be executed from the repository directory, -# not from the working tree, so if you want to perform operations on -# the working tree, you will have to adapt your code accordingly, e.g. -# by adding "cd .." or using relative paths. - -if ! git update-index -q --ignore-submodules --refresh -then - die "Up-to-date check failed" -fi - -if ! git diff-files --quiet --ignore-submodules -- -then - die "Working directory has unstaged changes" -fi - -# This is a rough translation of: -# -# head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX -if git cat-file -e HEAD 2>/dev/null -then - head=HEAD -else - head=$(git hash-object -t tree --stdin &2 - exit 1 -} - -unset GIT_DIR GIT_WORK_TREE -cd "$worktree" && - -if grep -q "^diff --git " "$1" -then - validate_patch "$1" -else - validate_cover_letter "$1" -fi && - -if test "$GIT_SENDEMAIL_FILE_COUNTER" = "$GIT_SENDEMAIL_FILE_TOTAL" -then - git config --unset-all sendemail.validateWorktree && - trap 'git worktree remove -ff "$worktree"' EXIT && - validate_series -fi diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/update.sample b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/update.sample deleted file mode 100644 index c4d426b..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to block unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --type=bool hooks.allowunannotated) -allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch) -denycreatebranch=$(git config --type=bool hooks.denycreatebranch) -allowdeletetag=$(git config --type=bool hooks.allowdeletetag) -allowmodifytag=$(git config --type=bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero=$(git hash-object --stdin &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/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/index b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/index deleted file mode 100644 index 4d85e96..0000000 Binary files a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/index and /dev/null differ diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/info/exclude b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/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/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/objects/pack/pack-cdda7fa73935b7e9739f81c8d6578344271cd402.idx b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/objects/pack/pack-cdda7fa73935b7e9739f81c8d6578344271cd402.idx deleted file mode 100644 index ff2e552..0000000 Binary files a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/objects/pack/pack-cdda7fa73935b7e9739f81c8d6578344271cd402.idx and /dev/null differ diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/objects/pack/pack-cdda7fa73935b7e9739f81c8d6578344271cd402.pack b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/objects/pack/pack-cdda7fa73935b7e9739f81c8d6578344271cd402.pack deleted file mode 100644 index 5d429e9..0000000 Binary files a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/objects/pack/pack-cdda7fa73935b7e9739f81c8d6578344271cd402.pack and /dev/null differ diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/objects/pack/pack-cdda7fa73935b7e9739f81c8d6578344271cd402.rev b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/objects/pack/pack-cdda7fa73935b7e9739f81c8d6578344271cd402.rev deleted file mode 100644 index 8e36cfd..0000000 Binary files a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/objects/pack/pack-cdda7fa73935b7e9739f81c8d6578344271cd402.rev and /dev/null differ diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/packed-refs b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/packed-refs deleted file mode 100644 index 3ded44c..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/packed-refs +++ /dev/null @@ -1,2 +0,0 @@ -# pack-refs with: peeled fully-peeled sorted -cc08200ca6314cf8940a80725cbdf34fdedfa304 refs/remotes/origin/main diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/refs/heads/main b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/refs/heads/main deleted file mode 100644 index 9fc2f30..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/refs/heads/main +++ /dev/null @@ -1 +0,0 @@ -cc08200ca6314cf8940a80725cbdf34fdedfa304 diff --git a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/refs/remotes/origin/HEAD b/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/refs/remotes/origin/HEAD deleted file mode 100644 index 4b0a875..0000000 --- a/project/api-tutorials/web/wren-api-tutorial-web/.git_disabled/refs/remotes/origin/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/remotes/origin/main diff --git a/public/ocean_surface.jpg b/public/ocean_surface.jpg new file mode 100644 index 0000000..cb25a32 Binary files /dev/null and b/public/ocean_surface.jpg differ diff --git a/src/components/About.tsx b/src/components/About.tsx index c47456d..4f64a5c 100644 --- a/src/components/About.tsx +++ b/src/components/About.tsx @@ -1,5 +1,6 @@ import React from 'react'; import { Anchor, Heart, Leaf, Scale, CreditCard, FileCheck, Handshake, Rocket } from 'lucide-react'; +import { motion } from 'framer-motion'; interface Props { onNavigate: (page: 'home' | 'calculator' | 'how-it-works' | 'about' | 'contact') => void; @@ -28,61 +29,124 @@ export function About({ onNavigate }: Props) {

-
-
-
- -

Our Mission

+
+ +
+
+ +
+

Our Mission

-

+

To empower the maritime industry with effective, transparent, and accessible carbon offsetting solutions that make a real difference in the fight against climate change.

-
+ -
-
- -

Our Impact

+ +
+
+ +
+

Our Impact

-

+

Through our partnerships with verified carbon offset projects, we are able to help maritime businesses offset thousands of tons of CO₂ emissions and support sustainable development worldwide.

-
+
-
-

Our Values

-
-
- -
-

Transparency

-

Clear, honest reporting on the impact of every offset.

+ + + Our Values + +
+ +
+
-
-
- -
-

Quality

-

Only the highest standard of verified offset projects.

+

Transparency

+

Clear, honest reporting on the impact of every offset.

+ + + +
+
-
-
- -
-

Partnership

-

Working together for a sustainable future.

+

Quality

+

Only the highest standard of verified offset projects.

+ + + +
+
-
-
- -
-

Future Proof

-

Constantly improving our service and offsetting products.

+

Partnership

+

Working together for a sustainable future.

+ + + +
+
-
+

Future Proof

+

Constantly improving our service and offsetting products.

+
-
+

Ready to Make a Difference?

@@ -95,4 +159,4 @@ export function About({ onNavigate }: Props) {
); -} \ No newline at end of file +} diff --git a/src/components/Home.tsx b/src/components/Home.tsx index 12caeec..bca758a 100644 --- a/src/components/Home.tsx +++ b/src/components/Home.tsx @@ -81,35 +81,64 @@ export function Home({ onNavigate }: Props) { {/* Luxury Hero Section */} - {/* Background Image with Parallax */} + {/* Elegant Gradient Background */} - {/* Elegant Overlay */} -
+ {/* Animated Wave Pattern Overlay */} +
+ + {/* Floating Particles */} +
+ {[...Array(20)].map((_, i) => ( + + ))} +
{/* Floating Elements */} + {/* Hero Content */}
@@ -122,17 +151,10 @@ export function Home({ onNavigate }: Props) { > - Luxury Meets + Luxury Meets
- Sustainability + Sustainability
+ {/* Elegant Divider Line */} +
+
+ + + +
+
+ {/* Features Section with Luxury Styling */}
- Premium Carbon Calculator + Carbon Calculator