# HG changeset patch # User drewp@bigasterisk.com # Date 2022-05-10 04:44:04 # Node ID 8849c9e5da3089cf0abede275bd4ff0fbf447b36 # Parent d8bac44781d4872e881ae10c34fc8b846478dc8d strip dmx_usb_module/.git dir diff --git a/dmx_usb_module/.git/HEAD b/dmx_usb_module/.git/HEAD deleted file mode 100644 --- a/dmx_usb_module/.git/HEAD +++ /dev/null @@ -1,1 +0,0 @@ -ref: refs/heads/master diff --git a/dmx_usb_module/.git/config b/dmx_usb_module/.git/config deleted file mode 100644 --- a/dmx_usb_module/.git/config +++ /dev/null @@ -1,6 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true -[remote "github"] - url = git://github.com/lowlander/dmx_usb_module.git - fetch = +refs/heads/master:refs/remotes/github/master diff --git a/dmx_usb_module/.git/description b/dmx_usb_module/.git/description deleted file mode 100644 --- a/dmx_usb_module/.git/description +++ /dev/null @@ -1,1 +0,0 @@ -Unnamed repository; edit this file to name it for gitweb. diff --git a/dmx_usb_module/.git/hooks/applypatch-msg b/dmx_usb_module/.git/hooks/applypatch-msg deleted file mode 100644 --- a/dmx_usb_module/.git/hooks/applypatch-msg +++ /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, make this file executable. - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/dmx_usb_module/.git/hooks/commit-msg b/dmx_usb_module/.git/hooks/commit-msg deleted file mode 100644 --- a/dmx_usb_module/.git/hooks/commit-msg +++ /dev/null @@ -1,14 +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, make this file executable. - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1 /d')" diff --git a/dmx_usb_module/.git/hooks/post-commit b/dmx_usb_module/.git/hooks/post-commit deleted file mode 100644 --- a/dmx_usb_module/.git/hooks/post-commit +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script that is called after a successful -# commit is made. -# -# To enable this hook, make this file executable. - -: Nothing diff --git a/dmx_usb_module/.git/hooks/post-update b/dmx_usb_module/.git/hooks/post-update deleted file mode 100644 --- a/dmx_usb_module/.git/hooks/post-update +++ /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, make this file executable by "chmod +x post-update". - -exec git-update-server-info diff --git a/dmx_usb_module/.git/hooks/pre-applypatch b/dmx_usb_module/.git/hooks/pre-applypatch deleted file mode 100644 --- a/dmx_usb_module/.git/hooks/pre-applypatch +++ /dev/null @@ -1,15 +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, make this file executable. - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: - diff --git a/dmx_usb_module/.git/hooks/pre-commit b/dmx_usb_module/.git/hooks/pre-commit deleted file mode 100644 --- a/dmx_usb_module/.git/hooks/pre-commit +++ /dev/null @@ -1,71 +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, make this file executable. - -# This is slightly modified from Andrew Morton's Perfect Patch. -# Lines you introduce should not have trailing whitespace. -# Also check for an indentation that has SP before a TAB. - -if git-rev-parse --verify HEAD 2>/dev/null -then - git-diff-index -p -M --cached HEAD -else - # NEEDSWORK: we should produce a diff with an empty tree here - # if we want to do the same verification for the initial import. - : -fi | -perl -e ' - my $found_bad = 0; - my $filename; - my $reported_filename = ""; - my $lineno; - sub bad_line { - my ($why, $line) = @_; - if (!$found_bad) { - print STDERR "*\n"; - print STDERR "* You have some suspicious patch lines:\n"; - print STDERR "*\n"; - $found_bad = 1; - } - if ($reported_filename ne $filename) { - print STDERR "* In $filename\n"; - $reported_filename = $filename; - } - print STDERR "* $why (line $lineno)\n"; - print STDERR "$filename:$lineno:$line\n"; - } - while (<>) { - if (m|^diff --git a/(.*) b/\1$|) { - $filename = $1; - next; - } - if (/^@@ -\S+ \+(\d+)/) { - $lineno = $1 - 1; - next; - } - if (/^ /) { - $lineno++; - next; - } - if (s/^\+//) { - $lineno++; - chomp; - if (/\s$/) { - bad_line("trailing whitespace", $_); - } - if (/^\s* /) { - bad_line("indent SP followed by a TAB", $_); - } - if (/^(?:[<>=]){7}/) { - bad_line("unresolved merge conflict", $_); - } - } - } - exit($found_bad); -' - diff --git a/dmx_usb_module/.git/hooks/pre-rebase b/dmx_usb_module/.git/hooks/pre-rebase deleted file mode 100644 --- a/dmx_usb_module/.git/hooks/pre-rebase +++ /dev/null @@ -1,150 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006 Junio C Hamano -# - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` -fi - -case "$basebranch,$topic" in -master,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? - -# 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"` - perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git-rev-list ^master ^topic next - git-rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git-rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/dmx_usb_module/.git/hooks/update b/dmx_usb_module/.git/hooks/update deleted file mode 100644 --- a/dmx_usb_module/.git/hooks/update +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh -# -# An example hook script to mail out commit update information. -# It also blocks tags that aren't annotated. -# Called by git-receive-pack with arguments: refname sha1-old sha1-new -# -# To enable this hook: -# (1) change the recipient e-mail address -# (2) make this file executable by "chmod +x update". -# - -project=$(cat $GIT_DIR/description) -recipients="commit-list@somewhere.com commit-list@somewhereelse.com" - -ref_type=$(git cat-file -t "$3") - -# Only allow annotated tags in a shared repo -# Remove this code to treat dumb tags the same as everything else -case "$1","$ref_type" in -refs/tags/*,commit) - echo "*** Un-annotated tags are not allowed in this repo" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." - exit 1;; -refs/tags/*,tag) - echo "### Pushing version '${1##refs/tags/}' to the masses" >&2 - # recipients="release-announce@somwehere.com announce@somewhereelse.com" - ;; -esac - -# set this to 'cat' to get a very detailed listing. -# short only kicks in when an annotated tag is added -short='git shortlog' - -# see 'date --help' for info on how to write this -# The default is a human-readable iso8601-like format with minute -# precision ('2006-01-25 15:58 +0100' for example) -date_format="%F %R %z" - -(if expr "$2" : '0*$' >/dev/null -then - # new ref - case "$1" in - refs/tags/*) - # a pushed and annotated tag (usually) means a new version - tag="${1##refs/tags/}" - if [ "$ref_type" = tag ]; then - eval $(git cat-file tag $3 | \ - sed -n '4s/tagger \([^>]*>\)[^0-9]*\([0-9]*\).*/tagger="\1" ts="\2"/p') - date=$(date --date="1970-01-01 00:00:00 $ts seconds" +"$date_format") - echo "Tag '$tag' created by $tagger at $date" - git cat-file tag $3 | sed -n '5,$p' - echo - fi - prev=$(git describe "$3^" | sed 's/-g.*//') - # the first tag in a repo will yield no $prev - if [ -z "$prev" ]; then - echo "Changes since the dawn of time:" - git rev-list --pretty $3 | $short - else - echo "Changes since $prev:" - git rev-list --pretty $prev..$3 | $short - echo --- - git diff $prev..$3 | diffstat -p1 - echo --- - fi - ;; - - refs/heads/*) - branch="${1##refs/heads/}" - echo "New branch '$branch' available with the following commits:" - git-rev-list --pretty "$3" $(git-rev-parse --not --all) - ;; - esac -else - base=$(git-merge-base "$2" "$3") - case "$base" in - "$2") - git diff "$3" "^$base" | diffstat -p1 - echo - echo "New commits:" - ;; - *) - echo "Rebased ref, commits from common ancestor:" - ;; - esac - git-rev-list --pretty "$3" "^$base" -fi) | -mail -s "$project: Changes to '${1##refs/heads/}'" $recipients -exit 0 diff --git a/dmx_usb_module/.git/index b/dmx_usb_module/.git/index deleted file mode 100644 index 6f62f07058feb8d4a6505f0b360d003b787a15b6..0000000000000000000000000000000000000000 GIT binary patch literal 0 Hc$@ ��]�G�k��G�.�M=z�R� \ No newline at end of file diff --git a/dmx_usb_module/.git/objects/0d/133393d78155c20721d74b64713b7d9e310a08 b/dmx_usb_module/.git/objects/0d/133393d78155c20721d74b64713b7d9e310a08 deleted file mode 100644 --- a/dmx_usb_module/.git/objects/0d/133393d78155c20721d74b64713b7d9e310a08 +++ /dev/null @@ -1,2 +0,0 @@ -x�e�_k�0���|�K���զjZ��������Hۤ��$����m���v8��sIZ�)D�ǻ�K� /llwZW:]�� �1�!��>����pNf��pu��B�̊�q�k�D9�>_[g�����6��u�L��֪���†"E�i`��H�&�!�&����\u�7q*��FrVO ��e�V1q0��V(�[%bB����{.=7`��ϡ��X�/�^?;���g��@;`9{�T�<C..8�$��Q�`e����� l�RĢ�k�-�X��Di�4� �D�m#�q+ -�M֢��Q �-�߾��|K��KȊ� k�i`�i���xV�+��M���'v� ٓ�� \ No newline at end of file diff --git a/dmx_usb_module/.git/objects/11/24374d1091d38ce37280703b5df0b084ad67e2 b/dmx_usb_module/.git/objects/11/24374d1091d38ce37280703b5df0b084ad67e2 deleted file mode 100644 index 5f8643aed80d13cd0be8e05275c266d133f15dce..0000000000000000000000000000000000000000 GIT binary patch literal 0 Hc$@�s�pi��!?~�8][�鴽mSl���g7�F �RK)�9t�?"ąK{0t��^�X[��`��8�<�׵���=�`���u�I ��qc:�?��d� \ No newline at end of file diff --git a/dmx_usb_module/.git/objects/4b/76ed4be9816ae5c8552dcb6157f6d03b0ece28 b/dmx_usb_module/.git/objects/4b/76ed4be9816ae5c8552dcb6157f6d03b0ece28 deleted file mode 100644 --- a/dmx_usb_module/.git/objects/4b/76ed4be9816ae5c8552dcb6157f6d03b0ece28 +++ /dev/null @@ -1,1 +0,0 @@ -xڍα� P��wv ��N������<,)�0�/������ܧ\PhD��ң����X�Gp8�/ۍ��>LgV��̤aB�HѓK�PDV�w\���#�4�����u!%���9 ��Br�>M6�U��S�lMs�BQ�����ﭭ"ɑ3�O$F� \ No newline at end of file diff --git a/dmx_usb_module/.git/objects/59/83527abe20f19a9d4db5ea28fb6dfe871abc0e b/dmx_usb_module/.git/objects/59/83527abe20f19a9d4db5ea28fb6dfe871abc0e deleted file mode 100644 index 17c3013adcae56f4b5017b713458882cd44149b6..0000000000000000000000000000000000000000 GIT binary patch literal 0 Hc$@,W>�!N-��H�7H��j��*&Ɗ���N������=����ڏ�n�X~,�߾|\-��[s�>�CΞ+U)�Ő� ? � �_��x�����Y�X��m�#+��(��6t!��(�m�9nE�=�f-���0��+<��[T\BV \X�L {Mk/7dz��Xٴ(nj%-<��?[�� \ No newline at end of file diff --git a/dmx_usb_module/.git/objects/97/2aaf71b406124090ab8dd33c808d0a7b74bb26 b/dmx_usb_module/.git/objects/97/2aaf71b406124090ab8dd33c808d0a7b74bb26 deleted file mode 100644 --- a/dmx_usb_module/.git/objects/97/2aaf71b406124090ab8dd33c808d0a7b74bb26 +++ /dev/null @@ -1,2 +0,0 @@ -xڥ�K -�0@]��J�f�D�x�L&S+�M =��+�{o�x\�����~ת` =ZOI�M��]N(dØ�