Git with broken hash generation to generate collisions between object IDs. Don't use this! https://undefinedbehavior.de/posts/commit-vandalism/
Go to file
Avery Pennarun 9c632ea29c (Hopefully) fix PATH setting for msysgit.
Reported by Evan Shaw.  The problem is that $(git --exec-path) includes a
'git' binary which is incompatible with the one in /usr/bin; if you run it,
it gives you an error about libiconv2.dll.

You might think we could just add $(git --exec-path) at the *end* of PATH,
but then if there are multiple versions of git installed, we could end up
with the wrong one; earlier versions used to put git-sh-setup in /usr/bin,
so we'd pick up that one before the new one.

So now we just set PATH back to its original value right after running
git-sh-setup, and we should be okay.
2010-06-24 01:53:05 -04:00
.gitignore added temporary test dirs to gitignore 2010-01-12 23:27:39 +01:00
asciidoc.conf Add basic git-subtree manpage in asciidoc format. 2009-05-30 14:06:58 -04:00
COPYING Oops, forgot a COPYING file. It's GPLv2. 2009-11-15 12:13:19 -05:00
git-subtree basic options parsing and whatnot. 2009-04-24 14:13:34 -04:00
git-subtree.sh (Hopefully) fix PATH setting for msysgit. 2010-06-24 01:53:05 -04:00
git-subtree.txt Added new 'push' command and 2-parameter form of 'add'. 2010-02-13 14:45:04 -05:00
INSTALL Added new 'push' command and 2-parameter form of 'add'. 2010-02-13 14:45:04 -05:00
install.sh Added new 'push' command and 2-parameter form of 'add'. 2010-02-13 14:45:04 -05:00
Makefile Weird, I forgot to have 'make test' call test.sh. 2009-11-20 19:43:47 -05:00
manpage-base.xsl Add basic git-subtree manpage in asciidoc format. 2009-05-30 14:06:58 -04:00
manpage-normal.xsl Add basic git-subtree manpage in asciidoc format. 2009-05-30 14:06:58 -04:00
README Add a README that says to email me instead of using github mail. 2009-10-02 11:51:25 -04:00
shellopts.sh basic options parsing and whatnot. 2009-04-24 14:13:34 -04:00
test.sh Some recent tests accidentally depended on very new versions of git. 2010-02-08 19:44:41 -05:00
todo If someone provides a --prefix that ends with slash, strip the slash. 2009-10-02 16:08:58 -04:00

Please read git-subtree.txt for documentation.

Please don't contact me using github mail; it's slow, ugly, and worst of
all, redundant. Email me instead at apenwarr@gmail.com and I'll be happy to
help.

Avery