changeset 2042:8849c9e5da30 main

strip dmx_usb_module/.git dir
author drewp@bigasterisk.com
date Mon, 09 May 2022 21:44:04 -0700
parents d8bac44781d4
children 67575505c400
files dmx_usb_module/.git/HEAD dmx_usb_module/.git/config dmx_usb_module/.git/description dmx_usb_module/.git/hooks/applypatch-msg dmx_usb_module/.git/hooks/commit-msg dmx_usb_module/.git/hooks/post-commit dmx_usb_module/.git/hooks/post-update dmx_usb_module/.git/hooks/pre-applypatch dmx_usb_module/.git/hooks/pre-commit dmx_usb_module/.git/hooks/pre-rebase dmx_usb_module/.git/hooks/update dmx_usb_module/.git/index dmx_usb_module/.git/info/exclude dmx_usb_module/.git/objects/09/a7ca6e8bb4840cc61357def7895a4598142c8a dmx_usb_module/.git/objects/0d/133393d78155c20721d74b64713b7d9e310a08 dmx_usb_module/.git/objects/11/24374d1091d38ce37280703b5df0b084ad67e2 dmx_usb_module/.git/objects/1b/7da8e5d9bad8451eabc4d94778f6ddde2aaabe dmx_usb_module/.git/objects/30/20516006966064612bf57d0b57412bc7607737 dmx_usb_module/.git/objects/32/df0335b5c8a9bc0699aebe2ff529eff31ec7a9 dmx_usb_module/.git/objects/3b/faeb835bec3d26d8ae0fd9d6b9b1dc15eafa7a dmx_usb_module/.git/objects/4b/76ed4be9816ae5c8552dcb6157f6d03b0ece28 dmx_usb_module/.git/objects/59/83527abe20f19a9d4db5ea28fb6dfe871abc0e dmx_usb_module/.git/objects/61/c7237e8d3788b65671374e2af4f33136bbdb29 dmx_usb_module/.git/objects/63/8904db932344ab556249cad8fbf8a96401ba76 dmx_usb_module/.git/objects/69/e812ef2ddf693f4756cff770207a7725590877 dmx_usb_module/.git/objects/76/db37107d983b0200624288e16aeb6e52f92534 dmx_usb_module/.git/objects/80/fe73e82b9192acf1048e896d495d4d8f1e34ec dmx_usb_module/.git/objects/8b/b14e2cda4ee4c9abe220ff2a9d9d188c452a28 dmx_usb_module/.git/objects/97/2aaf71b406124090ab8dd33c808d0a7b74bb26 dmx_usb_module/.git/objects/a3/4d04d9f793e52e1007db3773dea6db56198b97 dmx_usb_module/.git/objects/a3/ef1197dc190290702e435e9e6aa7397f208080 dmx_usb_module/.git/objects/a8/a806887d380133db6e66c420da855288df837e dmx_usb_module/.git/objects/ae/e15dc567e332c5b5d12864dedc537319f93891 dmx_usb_module/.git/objects/bb/e41f112303889d9a83fafcb58886c8ad9e7a1d dmx_usb_module/.git/objects/c0/60b144142425f5a17a17c85f589d5a21d964c8 dmx_usb_module/.git/objects/e9/a70df4a0b058b02335256ea0920509b707ed25 dmx_usb_module/.git/objects/ef/5914a45a5b4ce698e7a54637b3553b7c262b09 dmx_usb_module/.git/refs/heads/master dmx_usb_module/.git/refs/heads/origin dmx_usb_module/.git/remotes/origin
diffstat 40 files changed, 0 insertions(+), 400 deletions(-) [+]
line wrap: on
line diff
--- a/dmx_usb_module/.git/HEAD	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-ref: refs/heads/master
--- a/dmx_usb_module/.git/config	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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
--- a/dmx_usb_module/.git/description	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-Unnamed repository; edit this file to name it for gitweb.
--- a/dmx_usb_module/.git/hooks/applypatch-msg	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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+"$@"}
-:
--- a/dmx_usb_module/.git/hooks/commit-msg	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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')"
--- a/dmx_usb_module/.git/hooks/post-commit	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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
--- a/dmx_usb_module/.git/hooks/post-update	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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
--- a/dmx_usb_module/.git/hooks/pre-applypatch	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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+"$@"}
-:
-
--- a/dmx_usb_module/.git/hooks/pre-commit	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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);
-'
-
--- a/dmx_usb_module/.git/hooks/pre-rebase	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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".
--- a/dmx_usb_module/.git/hooks/update	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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
Binary file dmx_usb_module/.git/index has changed
--- a/dmx_usb_module/.git/info/exclude	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -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]
-# *~
--- a/dmx_usb_module/.git/objects/09/a7ca6e8bb4840cc61357def7895a4598142c8a	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-xڥAn E0XHU/80(VUr\7XKY;o%L)e?<1gf$䅙10ciw0&S28dC^\x0-ɳZ~6nusCqD}E붺X:g;5
-X7> ]GkG.M=zR
\ No newline at end of file
--- a/dmx_usb_module/.git/objects/0d/133393d78155c20721d74b64713b7d9e310a08	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-xe_k0|KզjZHۤ$mv8sIZ)DǻK/llwZW:] 1!>pNfpuB̊qkD9>_[g6uL֪†"Ei`H&!&\u7q*FrVO eV1q0V([%bB{.=7`ϡX/^?;g@;`9{T<C..8$Q`e lRĢk-XDi4Dm#q+
-M֢Q	-߾|KKȊki`ixV+M'vٓ
\ No newline at end of file
Binary file dmx_usb_module/.git/objects/11/24374d1091d38ce37280703b5df0b084ad67e2 has changed
Binary file dmx_usb_module/.git/objects/1b/7da8e5d9bad8451eabc4d94778f6ddde2aaabe has changed
Binary file dmx_usb_module/.git/objects/30/20516006966064612bf57d0b57412bc7607737 has changed
Binary file dmx_usb_module/.git/objects/32/df0335b5c8a9bc0699aebe2ff529eff31ec7a9 has changed
--- a/dmx_usb_module/.git/objects/3b/faeb835bec3d26d8ae0fd9d6b9b1dc15eafa7a	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-xڥKj0D)z0jAd@ВZ3df&G}b+e`}B`RH'4r3".)yvةs&N+dLDIΆAqm>spi!?~8][鴽mSlg7FRK)9t?"ąK{0t^X[`8<׵=`uI
qc:?d
\ No newline at end of file
--- a/dmx_usb_module/.git/objects/4b/76ed4be9816ae5c8552dcb6157f6d03b0ece28	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-xڍα Pwv N<,)0/ܧ\PhDңXGp8/ۍ>LgV̤aBHѓKPDVw\#4u!%9 Br>M6USlMsBQﭭ"ɑ3O$F
\ No newline at end of file
Binary file dmx_usb_module/.git/objects/59/83527abe20f19a9d4db5ea28fb6dfe871abc0e has changed
Binary file dmx_usb_module/.git/objects/61/c7237e8d3788b65671374e2af4f33136bbdb29 has changed
Binary file dmx_usb_module/.git/objects/63/8904db932344ab556249cad8fbf8a96401ba76 has changed
Binary file dmx_usb_module/.git/objects/69/e812ef2ddf693f4756cff770207a7725590877 has changed
Binary file dmx_usb_module/.git/objects/76/db37107d983b0200624288e16aeb6e52f92534 has changed
Binary file dmx_usb_module/.git/objects/80/fe73e82b9192acf1048e896d495d4d8f1e34ec has changed
--- a/dmx_usb_module/.git/objects/8b/b14e2cda4ee4c9abe220ff2a9d9d188c452a28	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-xek0nVкƄMDj~0/-p=R&Owa@^ӺpmL((t06c:
-	`s!!Bfeskj}:4=mms4UKa[#B%Bz(ȶ>,W>!N-H7Hj*&ƊN=ڏnX~,߾|\-[s>CΞ+U)Ő?	
_xYXm#+(6t!(m9nE=f-0+<[T\BV\XL{Mk/7dzXٴ(nj%-<?[
\ No newline at end of file
--- a/dmx_usb_module/.git/objects/97/2aaf71b406124090ab8dd33c808d0a7b74bb26	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-xڥK
-0@]JfDxL&S+M	=+{ox\~ת`=ZOIM]N(dØ<JkQUYHiN3Ge!"O8ˁ=T*¥p/^wSYi-se91u0{mVmGB]LM'Zo2zN
\ No newline at end of file
Binary file dmx_usb_module/.git/objects/a3/4d04d9f793e52e1007db3773dea6db56198b97 has changed
Binary file dmx_usb_module/.git/objects/a3/ef1197dc190290702e435e9e6aa7397f208080 has changed
Binary file dmx_usb_module/.git/objects/a8/a806887d380133db6e66c420da855288df837e has changed
--- a/dmx_usb_module/.git/objects/ae/e15dc567e332c5b5d12864dedc537319f93891	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-xK
-0Ea*Ai]A764_{78&8vO{Duk[Iqsv]Dh3ъ5=Bھ0R'!W,
\ No newline at end of file
Binary file dmx_usb_module/.git/objects/bb/e41f112303889d9a83fafcb58886c8ad9e7a1d has changed
Binary file dmx_usb_module/.git/objects/c0/60b144142425f5a17a17c85f589d5a21d964c8 has changed
Binary file dmx_usb_module/.git/objects/e9/a70df4a0b058b02335256ea0920509b707ed25 has changed
Binary file dmx_usb_module/.git/objects/ef/5914a45a5b4ce698e7a54637b3553b7c262b09 has changed
--- a/dmx_usb_module/.git/refs/heads/master	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-74a4067667b4d009d33ce7f52045786735b0a137
--- a/dmx_usb_module/.git/refs/heads/origin	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-3bfaeb835bec3d26d8ae0fd9d6b9b1dc15eafa7a
--- a/dmx_usb_module/.git/remotes/origin	Mon May 09 21:42:55 2022 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-URL: http://www.erwinrol.com/git/dmx_usb_module
-Pull: refs/heads/master:refs/heads/origin