FailedOk

th/SRPMS[OK]
th/x32[OK]
th/i686[OK]
th/x86_64[OK]

ac/SRPMS[OK]
ac/i386[OK]
ac/i586[OK]
ac/i686[OK]
ac/alpha[OK]
ac/amd64[OK]
ac/athlon[OK]
ac/ppc[OK]
ac/sparc[OK]
ac/sparc64[OK]

Advanced Search
main()
Powered by PLD Linux
(c) 2002-2025 PLD Team
$Revision: 1.37 $
Powered by VAX.
Your IP: 18.97.14.86

git-core 4c22843c-77af-43e0-ba03-94209a230eda

Status:Failed
Source URL:https://buildlogs.pld-linux.org/pld/th/x86_64/FAIL/git-core,4c22843c-77af-43e0-ba03-94209a230eda.bz2
text/plain URL:View!
full text:View!
rpm -qa of builder:View!
Date:2025/10/18 02:38:58
Runtime:0:02:12.301070

Toc:

  • error 1
  • # test_grep "error: .* overwritten by checkout:" err.out
  • error 2
  • # test_grep "error: BOM is required" err.out
  • error 3
  • make[2]: *** [Makefile:82: t0028-working-tree-encoding.sh] Error 1
  • error 4
  • make[1]: *** [Makefile:63: test] Error 2
  • error 5
  • error: Bad exit status from /tmp/B.6ak6sxqb/BUILD/tmp/rpm-tmp.dfBZ4W (%build)
  • error 6
  • RPM build errors:
  • error 7
  • error: No files produced.

Content:

#			test_must_fail git add bebom.utf${i}le 2>err.out &&
#			test_grep "fatal: BOM is prohibited .* utf-${i}LE" err.out &&
#			test_grep "use UTF-${i} as working-tree-encoding" err.out &&
#	
#			cp lebom.utf${i}le.raw lebom.utf${i}le &&
#			test_must_fail git add lebom.utf${i}le 2>err.out &&
#			test_grep "fatal: BOM is prohibited .* utf-${i}LE" err.out &&
#			test_grep "use UTF-${i} as working-tree-encoding" err.out
#		
not ok 10 - check required UTF-32 BOM
#	
#			test_when_finished "git reset --hard HEAD" &&
#	
#			echo "*.utf${i} text working-tree-encoding=utf-${i}" >>.gitattributes &&
#	
#			cp nobom.utf${i}be.raw nobom.utf${i} &&
#			test_must_fail git add nobom.utf${i} 2>err.out &&
#			test_grep "fatal: BOM is required .* utf-${i}" err.out &&
#			test_grep "use UTF-${i}BE or UTF-${i}LE" err.out &&
#	
#			cp nobom.utf${i}le.raw nobom.utf${i} &&
#			test_must_fail git add nobom.utf${i} 2>err.out &&
#			test_grep "fatal: BOM is required .* utf-${i}" err.out &&
#			test_grep "use UTF-${i}BE or UTF-${i}LE" err.out
#		
not ok 11 - eol conversion for UTF-32 encoded files on checkout
#	
#			test_when_finished "rm -f crlf.utf${i}.raw lf.utf${i}.raw" &&
#			test_when_finished "git reset --hard HEAD^" &&
#	
#			write_utf${i} <lf.utf8.raw >lf.utf${i}.raw &&
#			write_utf${i} <crlf.utf8.raw >crlf.utf${i}.raw &&
#			cp crlf.utf${i}.raw eol.utf${i} &&
#	
#			cat >expectIndexLF <<-EOF &&
#				i/lf    w/-text attr/text             	eol.utf${i}
#			EOF
#	
#			git add eol.utf${i} &&
#			git commit -m eol &&
#	
#			# UTF-${i} with CRLF (Windows line endings)
#			rm eol.utf${i} &&
#			git -c core.eol=crlf checkout eol.utf${i} &&
#			test_cmp_bin crlf.utf${i}.raw eol.utf${i} &&
#	
#			# Although the file has CRLF in the working tree,
#			# ensure LF in the index
#			git ls-files --eol eol.utf${i} >actual &&
#			test_cmp expectIndexLF actual &&
#	
#			# UTF-${i} with LF (Unix line endings)
#			rm eol.utf${i} &&
#			git -c core.eol=lf checkout eol.utf${i} &&
#			test_cmp_bin lf.utf${i}.raw eol.utf${i} &&
#	
#			# The file LF in the working tree, ensure LF in the index
#			git ls-files --eol eol.utf${i} >actual &&
#			test_cmp expectIndexLF actual
#		
not ok 12 - check unsupported encodings
#	
#		test_when_finished "git reset --hard HEAD" &&
#	
#		echo "*.set text working-tree-encoding" >.gitattributes &&
#		printf "set" >t.set &&
#		test_must_fail git add t.set 2>err.out &&
#		test_grep "true/false are no valid working-tree-encodings" err.out &&
#	
#		echo "*.unset text -working-tree-encoding" >.gitattributes &&
#		printf "unset" >t.unset &&
#		git add t.unset &&
#	
#		echo "*.empty text working-tree-encoding=" >.gitattributes &&
#		printf "empty" >t.empty &&
#		git add t.empty &&
#	
#		echo "*.garbage text working-tree-encoding=garbage" >.gitattributes &&
#		printf "garbage" >t.garbage &&
#		test_must_fail git add t.garbage 2>err.out &&
#		test_grep "failed to encode" err.out
#	
not ok 13 - error if encoding round trip is not the same during refresh
#	
#		BEFORE_STATE=$(git rev-parse HEAD) &&
#		test_when_finished "git reset --hard $BEFORE_STATE" &&
#	
#		# Add and commit a UTF-16 file but skip the "working-tree-encoding"
#		# filter. Consequently, the in-repo representation is UTF-16 and not
#		# UTF-8. This simulates a Git version that has no working tree encoding
#		# support.
#		echo "*.utf16le text working-tree-encoding=utf-16le" >.gitattributes &&
#		echo "hallo" >nonsense.utf16le &&
#		TEST_HASH=$(git hash-object --no-filters -w nonsense.utf16le) &&
#		git update-index --add --cacheinfo 100644 $TEST_HASH nonsense.utf16le &&
#		COMMIT=$(git commit-tree -p $(git rev-parse HEAD) -m "plain commit" $(git write-tree)) &&
#		git update-ref refs/heads/main $COMMIT &&
#	
#		test_must_fail git checkout HEAD^ 2>err.out &&
#		test_grep "error: .* overwritten by checkout:" err.out
#	
not ok 14 - error if encoding garbage is already in Git
#	
#		BEFORE_STATE=$(git rev-parse HEAD) &&
#		test_when_finished "git reset --hard $BEFORE_STATE" &&
#	
#		# Skip the UTF-16 filter for the added file
#		# This simulates a Git version that has no checkoutEncoding support
#		cp nobom.utf16be.raw nonsense.utf16 &&
#		TEST_HASH=$(git hash-object --no-filters -w nonsense.utf16) &&
#		git update-index --add --cacheinfo 100644 $TEST_HASH nonsense.utf16 &&
#		COMMIT=$(git commit-tree -p $(git rev-parse HEAD) -m "plain commit" $(git write-tree)) &&
#		git update-ref refs/heads/main $COMMIT &&
#	
#		git diff 2>err.out &&
#		test_grep "error: BOM is required" err.out
#	
ok 15 # skip check roundtrip encoding (missing ICONV_SHIFT_JIS)
not ok 16 - Commit UTF-8, checkout UTF-8
#	
#			test_when_finished "git checkout HEAD -- .gitattributes" &&
#	
#			test_ext="commit_utf8_checkout_$encoding" &&
#			test_file="test.$test_ext" &&
#	
#			# Commit as UTF-8
#			echo "*.$test_ext text working-tree-encoding=UTF-8" >.gitattributes &&
#			printf "$orig_string" >$test_file &&
#			git add $test_file &&
#			git commit -m "Test data" &&
#	
#			# Checkout in tested encoding
#			rm $test_file &&
#			echo "*.$test_ext text working-tree-encoding=$encoding" >.gitattributes &&
#			git checkout HEAD -- $test_file &&
#	
#			# Test
#			printf $expect_bytes >$test_file.raw &&
#			test_cmp_bin $test_file.raw $test_file
#		
not ok 17 - Commit UTF-8, checkout UTF-16LE
#	
#			test_when_finished "git checkout HEAD -- .gitattributes" &&
#	
#			test_ext="commit_utf8_checkout_$encoding" &&
#			test_file="test.$test_ext" &&
#	
#			# Commit as UTF-8
#			echo "*.$test_ext text working-tree-encoding=UTF-8" >.gitattributes &&
#			printf "$orig_string" >$test_file &&
#			git add $test_file &&
#			git commit -m "Test data" &&
#	
#			# Checkout in tested encoding
#			rm $test_file &&
#			echo "*.$test_ext text working-tree-encoding=$encoding" >.gitattributes &&
#			git checkout HEAD -- $test_file &&
#	
#			# Test
#			printf $expect_bytes >$test_file.raw &&
#			test_cmp_bin $test_file.raw $test_file
#		
not ok 18 - Commit UTF-8, checkout UTF-16BE
#	
#			test_when_finished "git checkout HEAD -- .gitattributes" &&
#	
#			test_ext="commit_utf8_checkout_$encoding" &&
#			test_file="test.$test_ext" &&
#	
#			# Commit as UTF-8
#			echo "*.$test_ext text working-tree-encoding=UTF-8" >.gitattributes &&
#			printf "$orig_string" >$test_file &&
#			git add $test_file &&
#			git commit -m "Test data" &&
#	
#			# Checkout in tested encoding
#			rm $test_file &&
#			echo "*.$test_ext text working-tree-encoding=$encoding" >.gitattributes &&
#			git checkout HEAD -- $test_file &&
#	
#			# Test
#			printf $expect_bytes >$test_file.raw &&
#			test_cmp_bin $test_file.raw $test_file
#		
not ok 19 - Commit UTF-8, checkout UTF-16LE-BOM
#	
#			test_when_finished "git checkout HEAD -- .gitattributes" &&
#	
#			test_ext="commit_utf8_checkout_$encoding" &&
#			test_file="test.$test_ext" &&
#	
#			# Commit as UTF-8
#			echo "*.$test_ext text working-tree-encoding=UTF-8" >.gitattributes &&
#			printf "$orig_string" >$test_file &&
#			git add $test_file &&
#			git commit -m "Test data" &&
#	
#			# Checkout in tested encoding
#			rm $test_file &&
#			echo "*.$test_ext text working-tree-encoding=$encoding" >.gitattributes &&
#			git checkout HEAD -- $test_file &&
#	
#			# Test
#			printf $expect_bytes >$test_file.raw &&
#			test_cmp_bin $test_file.raw $test_file
#		
not ok 20 - Commit UTF-8, checkout UTF-16BE-BOM
#	
#			test_when_finished "git checkout HEAD -- .gitattributes" &&
#	
#			test_ext="commit_utf8_checkout_$encoding" &&
#			test_file="test.$test_ext" &&
#	
#			# Commit as UTF-8
#			echo "*.$test_ext text working-tree-encoding=UTF-8" >.gitattributes &&
#			printf "$orig_string" >$test_file &&
#			git add $test_file &&
#			git commit -m "Test data" &&
#	
#			# Checkout in tested encoding
#			rm $test_file &&
#			echo "*.$test_ext text working-tree-encoding=$encoding" >.gitattributes &&
#			git checkout HEAD -- $test_file &&
#	
#			# Test
#			printf $expect_bytes >$test_file.raw &&
#			test_cmp_bin $test_file.raw $test_file
#		
not ok 21 - Commit UTF-8, checkout UTF-32LE
#	
#			test_when_finished "git checkout HEAD -- .gitattributes" &&
#	
#			test_ext="commit_utf8_checkout_$encoding" &&
#			test_file="test.$test_ext" &&
#	
#			# Commit as UTF-8
#			echo "*.$test_ext text working-tree-encoding=UTF-8" >.gitattributes &&
#			printf "$orig_string" >$test_file &&
#			git add $test_file &&
#			git commit -m "Test data" &&
#	
#			# Checkout in tested encoding
#			rm $test_file &&
#			echo "*.$test_ext text working-tree-encoding=$encoding" >.gitattributes &&
#			git checkout HEAD -- $test_file &&
#	
#			# Test
#			printf $expect_bytes >$test_file.raw &&
#			test_cmp_bin $test_file.raw $test_file
#		
not ok 22 - Commit UTF-8, checkout UTF-32BE
#	
#			test_when_finished "git checkout HEAD -- .gitattributes" &&
#	
#			test_ext="commit_utf8_checkout_$encoding" &&
#			test_file="test.$test_ext" &&
#	
#			# Commit as UTF-8
#			echo "*.$test_ext text working-tree-encoding=UTF-8" >.gitattributes &&
#			printf "$orig_string" >$test_file &&
#			git add $test_file &&
#			git commit -m "Test data" &&
#	
#			# Checkout in tested encoding
#			rm $test_file &&
#			echo "*.$test_ext text working-tree-encoding=$encoding" >.gitattributes &&
#			git checkout HEAD -- $test_file &&
#	
#			# Test
#			printf $expect_bytes >$test_file.raw &&
#			test_cmp_bin $test_file.raw $test_file
#		
# failed 21 among 22 test(s)
1..22
make[2]: *** [Makefile:82: t0028-working-tree-encoding.sh] Error 1
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: *** Waiting for unfinished jobs....
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0070-fundamental.sh ***
ok 1 - mktemp to nonexistent directory prints filename
ok 2 - mktemp to unwritable directory prints filename
ok 3 - git_mkstemps_mode does not fail if fd 0 is not open
ok 4 - check for a bug in the regex routines
ok 5 - incomplete sideband messages are reassembled
ok 6 - eof on sideband message is reported
ok 7 - missing sideband designator is reported
ok 8 - unpack-sideband: --no-chomp-newline
ok 9 - unpack-sideband: --chomp-newline (default)
ok 10 - unpack-sideband: packet_reader_read() consumes sideband, no chomp payload
ok 11 - unpack-sideband: packet_reader_read() consumes sideband, chomp payload
# passed all 11 test(s)
1..11
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0056-git-C.sh ***
ok 1 - "git -C <path>" runs git from the directory <path>
ok 2 - "git -C <path>" with an empty <path> is a no-op
ok 3 - Multiple -C options: "-C dir1 -C dir2" is equivalent to "-C dir1/dir2"
ok 4 - Effect on --git-dir option: "-C c --git-dir=a.git" is equivalent to "--git-dir c/a.git"
ok 5 - Order should not matter: "--git-dir=a.git -C c" is equivalent to "-C c --git-dir=a.git"
ok 6 - Effect on --work-tree option: "-C c/a.git --work-tree=../a"  is equivalent to "--work-tree=c/a --git-dir=c/a.git"
ok 7 - Order should not matter: "--work-tree=../a -C c/a.git" is equivalent to "-C c/a.git --work-tree=../a"
ok 8 - Effect on --git-dir and --work-tree options - "-C c --git-dir=a.git --work-tree=a" is equivalent to "--git-dir=c/a.git --work-tree=c/a"
ok 9 - Order should not matter: "-C c --git-dir=a.git --work-tree=a" is equivalent to "--git-dir=a.git -C c --work-tree=a"
ok 10 - Order should not matter: "-C c --git-dir=a.git --work-tree=a" is equivalent to "--git-dir=a.git --work-tree=a -C c"
ok 11 - Relative followed by fullpath: "-C ./here -C /there" is equivalent to "-C /there"
# passed all 11 test(s)
1..11
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0020-crlf.sh ***
ok 1 - setup
ok 2 - safecrlf: autocrlf=input, all CRLF
ok 3 - safecrlf: autocrlf=input, mixed LF/CRLF
ok 4 - safecrlf: autocrlf=true, all LF
ok 5 - safecrlf: autocrlf=true mixed LF/CRLF
ok 6 - safecrlf: print warning only once
ok 7 - safecrlf: git diff demotes safecrlf=true to warn
ok 8 - safecrlf: no warning with safecrlf=false
ok 9 - switch off autocrlf, safecrlf, reset HEAD
ok 10 - update with autocrlf=input
ok 11 - update with autocrlf=true
ok 12 - checkout with autocrlf=true
ok 13 - checkout with autocrlf=input
ok 14 - apply patch (autocrlf=input)
ok 15 - apply patch --cached (autocrlf=input)
ok 16 - apply patch --index (autocrlf=input)
ok 17 - apply patch (autocrlf=true)
ok 18 - apply patch --cached (autocrlf=true)
ok 19 - apply patch --index (autocrlf=true)
ok 20 - .gitattributes says two is binary
ok 21 - .gitattributes says two is input
ok 22 - .gitattributes says two and three are text
ok 23 - in-tree .gitattributes (1)
ok 24 - in-tree .gitattributes (2)
ok 25 - in-tree .gitattributes (3)
ok 26 - in-tree .gitattributes (4)
ok 27 - checkout with existing .gitattributes
ok 28 - checkout when deleting .gitattributes
ok 29 - invalid .gitattributes (must not crash)
ok 30 - setting up for new autocrlf tests
ok 31 - report no change after setting autocrlf
ok 32 - files are clean after checkout
ok 33 - LF only file gets CRLF with autocrlf
ok 34 - Mixed file is still mixed with autocrlf
ok 35 - CRLF only file has CRLF with autocrlf
ok 36 - New CRLF file gets LF in repo
# passed all 36 test(s)
1..36
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0092-diagnose.sh ***
ok 1 - creates diagnostics zip archive
ok 2 - counts loose objects
ok 3 - --mode=stats excludes .git dir contents
ok 4 - --mode=all includes .git dir contents
# passed all 4 test(s)
1..4
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0101-at-syntax.sh ***
ok 1 - setup
ok 2 - @{0} shows current
ok 3 - @{1} shows old
ok 4 - @{now} shows current
ok 5 - @{2001-09-17} (before the first commit) shows old
ok 6 - silly approxidates work
ok 7 - notice misspelled upstream
ok 8 - complain about total nonsense
# passed all 8 test(s)
1..8
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0081-find-pack.sh ***
ok 1 - setup
ok 2 - repack everything into a single packfile
ok 3 - add more packfiles
ok 4 - add more commits (as loose objects)
# passed all 4 test(s)
1..4
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0095-bloom.sh ***
ok 1 - compute unseeded murmur3 hash for empty string
ok 2 - compute unseeded murmur3 hash for test string 1
ok 3 - compute unseeded murmur3 hash for test string 2
ok 4 - compute unseeded murmur3 hash for test string 3
ok 5 - compute bloom key for empty string
ok 6 - compute bloom key for whitespace
ok 7 - compute bloom key for test string 1
ok 8 - compute bloom key for test string 2
ok 9 - get bloom filters for commit with no changes
ok 10 - get bloom filter for commit with 10 changes
ok 11 # skip get bloom filter for commit with 513 changes (missing EXPENSIVE)
# passed all 11 test(s)
1..11
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0068-for-each-repo.sh ***
ok 1 - run based on configured value
ok 2 - do nothing on empty config
ok 3 - error on bad config keys
ok 4 - error on NULL value for config keys
ok 5 - --keep-going
# passed all 5 test(s)
1..5
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0091-bugreport.sh ***
ok 1 - create a report
ok 2 - report contains wanted template (before first section)
ok 3 - sanity check "System Info" section
ok 4 - dies if file with same name as report already exists
ok 5 - --output-directory puts the report in the provided dir
ok 6 - incorrect arguments abort with usage
ok 7 - incorrect positional arguments abort with usage and hint
ok 8 - runs outside of a git dir
ok 9 - can create leading directories outside of a git dir
ok 10 - indicates populated hooks
ok 11 - --diagnose creates diagnostics zip archive
ok 12 - --diagnose=stats excludes .git dir contents
ok 13 - --diagnose=all includes .git dir contents
# passed all 13 test(s)
1..13
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0201-gettext-fallbacks.sh ***
# lib-gettext: No is_IS UTF-8 locale available
# lib-gettext: No is_IS ISO-8859-1 locale available
ok 1 - sanity: $GIT_INTERNAL_GETTEXT_SH_SCHEME is set (to fallthrough)
ok 2 - sanity: $GIT_INTERNAL_GETTEXT_TEST_FALLBACKS is set
ok 3 - sanity: $GIT_INTERNAL_GETTEXT_SH_SCHEME" is fallthrough
ok 4 - gettext: our gettext() fallback has pass-through semantics
ok 5 - eval_gettext: our eval_gettext() fallback has pass-through semantics
ok 6 - eval_gettext: our eval_gettext() fallback can interpolate variables
ok 7 - eval_gettext: our eval_gettext() fallback can interpolate variables with spaces
ok 8 - eval_gettext: our eval_gettext() fallback can interpolate variables with spaces and quotes
# passed all 8 test(s)
1..8
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0200-gettext-basic.sh ***
# lib-gettext: Found 'is_IS.utf8' as an is_IS UTF-8 locale
# lib-gettext: Found 'is_IS.iso88591' as an is_IS ISO-8859-1 locale
ok 1 - sanity: $GIT_INTERNAL_GETTEXT_SH_SCHEME is set (to gnu)
ok 2 - sanity: $TEXTDOMAIN is git
ok 3 - xgettext sanity: Perl _() strings are not extracted
ok 4 - xgettext sanity: Comment extraction with --add-comments
ok 5 - xgettext sanity: Comment extraction with --add-comments stops at statements
ok 6 - sanity: $TEXTDOMAINDIR exists without NO_GETTEXT=YesPlease
ok 7 - sanity: Icelandic locale was compiled
ok 8 - sanity: gettext("") metadata is OK
ok 9 - sanity: gettext(unknown) is passed through
ok 10 - xgettext: C extraction of _() and N_() strings
ok 11 - xgettext: C extraction with %s
ok 12 - xgettext: Shell extraction
ok 13 - xgettext: Shell extraction with $variable
ok 14 - xgettext: Perl extraction
ok 15 - xgettext: Perl extraction with %s
ok 16 - sanity: Some gettext("") data for real locale
# passed all 16 test(s)
1..16
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0061-run-command.sh ***
ok 1 # skip subprocess inherits only std handles (missing MINGW)
ok 2 - start_command reports ENOENT (slash)
ok 3 - start_command reports ENOENT (no slash)
ok 4 - run_command can run a command
ok 5 - run_command is restricted to PATH
ok 6 - run_command can run a script without a #! line
ok 7 - run_command does not try to execute a directory
ok 8 - run_command passes over non-executable file
ok 9 - run_command reports EACCES
ok 10 - unreadable directory in PATH
ok 11 - run_command runs in parallel with more jobs available than tasks
ok 12 - run_command runs ungrouped in parallel with more jobs available than tasks
ok 13 - run_command runs in parallel with as many jobs as tasks
ok 14 - run_command runs ungrouped in parallel with as many jobs as tasks
ok 15 - run_command runs in parallel with more tasks than jobs available
ok 16 - run_command runs ungrouped in parallel with more tasks than jobs available
ok 17 - run_command is asked to abort gracefully
ok 18 - run_command is asked to abort gracefully (ungroup)
ok 19 - run_command outputs 
ok 20 - run_command outputs (ungroup) 
ok 21 - GIT_TRACE with environment variables
ok 22 # skip verify curlies are quoted properly (missing MINGW)
ok 23 # skip can spawn .bat with argv[0] containing spaces (missing MINGW)
# passed all 23 test(s)
1..23
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0100-previous.sh ***
ok 1 - branch -d @{-1}
ok 2 - branch -d @{-12} when there is not enough switches yet
ok 3 - merge @{-1}
ok 4 - merge @{-1}~1
ok 5 - merge @{-100} before checking out that many branches yet
ok 6 - log -g @{-1}
# passed all 6 test(s)
1..6
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0030-stripspace.sh ***
ok 1 - long lines without spaces should be unchanged
ok 2 - lines with spaces at the beginning should be unchanged
ok 3 - lines with intermediate spaces should be unchanged
ok 4 - consecutive blank lines should be unified
ok 5 - only consecutive blank lines should be completely removed
ok 6 - consecutive blank lines at the beginning should be removed
ok 7 - consecutive blank lines at the end should be removed
ok 8 - text without newline at end should end with newline
ok 9 - text plus spaces without newline at end should end with newline
ok 10 - text plus spaces without newline at end should not show spaces
ok 11 - text plus spaces without newline should show the correct lines
ok 12 - text plus spaces at end should not show spaces
ok 13 - text plus spaces at end should be cleaned and newline must remain
ok 14 - spaces with newline at end should be replaced with empty string
ok 15 - spaces without newline at end should not show spaces
ok 16 - spaces without newline at end should be replaced with empty string
ok 17 - consecutive text lines should be unchanged
ok 18 - strip comments, too
ok 19 - strip comments with changed comment char
ok 20 - strip comments with changed comment string
ok 21 - newline as commentchar is forbidden
ok 22 - empty commentchar is forbidden
ok 23 - -c with single line
ok 24 - -c with single line followed by empty line
ok 25 - -c with newline only
ok 26 - --comment-lines with single line
ok 27 - -c with changed comment char
ok 28 - -c with comment char defined in .git/config
ok 29 - -c outside git repository
ok 30 - avoid SP-HT sequence in commented line
# passed all 30 test(s)
1..30
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0006-date.sh ***
ok 1 - relative date (5 seconds ago)
ok 2 - relative date (5 minutes ago)
ok 3 - relative date (5 hours ago)
ok 4 - relative date (5 days ago)
ok 5 - relative date (3 weeks ago)
ok 6 - relative date (5 months ago)
ok 7 - relative date (1 year, 2 months ago)
ok 8 - relative date (1 year, 9 months ago)
ok 9 - relative date (20 years ago)
ok 10 - relative date (12 months ago)
ok 11 - relative date (2 years ago)
ok 12 - show date (iso8601:1466000000 +0200)
ok 13 - show date (iso8601-strict:1466000000 +0200)
ok 14 - show date (iso8601-strict:1466000000 +0000)
ok 15 - show date (rfc2822:1466000000 +0200)
ok 16 - show date (short:1466000000 +0200)
ok 17 - show date (default:1466000000 +0200)
ok 18 - show date (raw:1466000000 +0200)
ok 19 - show date (unix:1466000000 +0200)
ok 20 - show date (iso-local:1466000000 +0200)
ok 21 - show date (raw-local:1466000000 +0200)
ok 22 - show date (unix-local:1466000000 +0200)
ok 23 - show date (format:%z:1466000000 +0200)
ok 24 - show date (format-local:%z:1466000000 +0200)
ok 25 - show date (format:%Z:1466000000 +0200)
ok 26 - show date (format-local:%Z:1466000000 +0200)
ok 27 - show date (format:%%z:1466000000 +0200)
ok 28 - show date (format-local:%%z:1466000000 +0200)
ok 29 - show date (format:%Y-%m-%d %H:%M:%S:1466000000 +0200)
ok 30 - show date (format-local:%Y-%m-%d %H:%M:%S:1466000000 +0200)
ok 31 - show date (format:%s:123456789 +1234)
ok 32 - show date (format:%s:123456789 -1234)
ok 33 - show date (format-local:%s:123456789 -1234)
ok 34 - show date (iso8601:1466000000 -0200)
ok 35 - show date (iso8601-strict:1466000000 -0200)
ok 36 - show date (rfc2822:1466000000 -0200)
ok 37 - show date (default:1466000000 -0200)
ok 38 - show date (raw:1466000000 -0200)
ok 39 - show date (iso:5758122296 -0400)
ok 40 - show date (iso-local:5758122296 -0400)
ok 41 - parse date (2008) -> bad
ok 42 - parse date (2008-02) -> bad
ok 43 - parse date (2008-02-14) -> bad
ok 44 - parse date (2008-02-14 20:30:45) -> 2008-02-14 20:30:45 +0000
ok 45 - parse date (2008-02-14 20:30:45 -0500) -> 2008-02-14 20:30:45 -0500
ok 46 - parse date (2008.02.14 20:30:45 -0500) -> 2008-02-14 20:30:45 -0500
ok 47 - parse date (20080214T20:30:45) -> 2008-02-14 20:30:45 +0000
ok 48 - parse date (20080214T20:30) -> 2008-02-14 20:30:00 +0000
ok 49 - parse date (20080214T20) -> 2008-02-14 20:00:00 +0000
ok 50 - parse date (20080214T203045) -> 2008-02-14 20:30:45 +0000
ok 51 - parse date (20080214T2030) -> 2008-02-14 20:30:00 +0000
ok 52 - parse date (20080214T000000.20) -> 2008-02-14 00:00:00 +0000
ok 53 - parse date (20080214T00:00:00.20) -> 2008-02-14 00:00:00 +0000
ok 54 - parse date (20080214T203045-04:00) -> 2008-02-14 20:30:45 -0400
ok 55 - parse date (20080214T203045 -04:00) -> 2008-02-14 20:30:45 -0400
ok 56 - parse date (20080214T203045.019-04:00) -> 2008-02-14 20:30:45 -0400
ok 57 - parse date (2008-02-14 20:30:45.019-04:00) -> 2008-02-14 20:30:45 -0400
ok 58 - parse date (2008-02-14 20:30:45 -0015) -> 2008-02-14 20:30:45 -0015
ok 59 - parse date (2008-02-14 20:30:45 -5) -> 2008-02-14 20:30:45 +0000
ok 60 - parse date (2008-02-14 20:30:45 -5:) -> 2008-02-14 20:30:45 +0000
ok 61 - parse date (2008-02-14 20:30:45 -05) -> 2008-02-14 20:30:45 -0500
ok 62 - parse date (2008-02-14 20:30:45 -:30) -> 2008-02-14 20:30:45 +0000
ok 63 - parse date (2008-02-14 20:30:45 -05:00) -> 2008-02-14 20:30:45 -0500
ok 64 - parse date (2008-02-14 20:30:45 TZ=EST5) -> 2008-02-14 20:30:45 -0500
ok 65 - parse date (Thu, 7 Apr 2005 15:14:13 -0700) -> 2005-04-07 15:14:13 -0700
ok 66 - parse date (1970-01-01 00:00:00) -> 1970-01-01 00:00:00 +0000
ok 67 - parse date (1970-01-01 00:00:00 +00) -> 1970-01-01 00:00:00 +0000
ok 68 - parse date (1970-01-01 00:00:00 Z) -> 1970-01-01 00:00:00 +0000
ok 69 - parse date (1970-01-01 00:00:00 -01) -> 1970-01-01 00:00:00 -0100
ok 70 - parse date (1970-01-01 00:00:00 +01) -> bad
ok 71 - parse date (1970-01-01 00:00:00 +11) -> bad
ok 72 - parse date (1970-01-01 00:59:59 +01) -> bad
ok 73 - parse date (1970-01-01 01:00:00 +01) -> 1970-01-01 01:00:00 +0100
ok 74 - parse date (1970-01-01 01:00:00 +11) -> bad
ok 75 - parse date (1970-01-02 00:00:00 +11) -> 1970-01-02 00:00:00 +1100
ok 76 - parse date (1969-12-31 23:59:59) -> bad
ok 77 - parse date (1969-12-31 23:59:59 +00) -> bad
ok 78 - parse date (1969-12-31 23:59:59 Z) -> bad
ok 79 - parse date (1969-12-31 23:59:59 +11) -> bad
ok 80 - parse date (1969-12-31 23:59:59 -11) -> bad
ok 81 - parse date (2099-12-31 23:59:59) -> 2099-12-31 23:59:59 +0000
ok 82 - parse date (2099-12-31 23:59:59 +00) -> 2099-12-31 23:59:59 +0000
ok 83 - parse date (2099-12-31 23:59:59 Z) -> 2099-12-31 23:59:59 +0000
ok 84 - parse date (2099-12-31 23:59:59 +01) -> 2099-12-31 23:59:59 +0100
ok 85 - parse date (2099-12-31 23:59:59 -01) -> bad
ok 86 - parse date (2099-12-31 23:59:59 -11) -> bad
ok 87 - parse date (2099-12-31 23:00:00 -01) -> bad
ok 88 - parse date (2099-12-31 22:59:59 -01) -> 2099-12-31 22:59:59 -0100
ok 89 - parse date (2100-00-00 00:00:00) -> bad
ok 90 - parse date (2099-12-30 00:00:00 -11) -> 2099-12-30 00:00:00 -1100
ok 91 - parse date (2100-00-00 00:00:00 +00) -> bad
ok 92 - parse date (2100-00-00 00:00:00 Z) -> bad
ok 93 - parse date (2100-00-00 00:00:00 -11) -> bad
ok 94 - parse date (2100-00-00 00:00:00 +11) -> bad
ok 95 - parse approxidate (now)
ok 96 - parse approxidate (5 seconds ago)
ok 97 - parse approxidate (5.seconds.ago)
ok 98 - parse approxidate (10.minutes.ago)
ok 99 - parse approxidate (yesterday)
ok 100 - parse approxidate (3.days.ago)
ok 101 - parse approxidate (12:34:56.3.days.ago)
ok 102 - parse approxidate (3.weeks.ago)
ok 103 - parse approxidate (3.months.ago)
ok 104 - parse approxidate (2.years.3.months.ago)
ok 105 - parse approxidate (6am yesterday)
ok 106 - parse approxidate (6pm yesterday)
ok 107 - parse approxidate (3:00)
ok 108 - parse approxidate (15:00)
ok 109 - parse approxidate (noon today)
ok 110 - parse approxidate (noon yesterday)
ok 111 - parse approxidate (January 5th noon pm)
ok 112 - parse approxidate (10am noon)
ok 113 - parse approxidate (last tuesday)
ok 114 - parse approxidate (July 5th)
ok 115 - parse approxidate (06/05/2009)
ok 116 - parse approxidate (06.05.2009)
ok 117 - parse approxidate (Jun 6, 5AM)
ok 118 - parse approxidate (5AM Jun 6)
ok 119 - parse approxidate (6AM, June 7, 2009)
ok 120 - parse approxidate (2008-12-01)
ok 121 - parse approxidate (2009-12-01)
ok 122 - human date 1251642000
ok 123 - human date 1251228000
ok 124 - human date 1249932000
ok 125 - human date 1238660000
ok 126 - human date 1220210400
ok 127 - human date 1214160000
ok 128 - human date 1196472000
ok 129 - human date 621660000
# passed all 129 test(s)
1..129
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0040-parse-options.sh ***
ok 1 - test help
ok 2 - OPT_BOOL() #1
ok 3 - OPT_BOOL() #2
ok 4 - OPT_BOOL() #3
ok 5 - OPT_BOOL() #4
ok 6 - OPT_BOOL() #5
ok 7 - OPT_BOOL() is idempotent #1
ok 8 - OPT_BOOL() is idempotent #2
ok 9 - OPT_BOOL() negation #1
ok 10 - OPT_BOOL() negation #2
ok 11 - OPT_BOOL() no negation #1
ok 12 - OPT_BOOL() no negation #2
ok 13 - OPT_BOOL() positivation
ok 14 - OPT_INTEGER() negative
ok 15 - OPT_INTEGER() kilo
ok 16 - OPT_INTEGER() negative kilo
ok 17 - OPT_UNSIGNED() simple
ok 18 - OPT_UNSIGNED() kilo
ok 19 - OPT_UNSIGNED() mega
ok 20 - OPT_UNSIGNED() giga
ok 21 - OPT_UNSIGNED() 3giga
ok 22 - short options
ok 23 - long options
ok 24 - abbreviate to something longer than SHA1 length
ok 25 - missing required value
ok 26 - superfluous value provided: boolean
ok 27 - superfluous value provided: boolean, abbreviated
ok 28 - superfluous value provided: cmdmode
ok 29 - intermingled arguments
ok 30 - unambiguously abbreviated option
ok 31 - unambiguously abbreviated option with "="
ok 32 - ambiguously abbreviated option
ok 33 - non ambiguous option (after two options it abbreviates)
ok 34 - Alias options do not contribute to abbreviation
ok 35 - detect possible typos
ok 36 - detect possible typos
ok 37 - OPT_CALLBACK() and OPT_BIT() work
ok 38 - OPT_CALLBACK() and callback errors work
ok 39 - OPT_BIT() and OPT_SET_INT() work
ok 40 - OPT_NEGBIT() and OPT_SET_INT() work
ok 41 - OPT_BIT() works
ok 42 - OPT_NEGBIT() works
ok 43 - OPT_CMDMODE() works
ok 44 - OPT_CMDMODE() detects incompatibility (1)
ok 45 - OPT_CMDMODE() detects incompatibility (2)
ok 46 - OPT_CMDMODE() detects incompatibility (3)
ok 47 - OPT_CMDMODE() detects incompatibility (4)
ok 48 - OPT_COUNTUP() with PARSE_OPT_NODASH works
ok 49 - OPT_NUMBER_CALLBACK() works
ok 50 - negation of OPT_NONEG flags is not ambiguous
ok 51 - --list keeps list of strings
ok 52 - --no-list resets list
ok 53 - multiple quiet levels
ok 54 - multiple verbose levels
ok 55 - --no-quiet sets --quiet to 0
ok 56 - --no-quiet resets multiple -q to 0
ok 57 - --no-verbose sets verbose to 0
ok 58 - --no-verbose resets multiple verbose to 0
ok 59 - GIT_TEST_DISALLOW_ABBREVIATED_OPTIONS works
ok 60 - --end-of-options treats remainder as args
ok 61 - KEEP_DASHDASH works
ok 62 - KEEP_ARGV0 works
ok 63 - STOP_AT_NON_OPTION works
ok 64 - KEEP_UNKNOWN_OPT works
ok 65 - NO_INTERNAL_HELP works for -h
ok 66 - NO_INTERNAL_HELP works for --help
ok 67 - NO_INTERNAL_HELP works for --help-all
ok 68 - KEEP_UNKNOWN_OPT | NO_INTERNAL_HELP works
ok 69 - subcommand - no subcommand shows error and usage
ok 70 - subcommand - subcommand after -- shows error and usage
ok 71 - subcommand - subcommand after --end-of-options shows error and usage
ok 72 - subcommand - unknown subcommand shows error and usage
ok 73 - subcommand - subcommands cannot be abbreviated
ok 74 - subcommand - no negated subcommands
ok 75 - subcommand - simple
ok 76 - subcommand - stop parsing at the first subcommand
ok 77 - subcommand - KEEP_ARGV0
ok 78 - subcommand - SUBCOMMAND_OPTIONAL + subcommand not given
ok 79 - subcommand - SUBCOMMAND_OPTIONAL + given subcommand
ok 80 - subcommand - SUBCOMMAND_OPTIONAL + subcommand not given + unknown dashless args
ok 81 - subcommand - SUBCOMMAND_OPTIONAL + subcommand not given + unknown option
ok 82 - subcommand - SUBCOMMAND_OPTIONAL | KEEP_UNKNOWN_OPT + subcommand not given + unknown option
ok 83 - subcommand - SUBCOMMAND_OPTIONAL | KEEP_UNKNOWN_OPT + subcommand ignored after unknown option
ok 84 - subcommand - SUBCOMMAND_OPTIONAL | KEEP_UNKNOWN_OPT + command and subcommand options cannot be mixed
ok 85 - subcommand - SUBCOMMAND_OPTIONAL | KEEP_UNKNOWN_OPT | KEEP_ARGV0
ok 86 - subcommand - SUBCOMMAND_OPTIONAL | KEEP_UNKNOWN_OPT | KEEP_DASHDASH
ok 87 - subcommand - completion helper
ok 88 - subcommands are incompatible with STOP_AT_NON_OPTION
ok 89 - subcommands are incompatible with KEEP_UNKNOWN_OPT unless in combination with SUBCOMMAND_OPTIONAL
ok 90 - subcommands are incompatible with KEEP_DASHDASH unless in combination with SUBCOMMAND_OPTIONAL
ok 91 - negative unsigned
ok 92 - unsigned with units but no numbers
ok 93 - i16 limits range
ok 94 - u16 limits range
# passed all 94 test(s)
1..94
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0090-cache-tree.sh ***
ok 1 - initial commit has cache-tree
ok 2 - read-tree HEAD establishes cache-tree
ok 3 - git-add invalidates cache-tree
ok 4 - git-add in subdir invalidates cache-tree
ok 5 - git-add in subdir does not invalidate sibling cache-tree
ok 6 - update-index invalidates cache-tree
ok 7 - write-tree establishes cache-tree
ok 8 - test-tool scrap-cache-tree works
ok 9 - second commit has cache-tree
ok 10 - commit --interactive gives cache-tree on partial commit
ok 11 - commit -p with shrinking cache-tree
ok 12 - commit in child dir has cache-tree
ok 13 - reset --hard gives cache-tree
ok 14 - reset --hard without index gives cache-tree
ok 15 - checkout gives cache-tree
ok 16 - checkout -b gives cache-tree
ok 17 - checkout -B gives cache-tree
ok 18 - merge --ff-only maintains cache-tree
ok 19 - merge maintains cache-tree
ok 20 - partial commit gives cache-tree
ok 21 - no phantom error when switching trees
ok 22 - switching trees does not invalidate shared index
# passed all 22 test(s)
1..22
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0003-attributes.sh ***
ok 1 - open-quoted pathname
ok 2 - setup
ok 3 - setup branches
ok 4 - command line checks
ok 5 - attribute test
ok 6 - attribute matching is case sensitive when core.ignorecase=0
ok 7 - attribute matching is case insensitive when core.ignorecase=1
ok 8 # skip additional case insensitivity tests (missing CASE_INSENSITIVE_FS)
ok 9 - unnormalized paths
ok 10 - relative paths
ok 11 - prefixes are not confused with leading directories
ok 12 - core.attributesfile
ok 13 - attribute test: read paths from stdin
ok 14 - setup --all option
ok 15 - attribute test: --all option
ok 16 - attribute test: --cached option
ok 17 - root subdir attribute test
ok 18 - negative patterns
ok 19 - patterns starting with exclamation
ok 20 - "**" test
ok 21 - "**" with no slashes test
ok 22 - using --git-dir and --work-tree
ok 23 - using --source
ok 24 - setup bare
ok 25 - bare repository: check that .gitattribute is ignored
ok 26 - --attr-source is bad
ok 27 - attr.tree when HEAD is unborn
ok 28 - bad attr source defaults to reading .gitattributes file
ok 29 - bare repo no longer defaults to reading .gitattributes from HEAD
ok 30 - precedence of --attr-source, GIT_ATTR_SOURCE, then attr.tree
ok 31 - diff without repository with attr source
ok 32 - bare repository: with --source
ok 33 - bare repository: check that --cached honors index
ok 34 - bare repository: test info/attributes
ok 35 - binary macro expanded by -a
ok 36 - query binary macro directly
ok 37 - set up symlink tests
ok 38 - symlinks respected in core.attributesFile
ok 39 - symlinks respected in info/attributes
ok 40 - symlinks not respected in-tree
ok 41 - large attributes line ignored in tree
ok 42 - large attributes line ignores trailing content in tree
ok 43 # skip large attributes file ignored in tree (missing EXPENSIVE)
ok 44 - large attributes line ignored in index
ok 45 - large attributes line ignores trailing content in index
ok 46 # skip large attributes file ignored in index (missing EXPENSIVE)
ok 47 # skip large attributes blob ignored (missing EXPENSIVE)
ok 48 - builtin object mode attributes work (dir and regular paths)
ok 49 - builtin object mode attributes work (executable)
ok 50 - builtin object mode attributes work (symlinks)
ok 51 - native object mode attributes work with --cached
ok 52 - check object mode attributes work for submodules
ok 53 - we do not allow user defined builtin_* attributes
ok 54 - user defined builtin_objectmode values are ignored
# passed all 54 test(s)
1..54
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0001-init.sh ***
ok 1 - plain
ok 2 - plain nested in bare
ok 3 - plain through aliased command, outside any git repo
ok 4 - plain nested through aliased command
ok 5 - plain nested in bare through aliased command
ok 6 - No extra GIT_* on alias scripts
ok 7 - plain with GIT_WORK_TREE
ok 8 - plain bare
ok 9 - plain bare with GIT_WORK_TREE
ok 10 - GIT_DIR bare
ok 11 - init --bare
ok 12 - GIT_DIR non-bare
ok 13 - GIT_DIR & GIT_WORK_TREE (1)
ok 14 - GIT_DIR & GIT_WORK_TREE (2)
ok 15 - reinit
ok 16 - init with --template
ok 17 - init with --template (blank)
ok 18 - init with init.templatedir set
ok 19 - init with init.templatedir using ~ expansion
ok 20 - init --bare/--shared overrides system/global config
ok 21 - init honors global core.sharedRepository
ok 22 - init allows insanely long --template
ok 23 - init creates a new directory
ok 24 - init creates a new bare directory
ok 25 - init recreates a directory
ok 26 - init recreates a new bare directory
ok 27 - init creates a new deep directory
ok 28 - init creates a new deep directory (umask vs. shared)
ok 29 - init notices EEXIST (1)
ok 30 - init notices EEXIST (2)
ok 31 - init notices EPERM
ok 32 - init creates a new bare directory with global --bare
ok 33 - init prefers command line to GIT_DIR
ok 34 - init with separate gitdir
ok 35 - explicit bare & --separate-git-dir incompatible
ok 36 - implicit bare & --separate-git-dir incompatible
ok 37 - bare & --separate-git-dir incompatible within worktree
ok 38 - init in long base path
ok 39 - init in long restricted base path
ok 40 - re-init on .git file
ok 41 - re-init to update git link
ok 42 - re-init to move gitdir
ok 43 - re-init to move gitdir symlink
ok 44 - re-init to move gitdir with linked worktrees (absolute)
ok 45 - re-init to move gitdir within linked worktree (absolute)
ok 46 - re-init to move gitdir with linked worktrees (relative)
ok 47 - re-init to move gitdir within linked worktree (relative)
ok 48 # skip .git hidden (missing MINGW)
ok 49 # skip bare git dir not hidden (missing MINGW)
ok 50 - remote init from does not use config from cwd
ok 51 - re-init from a linked worktree
ok 52 - init honors GIT_DEFAULT_HASH
ok 53 - init honors --object-format
ok 54 - init honors init.defaultObjectFormat
ok 55 - init warns about invalid init.defaultObjectFormat
ok 56 - --object-format overrides GIT_DEFAULT_HASH
ok 57 - GIT_DEFAULT_HASH overrides init.defaultObjectFormat
ok 58 - reinit repository with GIT_DEFAULT_HASH=sha1 does not change format
ok 59 - reinit repository with GIT_DEFAULT_HASH=sha256 does not change format
ok 60 - extensions.objectFormat is not allowed with repo version 0
ok 61 - init rejects attempts to initialize with different hash
ok 62 - extensions.refStorage is not allowed with repo version 0
ok 63 - extensions.refStorage with files backend
ok 64 - extensions.refStorage with unknown backend
ok 65 - init with GIT_DEFAULT_REF_FORMAT=garbage
ok 66 - init warns about invalid init.defaultRefFormat
ok 67 - default ref format
ok 68 - init with GIT_DEFAULT_REF_FORMAT=files
ok 69 - init with --ref-format=files
ok 70 - init with init.defaultRefFormat=files
ok 71 - --ref-format=files overrides GIT_DEFAULT_REF_FORMAT
ok 72 - reinit repository with GIT_DEFAULT_REF_FORMAT=files does not change format
ok 73 - init with GIT_DEFAULT_REF_FORMAT=reftable
ok 74 - init with --ref-format=reftable
ok 75 - init with init.defaultRefFormat=reftable
ok 76 - --ref-format=reftable overrides GIT_DEFAULT_REF_FORMAT
ok 77 - reinit repository with GIT_DEFAULT_REF_FORMAT=reftable does not change format
ok 78 - --ref-format= overrides GIT_DEFAULT_REF_FORMAT
ok 79 - GIT_DEFAULT_REF_FORMAT= overrides init.defaultRefFormat
ok 80 - init with feature.experimental=true
ok 81 - init.defaultRefFormat overrides feature.experimental=true
ok 82 - GIT_DEFAULT_REF_FORMAT= overrides feature.experimental=true
ok 83 - re-init with same format (files)
ok 84 - re-init with different format fails (files -> reftable)
ok 85 - re-init with same format (reftable)
ok 86 - re-init with different format fails (reftable -> files)
ok 87 - init with --ref-format=garbage
ok 88 # skip core.hidedotfiles = false (missing MINGW)
ok 89 # skip redirect std handles (missing MINGW)
ok 90 - --initial-branch
ok 91 - overridden default initial branch name (config)
ok 92 - advice on unconfigured init.defaultBranch
ok 93 - advice on unconfigured init.defaultBranch disabled
ok 94 - overridden default main branch name (env)
ok 95 - invalid default branch name
ok 96 - branch -m with the initial branch
ok 97 - init with includeIf.onbranch condition
ok 98 - init with includeIf.onbranch condition with existing directory
ok 99 - re-init with includeIf.onbranch condition
ok 100 - re-init skips non-matching includeIf.onbranch
ok 101 - re-init reads matching includeIf.onbranch
# passed all 101 test(s)
1..101
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0012-help.sh ***
ok 1 - setup
ok 2 - basic help commands
ok 3 - invalid usage
ok 4 - invalid usage of '-a' with [-i|-m|-w]
ok 5 - invalid usage of '-g' with [-i|-m|-w]
ok 6 - invalid usage of '-g' with --no-external-commands
ok 7 - invalid usage of '-g' with --no-aliases
ok 8 - invalid usage of '-c' with [-i|-m|-w]
ok 9 - invalid usage of '-c' with --no-external-commands
ok 10 - invalid usage of '-c' with --no-aliases
ok 11 - invalid usage of '--config-for-completion' with [-i|-m|-w]
ok 12 - invalid usage of '--config-for-completion' with --no-external-commands
ok 13 - invalid usage of '--config-for-completion' with --no-aliases
ok 14 - invalid usage of '--config-sections-for-completion' with [-i|-m|-w]
ok 15 - invalid usage of '--config-sections-for-completion' with --no-external-commands
ok 16 - invalid usage of '--config-sections-for-completion' with --no-aliases
ok 17 - works for commands and guides by default
ok 18 - --exclude-guides does not work for guides
ok 19 - --help does not work for guides
ok 20 - git help
ok 21 - git help -g
ok 22 - git help fails for non-existing html pages
ok 23 - git help succeeds without git.html
ok 24 - git help --user-interfaces
ok 25 - git help -c
ok 26 - git help --config-for-completion
ok 27 - git help --config-sections-for-completion
ok 28 - 'git' section spacing
ok 29 - 'git help' section spacing
ok 30 - 'git help -a' section spacing
ok 31 - 'git help -g' section spacing
ok 32 - generate builtin list
ok 33 - add can handle -h
ok 34 - am can handle -h
ok 35 - annotate can handle -h
ok 36 - apply can handle -h
ok 37 - archive can handle -h
ok 38 - backfill can handle -h
ok 39 - bisect can handle -h
ok 40 - blame can handle -h
ok 41 - branch can handle -h
ok 42 - bugreport can handle -h
ok 43 - bundle can handle -h
ok 44 - cat-file can handle -h
ok 45 - check-attr can handle -h
ok 46 - check-ignore can handle -h
ok 47 - check-mailmap can handle -h
ok 48 - check-ref-format can handle -h
ok 49 - checkout can handle -h
ok 50 - checkout--worker can handle -h
ok 51 - checkout-index can handle -h
ok 52 - cherry can handle -h
ok 53 - cherry-pick can handle -h
ok 54 - clean can handle -h
ok 55 - clone can handle -h
ok 56 - column can handle -h
ok 57 - commit can handle -h
ok 58 - commit-graph can handle -h
ok 59 - commit-tree can handle -h
ok 60 - config can handle -h
ok 61 - count-objects can handle -h
ok 62 - credential can handle -h
ok 63 - credential-cache can handle -h
ok 64 - credential-cache--daemon can handle -h
ok 65 - credential-store can handle -h
ok 66 - describe can handle -h
ok 67 - diagnose can handle -h
ok 68 - diff can handle -h
ok 69 - diff-files can handle -h
ok 70 - diff-index can handle -h
ok 71 - diff-pairs can handle -h
ok 72 - diff-tree can handle -h
ok 73 - difftool can handle -h
ok 74 - fast-export can handle -h
ok 75 - fast-import can handle -h
ok 76 - fetch can handle -h
ok 77 - fetch-pack can handle -h
ok 78 - fmt-merge-msg can handle -h
ok 79 - for-each-ref can handle -h
ok 80 - for-each-repo can handle -h
ok 81 - format-patch can handle -h
ok 82 - fsck can handle -h
ok 83 - fsck-objects can handle -h
ok 84 - fsmonitor--daemon can handle -h
ok 85 - gc can handle -h
ok 86 - get-tar-commit-id can handle -h
ok 87 - grep can handle -h
ok 88 - hash-object can handle -h
ok 89 - help can handle -h
ok 90 - hook can handle -h
ok 91 - index-pack can handle -h
ok 92 - init can handle -h
ok 93 - init-db can handle -h
ok 94 - interpret-trailers can handle -h
ok 95 - log can handle -h
ok 96 - ls-files can handle -h
ok 97 - ls-remote can handle -h
ok 98 - ls-tree can handle -h
ok 99 - mailinfo can handle -h
ok 100 - mailsplit can handle -h
ok 101 - maintenance can handle -h
ok 102 - merge can handle -h
ok 103 - merge-base can handle -h
ok 104 - merge-file can handle -h
ok 105 - merge-index can handle -h
ok 106 - merge-ours can handle -h
ok 107 - merge-recursive can handle -h
ok 108 - merge-recursive-ours can handle -h
ok 109 - merge-recursive-theirs can handle -h
ok 110 - merge-subtree can handle -h
ok 111 - merge-tree can handle -h
ok 112 - mktag can handle -h
ok 113 - mktree can handle -h
ok 114 - multi-pack-index can handle -h
ok 115 - mv can handle -h
ok 116 - name-rev can handle -h
ok 117 - notes can handle -h
ok 118 - pack-objects can handle -h
ok 119 - pack-redundant can handle -h
ok 120 - pack-refs can handle -h
ok 121 - patch-id can handle -h
ok 122 - pickaxe can handle -h
ok 123 - prune can handle -h
ok 124 - prune-packed can handle -h
ok 125 - pull can handle -h
ok 126 - push can handle -h
ok 127 - range-diff can handle -h
ok 128 - read-tree can handle -h
ok 129 - rebase can handle -h
ok 130 - receive-pack can handle -h
ok 131 - reflog can handle -h
ok 132 - refs can handle -h
ok 133 - remote can handle -h
ok 134 - remote-ext can handle -h
ok 135 - remote-fd can handle -h
ok 136 - repack can handle -h
ok 137 - replace can handle -h
ok 138 - replay can handle -h
ok 139 - rerere can handle -h
ok 140 - reset can handle -h
ok 141 - restore can handle -h
ok 142 - rev-list can handle -h
ok 143 - rev-parse can handle -h
ok 144 - revert can handle -h
ok 145 - rm can handle -h
ok 146 - send-pack can handle -h
ok 147 - shortlog can handle -h
ok 148 - show can handle -h
ok 149 - show-branch can handle -h
ok 150 - show-index can handle -h
ok 151 - show-ref can handle -h
ok 152 - sparse-checkout can handle -h
ok 153 - stage can handle -h
ok 154 - stash can handle -h
ok 155 - status can handle -h
ok 156 - stripspace can handle -h
ok 157 - submodule--helper can handle -h
ok 158 - switch can handle -h
ok 159 - symbolic-ref can handle -h
ok 160 - tag can handle -h
ok 161 - unpack-file can handle -h
ok 162 - unpack-objects can handle -h
ok 163 - update-index can handle -h
ok 164 - update-ref can handle -h
ok 165 - update-server-info can handle -h
ok 166 - upload-archive can handle -h
ok 167 - upload-archive--writer can handle -h
ok 168 - upload-pack can handle -h
ok 169 - var can handle -h
ok 170 - verify-commit can handle -h
ok 171 - verify-pack can handle -h
ok 172 - verify-tag can handle -h
ok 173 - version can handle -h
ok 174 - whatchanged can handle -h
ok 175 - worktree can handle -h
ok 176 - write-tree can handle -h
# passed all 176 test(s)
1..176
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0060-path-utils.sh ***
ok 1 - basename
ok 2 - dirname
ok 3 - normalize path:  => 
ok 4 - normalize path: . => 
ok 5 - normalize path: ./ => 
ok 6 - normalize path: ./. => 
ok 7 - normalize path: ./.. => ++failed++
ok 8 - normalize path: ../. => ++failed++
ok 9 - normalize path: ./../.// => ++failed++
ok 10 - normalize path: dir/.. => 
ok 11 - normalize path: dir/sub/../.. => 
ok 12 - normalize path: dir/sub/../../.. => ++failed++
ok 13 - normalize path: dir => dir
ok 14 - normalize path: dir// => dir/
ok 15 - normalize path: ./dir => dir
ok 16 - normalize path: dir/. => dir/
ok 17 - normalize path: dir///./ => dir/
ok 18 - normalize path: dir//sub/.. => dir/
ok 19 - normalize path: dir/sub/../ => dir/
ok 20 - normalize path: dir/sub/../. => dir/
ok 21 - normalize path: dir/s1/../s2/ => dir/s2/
ok 22 - normalize path: d1/s1///s2/..//../s3/ => d1/s3/
ok 23 - normalize path: d1/s1//../s2/../../d2 => d2
ok 24 - normalize path: d1/.../d2 => d1/.../d2
ok 25 - normalize path: d1/..././../d2 => d1/d2
ok 26 - normalize path: / => /
ok 27 - normalize path: // => /
ok 28 - normalize path: /// => /
ok 29 - normalize path: /. => /
ok 30 - normalize path: /./ => /
ok 31 - normalize path: /./.. => ++failed++
ok 32 - normalize path: /../. => ++failed++
ok 33 - normalize path: /./../.// => ++failed++
ok 34 - normalize path: /dir/.. => /
ok 35 - normalize path: /dir/sub/../.. => /
ok 36 - normalize path: /dir/sub/../../.. => ++failed++
ok 37 - normalize path: /dir => /dir
ok 38 - normalize path: /dir// => /dir/
ok 39 - normalize path: /./dir => /dir
ok 40 - normalize path: /dir/. => /dir/
ok 41 - normalize path: /dir///./ => /dir/
ok 42 - normalize path: /dir//sub/.. => /dir/
ok 43 - normalize path: /dir/sub/../ => /dir/
ok 44 - normalize path: //dir/sub/../. => /dir/
ok 45 - normalize path: /dir/s1/../s2/ => /dir/s2/
ok 46 - normalize path: /d1/s1///s2/..//../s3/ => /d1/s3/
ok 47 - normalize path: /d1/s1//../s2/../../d2 => /d2
ok 48 - normalize path: /d1/.../d2 => /d1/.../d2
ok 49 - normalize path: /d1/..././../d2 => /d1/d2
ok 50 - longest ancestor: / / => -1
ok 51 - longest ancestor: /foo / => 0
ok 52 - longest ancestor: /foo /fo => -1
ok 53 - longest ancestor: /foo /foo => -1
ok 54 - longest ancestor: /foo /bar => -1
ok 55 - longest ancestor: /foo /foo/bar => -1
ok 56 - longest ancestor: /foo /foo:/bar => -1
ok 57 - longest ancestor: /foo /:/foo:/bar => 0
ok 58 - longest ancestor: /foo /foo:/:/bar => 0
ok 59 - longest ancestor: /foo /:/bar:/foo => 0
ok 60 - longest ancestor: /foo/bar / => 0
ok 61 - longest ancestor: /foo/bar /fo => -1
ok 62 - longest ancestor: /foo/bar /foo => 4
ok 63 - longest ancestor: /foo/bar /foo/ba => -1
ok 64 - longest ancestor: /foo/bar /:/fo => 0
ok 65 - longest ancestor: /foo/bar /foo:/foo/ba => 4
ok 66 - longest ancestor: /foo/bar /bar => -1
ok 67 - longest ancestor: /foo/bar /fo => -1
ok 68 - longest ancestor: /foo/bar /foo:/bar => 4
ok 69 - longest ancestor: /foo/bar /:/foo:/bar => 4
ok 70 - longest ancestor: /foo/bar /foo:/:/bar => 4
ok 71 - longest ancestor: /foo/bar /:/bar:/fo => 0
ok 72 - longest ancestor: /foo/bar /:/bar => 0
ok 73 - longest ancestor: /foo/bar /foo => 4
ok 74 - longest ancestor: /foo/bar /foo:/bar => 4
ok 75 - longest ancestor: /foo/bar /bar => -1
ok 76 # skip longest ancestor: C:/Users/me C:/ => 2 (missing MINGW)
ok 77 # skip longest ancestor: D:/Users/me C:/ => -1 (missing MINGW)
ok 78 # skip longest ancestor: //server/share/my-directory //server/share/ => 14 (missing MINGW)
ok 79 - strip_path_suffix
ok 80 - absolute path rejects the empty string
ok 81 # skip <drive-letter>:\\abc is an absolute path (missing MINGW)
ok 82 - real path rejects the empty string
ok 83 - real path works on absolute paths 1
ok 84 - real path works on absolute paths 2
ok 85 - real path removes extra leading slashes
ok 86 - real path removes other extra slashes
ok 87 - real path works on symlinks
ok 88 - prefix_path works with absolute paths to work tree symlinks
ok 89 - prefix_path works with only absolute path to work tree
ok 90 - prefix_path rejects absolute path to dir with same beginning as work tree
ok 91 - prefix_path works with absolute path to a symlink to work tree having  same beginning as work tree
ok 92 - relative path: /foo/a/b/c/ /foo/a/b/ => c/
ok 93 - relative path: /foo/a/b/c/ /foo/a/b => c/
ok 94 - relative path: /foo/a//b//c/ ///foo/a/b// => c/
ok 95 - relative path: /foo/a/b /foo/a/b => ./
ok 96 - relative path: /foo/a/b/ /foo/a/b => ./
ok 97 - relative path: /foo/a /foo/a/b => ../
ok 98 - relative path: / /foo/a/b/ => ../../../
ok 99 - relative path: /foo/a/c /foo/a/b/ => ../c
ok 100 - relative path: /foo/a/c /foo/a/b => ../c
ok 101 - relative path: /foo/x/y /foo/a/b/ => ../../x/y
ok 102 - relative path: /foo/a/b <empty> => /foo/a/b
ok 103 - relative path: /foo/a/b <null> => /foo/a/b
ok 104 - relative path: foo/a/b/c/ foo/a/b/ => c/
ok 105 - relative path: foo/a/b/c/ foo/a/b => c/
ok 106 - relative path: foo/a/b//c foo/a//b => c
ok 107 - relative path: foo/a/b/ foo/a/b/ => ./
ok 108 - relative path: foo/a/b/ foo/a/b => ./
ok 109 - relative path: foo/a foo/a/b => ../
ok 110 - relative path: foo/x/y foo/a/b => ../../x/y
ok 111 - relative path: foo/a/c foo/a/b => ../c
ok 112 - relative path: foo/a/b /foo/x/y => foo/a/b
ok 113 - relative path: /foo/a/b foo/x/y => /foo/a/b
ok 114 # skip relative path: d:/a/b D:/a/c => ../b (missing MINGW)
ok 115 # skip relative path: C:/a/b D:/a/c => C:/a/b (missing MINGW)
ok 116 - relative path: foo/a/b <empty> => foo/a/b
ok 117 - relative path: foo/a/b <null> => foo/a/b
ok 118 - relative path: <empty> /foo/a/b => ./
ok 119 - relative path: <empty> <empty> => ./
ok 120 - relative path: <empty> <null> => ./
ok 121 - relative path: <null> <empty> => ./
ok 122 - relative path: <null> <null> => ./
ok 123 - relative path: <null> /foo/a/b => ./
ok 124 - git-path A=B info/grafts => .git/info/grafts
ok 125 - git-path GIT_GRAFT_FILE=foo info/grafts => foo
ok 126 - git-path GIT_GRAFT_FILE=foo info/////grafts => foo
ok 127 - git-path GIT_INDEX_FILE=foo index => foo
ok 128 - git-path GIT_INDEX_FILE=foo index/foo => .git/index/foo
ok 129 - git-path GIT_INDEX_FILE=foo index2 => .git/index2
ok 130 - setup fake objects directory foo
ok 131 - git-path GIT_OBJECT_DIRECTORY=foo objects => foo
ok 132 - git-path GIT_OBJECT_DIRECTORY=foo objects/foo => foo/foo
ok 133 - git-path GIT_OBJECT_DIRECTORY=foo objects2 => .git/objects2
ok 134 - setup common repository
ok 135 - git-path GIT_COMMON_DIR=bar index => .git/index
ok 136 - git-path GIT_COMMON_DIR=bar index.lock => .git/index.lock
ok 137 - git-path GIT_COMMON_DIR=bar HEAD => .git/HEAD
ok 138 - git-path GIT_COMMON_DIR=bar logs/HEAD => .git/logs/HEAD
ok 139 - git-path GIT_COMMON_DIR=bar logs/HEAD.lock => .git/logs/HEAD.lock
ok 140 - git-path GIT_COMMON_DIR=bar logs/refs/bisect/foo => .git/logs/refs/bisect/foo
ok 141 - git-path GIT_COMMON_DIR=bar logs/refs => bar/logs/refs
ok 142 - git-path GIT_COMMON_DIR=bar logs/refs/ => bar/logs/refs/
ok 143 - git-path GIT_COMMON_DIR=bar logs/refs/bisec/foo => bar/logs/refs/bisec/foo
ok 144 - git-path GIT_COMMON_DIR=bar logs/refs/bisec => bar/logs/refs/bisec
ok 145 - git-path GIT_COMMON_DIR=bar logs/refs/bisectfoo => bar/logs/refs/bisectfoo
ok 146 - git-path GIT_COMMON_DIR=bar objects => bar/objects
ok 147 - git-path GIT_COMMON_DIR=bar objects/bar => bar/objects/bar
ok 148 - git-path GIT_COMMON_DIR=bar info/exclude => bar/info/exclude
ok 149 - git-path GIT_COMMON_DIR=bar info/grafts => bar/info/grafts
ok 150 - git-path GIT_COMMON_DIR=bar info/sparse-checkout => .git/info/sparse-checkout
ok 151 - git-path GIT_COMMON_DIR=bar info//sparse-checkout => .git/info//sparse-checkout
ok 152 - git-path GIT_COMMON_DIR=bar remotes/bar => bar/remotes/bar
ok 153 - git-path GIT_COMMON_DIR=bar branches/bar => bar/branches/bar
ok 154 - git-path GIT_COMMON_DIR=bar logs/refs/heads/main => bar/logs/refs/heads/main
ok 155 - git-path GIT_COMMON_DIR=bar refs/heads/main => bar/refs/heads/main
ok 156 - git-path GIT_COMMON_DIR=bar refs/bisect/foo => .git/refs/bisect/foo
ok 157 - git-path GIT_COMMON_DIR=bar hooks/me => bar/hooks/me
ok 158 - git-path GIT_COMMON_DIR=bar config => bar/config
ok 159 - git-path GIT_COMMON_DIR=bar packed-refs => bar/packed-refs
ok 160 - git-path GIT_COMMON_DIR=bar shallow => bar/shallow
ok 161 - git-path GIT_COMMON_DIR=bar common => bar/common
ok 162 - git-path GIT_COMMON_DIR=bar common/file => bar/common/file
ok 163 - test_submodule_relative_url: ../ ../foo ../submodule => ../../submodule
ok 164 - test_submodule_relative_url: ../ ../foo/bar ../submodule => ../../foo/submodule
ok 165 - test_submodule_relative_url: ../ ../foo/submodule ../submodule => ../../foo/submodule
ok 166 - test_submodule_relative_url: ../ ./foo ../submodule => ../submodule
ok 167 - test_submodule_relative_url: ../ ./foo/bar ../submodule => ../foo/submodule
ok 168 - test_submodule_relative_url: ../../../ ../foo/bar ../sub/a/b/c => ../../../../foo/sub/a/b/c
ok 169 - test_submodule_relative_url: ../ /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/addtest ../repo => /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/repo
ok 170 - test_submodule_relative_url: ../ foo/bar ../submodule => ../foo/submodule
ok 171 - test_submodule_relative_url: ../ foo ../submodule => ../submodule
ok 172 - test_submodule_relative_url: (null) ../foo/bar ../sub/a/b/c => ../foo/sub/a/b/c
ok 173 - test_submodule_relative_url: (null) ../foo/bar ../sub/a/b/c/ => ../foo/sub/a/b/c
ok 174 - test_submodule_relative_url: (null) ../foo/bar/ ../sub/a/b/c => ../foo/sub/a/b/c
ok 175 - test_submodule_relative_url: (null) ../foo/bar ../submodule => ../foo/submodule
ok 176 - test_submodule_relative_url: (null) ../foo/submodule ../submodule => ../foo/submodule
ok 177 - test_submodule_relative_url: (null) ../foo ../submodule => ../submodule
ok 178 - test_submodule_relative_url: (null) ./foo/bar ../submodule => foo/submodule
ok 179 - test_submodule_relative_url: (null) ./foo ../submodule => submodule
ok 180 - test_submodule_relative_url: (null) //somewhere else/repo ../subrepo => //somewhere else/subrepo
ok 181 - test_submodule_relative_url: (null) //somewhere else/repo ../../subrepo => //subrepo
ok 182 - test_submodule_relative_url: (null) //somewhere else/repo ../../../subrepo => /subrepo
ok 183 - test_submodule_relative_url: (null) //somewhere else/repo ../../../../subrepo => subrepo
ok 184 - test_submodule_relative_url: (null) /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/subsuper_update_r ../subsubsuper_update_r => /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/subsubsuper_update_r
ok 185 - test_submodule_relative_url: (null) /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/super_update_r2 ../subsuper_update_r => /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/subsuper_update_r
ok 186 - test_submodule_relative_url: (null) /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/. ../. => /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/.
ok 187 - test_submodule_relative_url: (null) /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils ./. => /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/.
ok 188 - test_submodule_relative_url: (null) /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/addtest ../repo => /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/repo
ok 189 - test_submodule_relative_url: (null) /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils ./å äö => /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/å äö
ok 190 - test_submodule_relative_url: (null) /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/. ../submodule => /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/submodule
ok 191 - test_submodule_relative_url: (null) /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/submodule ../submodule => /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/submodule
ok 192 - test_submodule_relative_url: (null) /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/home2/../remote ../bundle1 => /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/home2/../bundle1
ok 193 - test_submodule_relative_url: (null) /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/submodule_update_repo ./. => /tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t/trash directory.t0060-path-utils/submodule_update_repo/.
ok 194 - test_submodule_relative_url: (null) file:///tmp/repo ../subrepo => file:///tmp/subrepo
ok 195 - test_submodule_relative_url: (null) foo/bar ../submodule => foo/submodule
ok 196 - test_submodule_relative_url: (null) foo ../submodule => submodule
ok 197 - test_submodule_relative_url: (null) helper:://hostname/repo ../subrepo => helper:://hostname/subrepo
ok 198 - test_submodule_relative_url: (null) helper:://hostname/repo ../../subrepo => helper:://subrepo
ok 199 - test_submodule_relative_url: (null) helper:://hostname/repo ../../../subrepo => helper::/subrepo
ok 200 - test_submodule_relative_url: (null) helper:://hostname/repo ../../../../subrepo => helper::subrepo
ok 201 - test_submodule_relative_url: (null) helper:://hostname/repo ../../../../../subrepo => helper:subrepo
ok 202 - test_submodule_relative_url: (null) helper:://hostname/repo ../../../../../../subrepo => .:subrepo
ok 203 - test_submodule_relative_url: (null) ssh://hostname/repo ../subrepo => ssh://hostname/subrepo
ok 204 - test_submodule_relative_url: (null) ssh://hostname/repo ../../subrepo => ssh://subrepo
ok 205 - test_submodule_relative_url: (null) ssh://hostname/repo ../../../subrepo => ssh:/subrepo
ok 206 - test_submodule_relative_url: (null) ssh://hostname/repo ../../../../subrepo => ssh:subrepo
ok 207 - test_submodule_relative_url: (null) ssh://hostname/repo ../../../../../subrepo => .:subrepo
ok 208 - test_submodule_relative_url: (null) ssh://hostname:22/repo ../subrepo => ssh://hostname:22/subrepo
ok 209 - test_submodule_relative_url: (null) user@host:path/to/repo ../subrepo => user@host:path/to/subrepo
ok 210 - test_submodule_relative_url: (null) user@host:repo ../subrepo => user@host:subrepo
ok 211 - test_submodule_relative_url: (null) user@host:repo ../../subrepo => .:subrepo
ok 212 - match .gitmodules
ok 213 - match .gitattributes
ok 214 - match .gitignore
ok 215 - match .mailmap
ok 216 # skip is_valid_path() on Windows (missing MINGW)
ok 217 # skip setup runtime prefix (missing RUNTIME_PREFIX of !VALGRIND,RUNTIME_PREFIX,CAN_EXEC_IN_PWD)
ok 218 # skip RUNTIME_PREFIX works (missing RUNTIME_PREFIX of !VALGRIND,RUNTIME_PREFIX,CAN_EXEC_IN_PWD)
ok 219 # skip %(prefix)/ works (missing RUNTIME_PREFIX of !VALGRIND,RUNTIME_PREFIX,CAN_EXEC_IN_PWD)
# passed all 219 test(s)
1..219
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0010-racy-git.sh ***
ok 1 - Racy git trial #0 part A
ok 2 - Racy git trial #0 part B
ok 3 - Racy git trial #1 part A
ok 4 - Racy git trial #1 part B
ok 5 - Racy git trial #2 part A
ok 6 - Racy git trial #2 part B
ok 7 - Racy git trial #3 part A
ok 8 - Racy git trial #3 part B
ok 9 - Racy git trial #4 part A
ok 10 - Racy git trial #4 part B
# passed all 10 test(s)
1..10
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0021-conversion.sh ***
ok 1 - setup
ok 2 - check
ok 3 - expanded_in_repo
ok 4 - filter shell-escaped filenames
ok 5 - required filter should filter data
ok 6 - required filter smudge failure
ok 7 - required filter clean failure
ok 8 - required filter with absent clean field
ok 9 - required filter with absent smudge field
ok 10 - filtering large input to small output should use little memory
ok 11 - filter that does not read is fine
ok 12 # skip filter large file (missing EXPENSIVE)
ok 13 - filter: clean empty file
ok 14 - filter: smudge empty file
ok 15 - disable filter with empty override
ok 16 - diff does not reuse worktree files that need cleaning
ok 17 - required process filter should filter data
ok 18 - required process filter should filter data for various subcommands
ok 19 - required process filter takes precedence
ok 20 - required process filter should be used only for "clean" operation only
ok 21 - required process filter should process multiple packets
ok 22 - required process filter with clean error should fail
ok 23 - process filter should restart after unexpected write failure
ok 24 - process filter should not be restarted if it signals an error
ok 25 - process filter abort stops processing of all further files
ok 26 - invalid process filter must fail (and not hang!)
ok 27 - delayed checkout in process filter
ok 28 - missing file in delayed checkout
ok 29 - invalid file in delayed checkout
ok 30 # skip delayed checkout with case-collision don't write to the wrong place (missing CASE_INSENSITIVE_FS of SYMLINKS,CASE_INSENSITIVE_FS)
ok 31 # skip delayed checkout with utf-8-collision don't write to the wrong place (missing UTF8_NFD_TO_NFC of SYMLINKS,UTF8_NFD_TO_NFC)
ok 32 # skip delayed checkout with submodule collision don't write to the wrong place (missing CASE_INSENSITIVE_FS of SYMLINKS,CASE_INSENSITIVE_FS)
ok 33 - setup for progress tests
ok 34 # skip delayed checkout shows progress by default on tty (pathspec checkout) (missing TTY)
ok 35 - delayed checkout omits progress on non-tty (pathspec checkout)
ok 36 # skip delayed checkout omits progress with --quiet (pathspec checkout) (missing TTY)
ok 37 # skip delayed checkout honors --[no]-progress (pathspec checkout) (missing TTY)
ok 38 # skip delayed checkout shows progress by default on tty (branch checkout) (missing TTY)
ok 39 - delayed checkout omits progress on non-tty (branch checkout)
ok 40 # skip delayed checkout omits progress with --quiet (branch checkout) (missing TTY)
ok 41 # skip delayed checkout honors --[no]-progress (branch checkout) (missing TTY)
ok 42 - delayed checkout correctly reports the number of updated entries
# passed all 42 test(s)
1..42
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0008-ignores.sh ***
ok 1 - setup
ok 2 - . corner-case
ok 3 - . corner-case with -q
ok 4 - . corner-case with --quiet
ok 5 - . corner-case with -v
ok 6 - . corner-case with -v -n
ok 7 - . corner-case with -v --non-matching
ok 8 - . corner-case with --verbose
ok 9 - . corner-case with --verbose -n
ok 10 - . corner-case with --verbose --non-matching
ok 11 - empty command line
ok 12 - empty command line with -q
ok 13 - empty command line with --quiet
ok 14 - empty command line with -v
ok 15 - empty command line with -v -n
ok 16 - empty command line with -v --non-matching
ok 17 - empty command line with --verbose
ok 18 - empty command line with --verbose -n
ok 19 - empty command line with --verbose --non-matching
ok 20 - --stdin with empty STDIN
ok 21 - --stdin with empty STDIN with -q
ok 22 - --stdin with empty STDIN with --quiet
ok 23 - --stdin with empty STDIN with -v
ok 24 - --stdin with empty STDIN with -v -n
ok 25 - --stdin with empty STDIN with -v --non-matching
ok 26 - --stdin with empty STDIN with --verbose
ok 27 - --stdin with empty STDIN with --verbose -n
ok 28 - --stdin with empty STDIN with --verbose --non-matching
ok 29 - -q with multiple args
ok 30 - --quiet with multiple args
ok 31 - -q -v
ok 32 - --quiet -v
ok 33 - -q --verbose
ok 34 - --quiet --verbose
ok 35 - --quiet with multiple args
ok 36 - erroneous use of --
ok 37 - erroneous use of -- with -q
ok 38 - erroneous use of -- with --quiet
ok 39 - erroneous use of -- with -v
ok 40 - erroneous use of -- with -v -n
ok 41 - erroneous use of -- with -v --non-matching
ok 42 - erroneous use of -- with --verbose
ok 43 - erroneous use of -- with --verbose -n
ok 44 - erroneous use of -- with --verbose --non-matching
ok 45 - --stdin with superfluous arg
ok 46 - --stdin with superfluous arg with -q
ok 47 - --stdin with superfluous arg with --quiet
ok 48 - --stdin with superfluous arg with -v
ok 49 - --stdin with superfluous arg with -v -n
ok 50 - --stdin with superfluous arg with -v --non-matching
ok 51 - --stdin with superfluous arg with --verbose
ok 52 - --stdin with superfluous arg with --verbose -n
ok 53 - --stdin with superfluous arg with --verbose --non-matching
ok 54 - --stdin -z with superfluous arg
ok 55 - --stdin -z with superfluous arg with -q
ok 56 - --stdin -z with superfluous arg with --quiet
ok 57 - --stdin -z with superfluous arg with -v
ok 58 - --stdin -z with superfluous arg with -v -n
ok 59 - --stdin -z with superfluous arg with -v --non-matching
ok 60 - --stdin -z with superfluous arg with --verbose
ok 61 - --stdin -z with superfluous arg with --verbose -n
ok 62 - --stdin -z with superfluous arg with --verbose --non-matching
ok 63 - -z without --stdin
ok 64 - -z without --stdin with -q
ok 65 - -z without --stdin with --quiet
ok 66 - -z without --stdin with -v
ok 67 - -z without --stdin with -v -n
ok 68 - -z without --stdin with -v --non-matching
ok 69 - -z without --stdin with --verbose
ok 70 - -z without --stdin with --verbose -n
ok 71 - -z without --stdin with --verbose --non-matching
ok 72 - -z without --stdin and superfluous arg
ok 73 - -z without --stdin and superfluous arg with -q
ok 74 - -z without --stdin and superfluous arg with --quiet
ok 75 - -z without --stdin and superfluous arg with -v
ok 76 - -z without --stdin and superfluous arg with -v -n
ok 77 - -z without --stdin and superfluous arg with -v --non-matching
ok 78 - -z without --stdin and superfluous arg with --verbose
ok 79 - -z without --stdin and superfluous arg with --verbose -n
ok 80 - -z without --stdin and superfluous arg with --verbose --non-matching
ok 81 - needs work tree
ok 82 - needs work tree with -q
ok 83 - needs work tree with --quiet
ok 84 - needs work tree with -v
ok 85 - needs work tree with -v -n
ok 86 - needs work tree with -v --non-matching
ok 87 - needs work tree with --verbose
ok 88 - needs work tree with --verbose -n
ok 89 - needs work tree with --verbose --non-matching
ok 90 - non-existent file at top-level not ignored
ok 91 - non-existent file at top-level not ignored with -q
ok 92 - non-existent file at top-level not ignored with --quiet
ok 93 - non-existent file at top-level not ignored with -v
ok 94 - non-existent file at top-level not ignored with -v -n
ok 95 - non-existent file at top-level not ignored with -v --non-matching
ok 96 - non-existent file at top-level not ignored with --verbose
ok 97 - non-existent file at top-level not ignored with --verbose -n
ok 98 - non-existent file at top-level not ignored with --verbose --non-matching
ok 99 - non-existent file at top-level not ignored with --no-index
ok 100 - non-existent file at top-level not ignored with --no-index -q
ok 101 - non-existent file at top-level not ignored with --no-index --quiet
ok 102 - non-existent file at top-level not ignored with --no-index -v
ok 103 - non-existent file at top-level not ignored with --no-index -v -n
ok 104 - non-existent file at top-level not ignored with --no-index -v --non-matching
ok 105 - non-existent file at top-level not ignored with --no-index --verbose
ok 106 - non-existent file at top-level not ignored with --no-index --verbose -n
ok 107 - non-existent file at top-level not ignored with --no-index --verbose --non-matching
ok 108 - non-existent file at top-level ignored
ok 109 - non-existent file at top-level ignored with -q
ok 110 - non-existent file at top-level ignored with --quiet
ok 111 - non-existent file at top-level ignored with -v
ok 112 - non-existent file at top-level ignored with -v -n
ok 113 - non-existent file at top-level ignored with -v --non-matching
ok 114 - non-existent file at top-level ignored with --verbose
ok 115 - non-existent file at top-level ignored with --verbose -n
ok 116 - non-existent file at top-level ignored with --verbose --non-matching
ok 117 - non-existent file at top-level ignored with --no-index
ok 118 - non-existent file at top-level ignored with --no-index -q
ok 119 - non-existent file at top-level ignored with --no-index --quiet
ok 120 - non-existent file at top-level ignored with --no-index -v
ok 121 - non-existent file at top-level ignored with --no-index -v -n
ok 122 - non-existent file at top-level ignored with --no-index -v --non-matching
ok 123 - non-existent file at top-level ignored with --no-index --verbose
ok 124 - non-existent file at top-level ignored with --no-index --verbose -n
ok 125 - non-existent file at top-level ignored with --no-index --verbose --non-matching
ok 126 - existing untracked file at top-level not ignored
ok 127 - existing untracked file at top-level not ignored with -q
ok 128 - existing untracked file at top-level not ignored with --quiet
ok 129 - existing untracked file at top-level not ignored with -v
ok 130 - existing untracked file at top-level not ignored with -v -n
ok 131 - existing untracked file at top-level not ignored with -v --non-matching
ok 132 - existing untracked file at top-level not ignored with --verbose
ok 133 - existing untracked file at top-level not ignored with --verbose -n
ok 134 - existing untracked file at top-level not ignored with --verbose --non-matching
ok 135 - existing untracked file at top-level not ignored with --no-index
ok 136 - existing untracked file at top-level not ignored with --no-index -q
ok 137 - existing untracked file at top-level not ignored with --no-index --quiet
ok 138 - existing untracked file at top-level not ignored with --no-index -v
ok 139 - existing untracked file at top-level not ignored with --no-index -v -n
ok 140 - existing untracked file at top-level not ignored with --no-index -v --non-matching
ok 141 - existing untracked file at top-level not ignored with --no-index --verbose
ok 142 - existing untracked file at top-level not ignored with --no-index --verbose -n
ok 143 - existing untracked file at top-level not ignored with --no-index --verbose --non-matching
ok 144 - existing tracked file at top-level not ignored
ok 145 - existing tracked file at top-level not ignored with -q
ok 146 - existing tracked file at top-level not ignored with --quiet
ok 147 - existing tracked file at top-level not ignored with -v
ok 148 - existing tracked file at top-level not ignored with -v -n
ok 149 - existing tracked file at top-level not ignored with -v --non-matching
ok 150 - existing tracked file at top-level not ignored with --verbose
ok 151 - existing tracked file at top-level not ignored with --verbose -n
ok 152 - existing tracked file at top-level not ignored with --verbose --non-matching
ok 153 - existing tracked file at top-level shown as ignored with --no-index
ok 154 - existing tracked file at top-level shown as ignored with --no-index -q
ok 155 - existing tracked file at top-level shown as ignored with --no-index --quiet
ok 156 - existing tracked file at top-level shown as ignored with --no-index -v
ok 157 - existing tracked file at top-level shown as ignored with --no-index -v -n
ok 158 - existing tracked file at top-level shown as ignored with --no-index -v --non-matching
ok 159 - existing tracked file at top-level shown as ignored with --no-index --verbose
ok 160 - existing tracked file at top-level shown as ignored with --no-index --verbose -n
ok 161 - existing tracked file at top-level shown as ignored with --no-index --verbose --non-matching
ok 162 - existing untracked file at top-level ignored
ok 163 - existing untracked file at top-level ignored with -q
ok 164 - existing untracked file at top-level ignored with --quiet
ok 165 - existing untracked file at top-level ignored with -v
ok 166 - existing untracked file at top-level ignored with -v -n
ok 167 - existing untracked file at top-level ignored with -v --non-matching
ok 168 - existing untracked file at top-level ignored with --verbose
ok 169 - existing untracked file at top-level ignored with --verbose -n
ok 170 - existing untracked file at top-level ignored with --verbose --non-matching
ok 171 - existing untracked file at top-level ignored with --no-index
ok 172 - existing untracked file at top-level ignored with --no-index -q
ok 173 - existing untracked file at top-level ignored with --no-index --quiet
ok 174 - existing untracked file at top-level ignored with --no-index -v
ok 175 - existing untracked file at top-level ignored with --no-index -v -n
ok 176 - existing untracked file at top-level ignored with --no-index -v --non-matching
ok 177 - existing untracked file at top-level ignored with --no-index --verbose
ok 178 - existing untracked file at top-level ignored with --no-index --verbose -n
ok 179 - existing untracked file at top-level ignored with --no-index --verbose --non-matching
ok 180 - mix of file types at top-level
ok 181 - mix of file types at top-level with -v
ok 182 - mix of file types at top-level with -v -n
ok 183 - mix of file types at top-level with -v --non-matching
ok 184 - mix of file types at top-level with --verbose
ok 185 - mix of file types at top-level with --verbose -n
ok 186 - mix of file types at top-level with --verbose --non-matching
ok 187 - mix of file types at top-level with --no-index
ok 188 - mix of file types at top-level with --no-index -v
ok 189 - mix of file types at top-level with --no-index -v -n
ok 190 - mix of file types at top-level with --no-index -v --non-matching
ok 191 - mix of file types at top-level with --no-index --verbose
ok 192 - mix of file types at top-level with --no-index --verbose -n
ok 193 - mix of file types at top-level with --no-index --verbose --non-matching
ok 194 - non-existent file in subdir a/ not ignored
ok 195 - non-existent file in subdir a/ not ignored with -q
ok 196 - non-existent file in subdir a/ not ignored with --quiet
ok 197 - non-existent file in subdir a/ not ignored with -v
ok 198 - non-existent file in subdir a/ not ignored with -v -n
ok 199 - non-existent file in subdir a/ not ignored with -v --non-matching
ok 200 - non-existent file in subdir a/ not ignored with --verbose
ok 201 - non-existent file in subdir a/ not ignored with --verbose -n
ok 202 - non-existent file in subdir a/ not ignored with --verbose --non-matching
ok 203 - non-existent file in subdir a/ not ignored with --no-index
ok 204 - non-existent file in subdir a/ not ignored with --no-index -q
ok 205 - non-existent file in subdir a/ not ignored with --no-index --quiet
ok 206 - non-existent file in subdir a/ not ignored with --no-index -v
ok 207 - non-existent file in subdir a/ not ignored with --no-index -v -n
ok 208 - non-existent file in subdir a/ not ignored with --no-index -v --non-matching
ok 209 - non-existent file in subdir a/ not ignored with --no-index --verbose
ok 210 - non-existent file in subdir a/ not ignored with --no-index --verbose -n
ok 211 - non-existent file in subdir a/ not ignored with --no-index --verbose --non-matching
ok 212 - non-existent file in subdir a/ ignored
ok 213 - non-existent file in subdir a/ ignored with -q
ok 214 - non-existent file in subdir a/ ignored with --quiet
ok 215 - non-existent file in subdir a/ ignored with -v
ok 216 - non-existent file in subdir a/ ignored with -v -n
ok 217 - non-existent file in subdir a/ ignored with -v --non-matching
ok 218 - non-existent file in subdir a/ ignored with --verbose
ok 219 - non-existent file in subdir a/ ignored with --verbose -n
ok 220 - non-existent file in subdir a/ ignored with --verbose --non-matching
ok 221 - non-existent file in subdir a/ ignored with --no-index
ok 222 - non-existent file in subdir a/ ignored with --no-index -q
ok 223 - non-existent file in subdir a/ ignored with --no-index --quiet
ok 224 - non-existent file in subdir a/ ignored with --no-index -v
ok 225 - non-existent file in subdir a/ ignored with --no-index -v -n
ok 226 - non-existent file in subdir a/ ignored with --no-index -v --non-matching
ok 227 - non-existent file in subdir a/ ignored with --no-index --verbose
ok 228 - non-existent file in subdir a/ ignored with --no-index --verbose -n
ok 229 - non-existent file in subdir a/ ignored with --no-index --verbose --non-matching
ok 230 - existing untracked file in subdir a/ not ignored
ok 231 - existing untracked file in subdir a/ not ignored with -q
ok 232 - existing untracked file in subdir a/ not ignored with --quiet
ok 233 - existing untracked file in subdir a/ not ignored with -v
ok 234 - existing untracked file in subdir a/ not ignored with -v -n
ok 235 - existing untracked file in subdir a/ not ignored with -v --non-matching
ok 236 - existing untracked file in subdir a/ not ignored with --verbose
ok 237 - existing untracked file in subdir a/ not ignored with --verbose -n
ok 238 - existing untracked file in subdir a/ not ignored with --verbose --non-matching
ok 239 - existing untracked file in subdir a/ not ignored with --no-index
ok 240 - existing untracked file in subdir a/ not ignored with --no-index -q
ok 241 - existing untracked file in subdir a/ not ignored with --no-index --quiet
ok 242 - existing untracked file in subdir a/ not ignored with --no-index -v
ok 243 - existing untracked file in subdir a/ not ignored with --no-index -v -n
ok 244 - existing untracked file in subdir a/ not ignored with --no-index -v --non-matching
ok 245 - existing untracked file in subdir a/ not ignored with --no-index --verbose
ok 246 - existing untracked file in subdir a/ not ignored with --no-index --verbose -n
ok 247 - existing untracked file in subdir a/ not ignored with --no-index --verbose --non-matching
ok 248 - existing tracked file in subdir a/ not ignored
ok 249 - existing tracked file in subdir a/ not ignored with -q
ok 250 - existing tracked file in subdir a/ not ignored with --quiet
ok 251 - existing tracked file in subdir a/ not ignored with -v
ok 252 - existing tracked file in subdir a/ not ignored with -v -n
ok 253 - existing tracked file in subdir a/ not ignored with -v --non-matching
ok 254 - existing tracked file in subdir a/ not ignored with --verbose
ok 255 - existing tracked file in subdir a/ not ignored with --verbose -n
ok 256 - existing tracked file in subdir a/ not ignored with --verbose --non-matching
ok 257 - existing tracked file in subdir a/ shown as ignored with --no-index
ok 258 - existing tracked file in subdir a/ shown as ignored with --no-index -q
ok 259 - existing tracked file in subdir a/ shown as ignored with --no-index --quiet
ok 260 - existing tracked file in subdir a/ shown as ignored with --no-index -v
ok 261 - existing tracked file in subdir a/ shown as ignored with --no-index -v -n
ok 262 - existing tracked file in subdir a/ shown as ignored with --no-index -v --non-matching
ok 263 - existing tracked file in subdir a/ shown as ignored with --no-index --verbose
ok 264 - existing tracked file in subdir a/ shown as ignored with --no-index --verbose -n
ok 265 - existing tracked file in subdir a/ shown as ignored with --no-index --verbose --non-matching
ok 266 - existing untracked file in subdir a/ ignored
ok 267 - existing untracked file in subdir a/ ignored with -q
ok 268 - existing untracked file in subdir a/ ignored with --quiet
ok 269 - existing untracked file in subdir a/ ignored with -v
ok 270 - existing untracked file in subdir a/ ignored with -v -n
ok 271 - existing untracked file in subdir a/ ignored with -v --non-matching
ok 272 - existing untracked file in subdir a/ ignored with --verbose
ok 273 - existing untracked file in subdir a/ ignored with --verbose -n
ok 274 - existing untracked file in subdir a/ ignored with --verbose --non-matching
ok 275 - existing untracked file in subdir a/ ignored with --no-index
ok 276 - existing untracked file in subdir a/ ignored with --no-index -q
ok 277 - existing untracked file in subdir a/ ignored with --no-index --quiet
ok 278 - existing untracked file in subdir a/ ignored with --no-index -v
ok 279 - existing untracked file in subdir a/ ignored with --no-index -v -n
ok 280 - existing untracked file in subdir a/ ignored with --no-index -v --non-matching
ok 281 - existing untracked file in subdir a/ ignored with --no-index --verbose
ok 282 - existing untracked file in subdir a/ ignored with --no-index --verbose -n
ok 283 - existing untracked file in subdir a/ ignored with --no-index --verbose --non-matching
ok 284 - mix of file types in subdir a/
ok 285 - mix of file types in subdir a/ with -v
ok 286 - mix of file types in subdir a/ with -v -n
ok 287 - mix of file types in subdir a/ with -v --non-matching
ok 288 - mix of file types in subdir a/ with --verbose
ok 289 - mix of file types in subdir a/ with --verbose -n
ok 290 - mix of file types in subdir a/ with --verbose --non-matching
ok 291 - mix of file types in subdir a/ with --no-index
ok 292 - mix of file types in subdir a/ with --no-index -v
ok 293 - mix of file types in subdir a/ with --no-index -v -n
ok 294 - mix of file types in subdir a/ with --no-index -v --non-matching
ok 295 - mix of file types in subdir a/ with --no-index --verbose
ok 296 - mix of file types in subdir a/ with --no-index --verbose -n
ok 297 - mix of file types in subdir a/ with --no-index --verbose --non-matching
ok 298 - sub-directory local ignore
ok 299 - sub-directory local ignore with --verbose
ok 300 - local ignore inside a sub-directory
ok 301 - local ignore inside a sub-directory with --verbose
ok 302 - nested include of negated pattern
ok 303 - nested include of negated pattern with -q
ok 304 - nested include of negated pattern with -v
ok 305 - nested include of negated pattern with -v -n
ok 306 - ignored sub-directory
ok 307 - ignored sub-directory with -q
ok 308 - ignored sub-directory with --quiet
ok 309 - ignored sub-directory with -v
ok 310 - ignored sub-directory with -v -n
ok 311 - ignored sub-directory with -v --non-matching
ok 312 - ignored sub-directory with --verbose
ok 313 - ignored sub-directory with --verbose -n
ok 314 - ignored sub-directory with --verbose --non-matching
ok 315 - multiple files inside ignored sub-directory
ok 316 - multiple files inside ignored sub-directory with -v
ok 317 - cd to ignored sub-directory
ok 318 - cd to ignored sub-directory with -v
ok 319 - symlink
ok 320 - symlink with -q
ok 321 - symlink with --quiet
ok 322 - symlink with -v
ok 323 - symlink with -v -n
ok 324 - symlink with -v --non-matching
ok 325 - symlink with --verbose
ok 326 - symlink with --verbose -n
ok 327 - symlink with --verbose --non-matching
ok 328 - beyond a symlink
ok 329 - beyond a symlink with -q
ok 330 - beyond a symlink with --quiet
ok 331 - beyond a symlink with -v
ok 332 - beyond a symlink with -v -n
ok 333 - beyond a symlink with -v --non-matching
ok 334 - beyond a symlink with --verbose
ok 335 - beyond a symlink with --verbose -n
ok 336 - beyond a symlink with --verbose --non-matching
ok 337 - beyond a symlink from subdirectory
ok 338 - beyond a symlink from subdirectory with -q
ok 339 - beyond a symlink from subdirectory with --quiet
ok 340 - beyond a symlink from subdirectory with -v
ok 341 - beyond a symlink from subdirectory with -v -n
ok 342 - beyond a symlink from subdirectory with -v --non-matching
ok 343 - beyond a symlink from subdirectory with --verbose
ok 344 - beyond a symlink from subdirectory with --verbose -n
ok 345 - beyond a symlink from subdirectory with --verbose --non-matching
ok 346 - submodule
ok 347 - submodule with -q
ok 348 - submodule with --quiet
ok 349 - submodule with -v
ok 350 - submodule with -v -n
ok 351 - submodule with -v --non-matching
ok 352 - submodule with --verbose
ok 353 - submodule with --verbose -n
ok 354 - submodule with --verbose --non-matching
ok 355 - submodule from subdirectory
ok 356 - submodule from subdirectory with -q
ok 357 - submodule from subdirectory with --quiet
ok 358 - submodule from subdirectory with -v
ok 359 - submodule from subdirectory with -v -n
ok 360 - submodule from subdirectory with -v --non-matching
ok 361 - submodule from subdirectory with --verbose
ok 362 - submodule from subdirectory with --verbose -n
ok 363 - submodule from subdirectory with --verbose --non-matching
ok 364 - global ignore not yet enabled
ok 365 - global ignore
ok 366 - global ignore with -v
ok 367 - --stdin
ok 368 - --stdin -q
ok 369 - --stdin -v
ok 370 - --stdin -z
ok 371 - --stdin -z -q
ok 372 - --stdin -z -v
ok 373 - -z --stdin
ok 374 - -z --stdin -q
ok 375 - -z --stdin -v
ok 376 - --stdin from subdirectory
ok 377 - --stdin from subdirectory with -v
ok 378 - --stdin from subdirectory with -v -n
ok 379 - --stdin -z from subdirectory
ok 380 - --stdin -z from subdirectory with -v
ok 381 - -z --stdin from subdirectory
ok 382 - -z --stdin from subdirectory with -v
ok 383 - streaming support for --stdin
ok 384 - existing file and directory
ok 385 - existing directory and file
ok 386 - exact prefix matching (with root)
ok 387 - exact prefix matching (without root)
ok 388 - directories and ** matches
ok 389 - trailing whitespace is ignored
ok 390 - quoting allows trailing whitespace
ok 391 - correct handling of backslashes
ok 392 - info/exclude trumps core.excludesfile
ok 393 - set up ignore file for symlink tests
ok 394 - symlinks respected in core.excludesFile
ok 395 - symlinks respected in info/exclude
ok 396 - symlinks not respected in-tree
ok 397 # skip large exclude file ignored in tree (missing EXPENSIVE)
# passed all 397 test(s)
1..397
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0052-simple-ipc.sh ***
ok 1 - start simple command server
ok 2 - simple command server
ok 3 - servers cannot share the same path
ok 4 - big response
ok 5 - chunk response
ok 6 - slow response
ok 7 - sendbytes
ok 8 - stress test threads
ok 9 - stop-daemon works
# passed all 9 test(s)
1..9
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0000-basic.sh ***
ok 1 - verify that the running shell supports "local"
ok 2 - .git/objects should be empty after git init in an empty repo
ok 3 - .git/objects should have 3 subdirectories
ok 4 - success is reported like this
ok 5 - subtest: 3 passing tests
ok 6 - subtest: 2/3 tests passing
ok 7 - subtest: --immediate
ok 8 - subtest: a failing TODO test
ok 9 - subtest: a passing TODO test
ok 10 - subtest: 2 TODO tests, one passin
ok 11 - subtest: mixed results: pass, failure and a TODO test
ok 12 - subtest: mixed results: a mixture of all possible results
ok 13 - subtest: --verbose option
ok 14 - subtest: --verbose-only option
ok 15 - subtest: skip one with GIT_SKIP_TESTS
ok 16 - subtest: skip several with GIT_SKIP_TESTS
ok 17 - subtest: sh pattern skipping with GIT_SKIP_TESTS
ok 18 - subtest: skip entire test suite with GIT_SKIP_TESTS
ok 19 - subtest: GIT_SKIP_TESTS does not skip unmatched suite
ok 20 - subtest: --run basic
ok 21 - subtest: --run with a range
ok 22 - subtest: --run with two ranges
ok 23 - subtest: --run with a left open range
ok 24 - subtest: --run with a right open range
ok 25 - subtest: --run with basic negation
ok 26 - subtest: --run with two negations
ok 27 - subtest: --run a range and negation
ok 28 - subtest: --run range negation
ok 29 - subtest: --run include, exclude and include
ok 30 - subtest: --run include, exclude and include, comma separated
ok 31 - subtest: --run exclude and include
ok 32 - subtest: --run empty selectors
ok 33 - subtest: --run substring selector
ok 34 - subtest: --run keyword selection
ok 35 - subtest: --run invalid range end
ok 36 - subtest: --invert-exit-code without --immediate
ok 37 - subtest: --invert-exit-code with --immediate: all passed
ok 38 - subtest: --invert-exit-code without --immediate: partial pass
ok 39 - subtest: --invert-exit-code with --immediate: partial pass
ok 40 - subtest: --invert-exit-code --immediate: got a failure
ok 41 - subtest: tests respect prerequisites
ok 42 - subtest: tests respect lazy prerequisites
ok 43 - subtest: nested lazy prerequisites
ok 44 - subtest: lazy prereqs do not turn off tracing
ok 45 - subtest: tests clean up after themselves
ok 46 - subtest: tests clean up even on failures
ok 47 - subtest: test_atexit is run
ok 48 - test_oid provides sane info by default
ok 49 - test_oid can look up data for SHA-1
ok 50 - test_oid can look up data for SHA-256
ok 51 - test_oid can look up data for a specified algorithm
ok 52 - test_bool_env
ok 53 - git update-index without --add should fail adding
ok 54 - git update-index with --add should succeed
ok 55 - writing tree out with git write-tree
ok 56 - validate object ID of a known tree
ok 57 - git update-index without --remove should fail removing
ok 58 - git update-index with --remove should be able to remove
ok 59 - git write-tree should be able to write an empty tree
ok 60 - validate object ID of a known tree
ok 61 - adding various types of objects with git update-index --add
ok 62 - showing stage with git ls-files --stage
ok 63 - validate git ls-files output for a known tree
ok 64 - writing tree out with git write-tree
ok 65 - validate object ID for a known tree
ok 66 - showing tree with git ls-tree
ok 67 - git ls-tree output for a known tree
ok 68 - showing tree with git ls-tree -r
ok 69 - git ls-tree -r output for a known tree
ok 70 - showing tree with git ls-tree -r -t
ok 71 - git ls-tree -r output for a known tree
ok 72 - writing partial tree out with git write-tree --prefix
ok 73 - validate object ID for a known tree
ok 74 - writing partial tree out with git write-tree --prefix
ok 75 - validate object ID for a known tree
ok 76 - put invalid objects into the index
ok 77 - writing this tree without --missing-ok
ok 78 - writing this tree with --missing-ok
ok 79 - git read-tree followed by write-tree should be idempotent
ok 80 - validate git diff-files output for a know cache/work tree state
ok 81 - git update-index --refresh should succeed
ok 82 - no diff after checkout and git update-index --refresh
ok 83 - git commit-tree records the correct tree in a commit
ok 84 - git commit-tree records the correct parent in a commit
ok 85 - git commit-tree omits duplicated parent in a commit
ok 86 - update-index D/F conflict
ok 87 - very long name in the index handled sanely
ok 88 - more update-index D/F conflicts
ok 89 - test_must_fail on a failing git command
ok 90 - test_must_fail on a failing git command with env
ok 91 - test_must_fail rejects a non-git command
ok 92 - test_must_fail rejects a non-git command with env
# passed all 92 test(s)
1..92
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[2]: Entering directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
*** t0027-auto-crlf.sh ***
ok 1 - ls-files --eol -o Text/Binary
ok 2 - setup main
ok 3 - commit files empty attr
ok 4 - commit files attr=auto
ok 5 - commit files attr=text
ok 6 - commit files attr=-text
ok 7 - commit files attr=lf
ok 8 - commit files attr=crlf
ok 9 - setup commit file with mixed EOL
ok 10 - commit file with mixed EOL onto LF crlf=false attr=
ok 11 - commit file with mixed EOL onto CLRF attr= aeol= crlf=false
ok 12 - commit file with mixed EOL onto CRLF_mix_LF attr= aeol= crlf=false
ok 13 - commit file with mixed EOL onto LF_mix_cr attr= aeol= crlf=false 
ok 14 - commit file with mixed EOL onto CRLF_nul attr= aeol= crlf=false
ok 15 - setup commit file with mixed EOL
ok 16 - commit file with mixed EOL onto LF crlf=true attr=
ok 17 - commit file with mixed EOL onto CLRF attr= aeol= crlf=true
ok 18 - commit file with mixed EOL onto CRLF_mix_LF attr= aeol= crlf=true
ok 19 - commit file with mixed EOL onto LF_mix_cr attr= aeol= crlf=true 
ok 20 - commit file with mixed EOL onto CRLF_nul attr= aeol= crlf=true
ok 21 - setup commit file with mixed EOL
ok 22 - commit file with mixed EOL onto LF crlf=input attr=
ok 23 - commit file with mixed EOL onto CLRF attr= aeol= crlf=input
ok 24 - commit file with mixed EOL onto CRLF_mix_LF attr= aeol= crlf=input
ok 25 - commit file with mixed EOL onto LF_mix_cr attr= aeol= crlf=input 
ok 26 - commit file with mixed EOL onto CRLF_nul attr= aeol= crlf=input
ok 27 - setup commit file with mixed EOL
ok 28 - commit file with mixed EOL onto LF crlf=false attr=auto
ok 29 - commit file with mixed EOL onto CLRF attr=auto aeol= crlf=false
ok 30 - commit file with mixed EOL onto CRLF_mix_LF attr=auto aeol= crlf=false
ok 31 - commit file with mixed EOL onto LF_mix_cr attr=auto aeol= crlf=false 
ok 32 - commit file with mixed EOL onto CRLF_nul attr=auto aeol= crlf=false
ok 33 - setup commit file with mixed EOL
ok 34 - commit file with mixed EOL onto LF crlf=true attr=auto
ok 35 - commit file with mixed EOL onto CLRF attr=auto aeol= crlf=true
ok 36 - commit file with mixed EOL onto CRLF_mix_LF attr=auto aeol= crlf=true
ok 37 - commit file with mixed EOL onto LF_mix_cr attr=auto aeol= crlf=true 
ok 38 - commit file with mixed EOL onto CRLF_nul attr=auto aeol= crlf=true
ok 39 - setup commit file with mixed EOL
ok 40 - commit file with mixed EOL onto LF crlf=input attr=auto
ok 41 - commit file with mixed EOL onto CLRF attr=auto aeol= crlf=input
ok 42 - commit file with mixed EOL onto CRLF_mix_LF attr=auto aeol= crlf=input
ok 43 - commit file with mixed EOL onto LF_mix_cr attr=auto aeol= crlf=input 
ok 44 - commit file with mixed EOL onto CRLF_nul attr=auto aeol= crlf=input
ok 45 - setup commit NNO files
ok 46 - commit NNO files crlf=false attr= LF
ok 47 - commit NNO files attr= aeol= crlf=false CRLF
ok 48 - commit NNO files attr= aeol= crlf=false CRLF_mix_LF
ok 49 - commit NNO files attr= aeol= crlf=false LF_mix_cr
ok 50 - commit NNO files attr= aeol= crlf=false CRLF_nul
ok 51 - setup commit NNO files
ok 52 - commit NNO files crlf=true attr= LF
ok 53 - commit NNO files attr= aeol= crlf=true CRLF
ok 54 - commit NNO files attr= aeol= crlf=true CRLF_mix_LF
ok 55 - commit NNO files attr= aeol= crlf=true LF_mix_cr
ok 56 - commit NNO files attr= aeol= crlf=true CRLF_nul
ok 57 - setup commit NNO files
ok 58 - commit NNO files crlf=input attr= LF
ok 59 - commit NNO files attr= aeol= crlf=input CRLF
ok 60 - commit NNO files attr= aeol= crlf=input CRLF_mix_LF
ok 61 - commit NNO files attr= aeol= crlf=input LF_mix_cr
ok 62 - commit NNO files attr= aeol= crlf=input CRLF_nul
ok 63 - setup commit NNO files
ok 64 - commit NNO files crlf=false attr=auto LF
ok 65 - commit NNO files attr=auto aeol= crlf=false CRLF
ok 66 - commit NNO files attr=auto aeol= crlf=false CRLF_mix_LF
ok 67 - commit NNO files attr=auto aeol= crlf=false LF_mix_cr
ok 68 - commit NNO files attr=auto aeol= crlf=false CRLF_nul
ok 69 - setup commit NNO files
ok 70 - commit NNO files crlf=true attr=auto LF
ok 71 - commit NNO files attr=auto aeol= crlf=true CRLF
ok 72 - commit NNO files attr=auto aeol= crlf=true CRLF_mix_LF
ok 73 - commit NNO files attr=auto aeol= crlf=true LF_mix_cr
ok 74 - commit NNO files attr=auto aeol= crlf=true CRLF_nul
ok 75 - setup commit NNO files
ok 76 - commit NNO files crlf=input attr=auto LF
ok 77 - commit NNO files attr=auto aeol= crlf=input CRLF
ok 78 - commit NNO files attr=auto aeol= crlf=input CRLF_mix_LF
ok 79 - commit NNO files attr=auto aeol= crlf=input LF_mix_cr
ok 80 - commit NNO files attr=auto aeol= crlf=input CRLF_nul
ok 81 - setup commit NNO files
ok 82 - commit NNO files crlf=true attr=-text LF
ok 83 - commit NNO files attr=-text aeol= crlf=true CRLF
ok 84 - commit NNO files attr=-text aeol= crlf=true CRLF_mix_LF
ok 85 - commit NNO files attr=-text aeol= crlf=true LF_mix_cr
ok 86 - commit NNO files attr=-text aeol= crlf=true CRLF_nul
ok 87 - setup commit NNO files
ok 88 - commit NNO files crlf=true attr=-text LF
ok 89 - commit NNO files attr=-text aeol=lf crlf=true CRLF
ok 90 - commit NNO files attr=-text aeol=lf crlf=true CRLF_mix_LF
ok 91 - commit NNO files attr=-text aeol=lf crlf=true LF_mix_cr
ok 92 - commit NNO files attr=-text aeol=lf crlf=true CRLF_nul
ok 93 - setup commit NNO files
ok 94 - commit NNO files crlf=true attr=-text LF
ok 95 - commit NNO files attr=-text aeol=crlf crlf=true CRLF
ok 96 - commit NNO files attr=-text aeol=crlf crlf=true CRLF_mix_LF
ok 97 - commit NNO files attr=-text aeol=crlf crlf=true LF_mix_cr
ok 98 - commit NNO files attr=-text aeol=crlf crlf=true CRLF_nul
ok 99 - setup commit NNO files
ok 100 - commit NNO files crlf=true attr= LF
ok 101 - commit NNO files attr= aeol=lf crlf=true CRLF
ok 102 - commit NNO files attr= aeol=lf crlf=true CRLF_mix_LF
ok 103 - commit NNO files attr= aeol=lf crlf=true LF_mix_cr
ok 104 - commit NNO files attr= aeol=lf crlf=true CRLF_nul
ok 105 - setup commit NNO files
ok 106 - commit NNO files crlf=true attr= LF
ok 107 - commit NNO files attr= aeol=crlf crlf=true CRLF
ok 108 - commit NNO files attr= aeol=crlf crlf=true CRLF_mix_LF
ok 109 - commit NNO files attr= aeol=crlf crlf=true LF_mix_cr
ok 110 - commit NNO files attr= aeol=crlf crlf=true CRLF_nul
ok 111 - setup commit NNO files
ok 112 - commit NNO files crlf=true attr=auto LF
ok 113 - commit NNO files attr=auto aeol=lf crlf=true CRLF
ok 114 - commit NNO files attr=auto aeol=lf crlf=true CRLF_mix_LF
ok 115 - commit NNO files attr=auto aeol=lf crlf=true LF_mix_cr
ok 116 - commit NNO files attr=auto aeol=lf crlf=true CRLF_nul
ok 117 - setup commit NNO files
ok 118 - commit NNO files crlf=true attr=auto LF
ok 119 - commit NNO files attr=auto aeol=crlf crlf=true CRLF
ok 120 - commit NNO files attr=auto aeol=crlf crlf=true CRLF_mix_LF
ok 121 - commit NNO files attr=auto aeol=crlf crlf=true LF_mix_cr
ok 122 - commit NNO files attr=auto aeol=crlf crlf=true CRLF_nul
ok 123 - setup commit NNO files
ok 124 - commit NNO files crlf=true attr=text LF
ok 125 - commit NNO files attr=text aeol=lf crlf=true CRLF
ok 126 - commit NNO files attr=text aeol=lf crlf=true CRLF_mix_LF
ok 127 - commit NNO files attr=text aeol=lf crlf=true LF_mix_cr
ok 128 - commit NNO files attr=text aeol=lf crlf=true CRLF_nul
ok 129 - setup commit NNO files
ok 130 - commit NNO files crlf=true attr=text LF
ok 131 - commit NNO files attr=text aeol=crlf crlf=true CRLF
ok 132 - commit NNO files attr=text aeol=crlf crlf=true CRLF_mix_LF
ok 133 - commit NNO files attr=text aeol=crlf crlf=true LF_mix_cr
ok 134 - commit NNO files attr=text aeol=crlf crlf=true CRLF_nul
ok 135 - setup commit NNO files
ok 136 - commit NNO files crlf=false attr=-text LF
ok 137 - commit NNO files attr=-text aeol= crlf=false CRLF
ok 138 - commit NNO files attr=-text aeol= crlf=false CRLF_mix_LF
ok 139 - commit NNO files attr=-text aeol= crlf=false LF_mix_cr
ok 140 - commit NNO files attr=-text aeol= crlf=false CRLF_nul
ok 141 - setup commit NNO files
ok 142 - commit NNO files crlf=false attr=-text LF
ok 143 - commit NNO files attr=-text aeol=lf crlf=false CRLF
ok 144 - commit NNO files attr=-text aeol=lf crlf=false CRLF_mix_LF
ok 145 - commit NNO files attr=-text aeol=lf crlf=false LF_mix_cr
ok 146 - commit NNO files attr=-text aeol=lf crlf=false CRLF_nul
ok 147 - setup commit NNO files
ok 148 - commit NNO files crlf=false attr=-text LF
ok 149 - commit NNO files attr=-text aeol=crlf crlf=false CRLF
ok 150 - commit NNO files attr=-text aeol=crlf crlf=false CRLF_mix_LF
ok 151 - commit NNO files attr=-text aeol=crlf crlf=false LF_mix_cr
ok 152 - commit NNO files attr=-text aeol=crlf crlf=false CRLF_nul
ok 153 - setup commit NNO files
ok 154 - commit NNO files crlf=false attr= LF
ok 155 - commit NNO files attr= aeol=lf crlf=false CRLF
ok 156 - commit NNO files attr= aeol=lf crlf=false CRLF_mix_LF
ok 157 - commit NNO files attr= aeol=lf crlf=false LF_mix_cr
ok 158 - commit NNO files attr= aeol=lf crlf=false CRLF_nul
ok 159 - setup commit NNO files
ok 160 - commit NNO files crlf=false attr= LF
ok 161 - commit NNO files attr= aeol=crlf crlf=false CRLF
ok 162 - commit NNO files attr= aeol=crlf crlf=false CRLF_mix_LF
ok 163 - commit NNO files attr= aeol=crlf crlf=false LF_mix_cr
ok 164 - commit NNO files attr= aeol=crlf crlf=false CRLF_nul
ok 165 - setup commit NNO files
ok 166 - commit NNO files crlf=false attr=auto LF
ok 167 - commit NNO files attr=auto aeol=lf crlf=false CRLF
ok 168 - commit NNO files attr=auto aeol=lf crlf=false CRLF_mix_LF
ok 169 - commit NNO files attr=auto aeol=lf crlf=false LF_mix_cr
ok 170 - commit NNO files attr=auto aeol=lf crlf=false CRLF_nul
ok 171 - setup commit NNO files
ok 172 - commit NNO files crlf=false attr=auto LF
ok 173 - commit NNO files attr=auto aeol=crlf crlf=false CRLF
ok 174 - commit NNO files attr=auto aeol=crlf crlf=false CRLF_mix_LF
ok 175 - commit NNO files attr=auto aeol=crlf crlf=false LF_mix_cr
ok 176 - commit NNO files attr=auto aeol=crlf crlf=false CRLF_nul
ok 177 - setup commit NNO files
ok 178 - commit NNO files crlf=false attr=text LF
ok 179 - commit NNO files attr=text aeol=lf crlf=false CRLF
ok 180 - commit NNO files attr=text aeol=lf crlf=false CRLF_mix_LF
ok 181 - commit NNO files attr=text aeol=lf crlf=false LF_mix_cr
ok 182 - commit NNO files attr=text aeol=lf crlf=false CRLF_nul
ok 183 - setup commit NNO files
ok 184 - commit NNO files crlf=false attr=text LF
ok 185 - commit NNO files attr=text aeol=crlf crlf=false CRLF
ok 186 - commit NNO files attr=text aeol=crlf crlf=false CRLF_mix_LF
ok 187 - commit NNO files attr=text aeol=crlf crlf=false LF_mix_cr
ok 188 - commit NNO files attr=text aeol=crlf crlf=false CRLF_nul
ok 189 - setup commit NNO files
ok 190 - commit NNO files crlf=input attr=-text LF
ok 191 - commit NNO files attr=-text aeol= crlf=input CRLF
ok 192 - commit NNO files attr=-text aeol= crlf=input CRLF_mix_LF
ok 193 - commit NNO files attr=-text aeol= crlf=input LF_mix_cr
ok 194 - commit NNO files attr=-text aeol= crlf=input CRLF_nul
ok 195 - setup commit NNO files
ok 196 - commit NNO files crlf=input attr=-text LF
ok 197 - commit NNO files attr=-text aeol=lf crlf=input CRLF
ok 198 - commit NNO files attr=-text aeol=lf crlf=input CRLF_mix_LF
ok 199 - commit NNO files attr=-text aeol=lf crlf=input LF_mix_cr
ok 200 - commit NNO files attr=-text aeol=lf crlf=input CRLF_nul
ok 201 - setup commit NNO files
ok 202 - commit NNO files crlf=input attr=-text LF
ok 203 - commit NNO files attr=-text aeol=crlf crlf=input CRLF
ok 204 - commit NNO files attr=-text aeol=crlf crlf=input CRLF_mix_LF
ok 205 - commit NNO files attr=-text aeol=crlf crlf=input LF_mix_cr
ok 206 - commit NNO files attr=-text aeol=crlf crlf=input CRLF_nul
ok 207 - setup commit NNO files
ok 208 - commit NNO files crlf=input attr= LF
ok 209 - commit NNO files attr= aeol=lf crlf=input CRLF
ok 210 - commit NNO files attr= aeol=lf crlf=input CRLF_mix_LF
ok 211 - commit NNO files attr= aeol=lf crlf=input LF_mix_cr
ok 212 - commit NNO files attr= aeol=lf crlf=input CRLF_nul
ok 213 - setup commit NNO files
ok 214 - commit NNO files crlf=input attr= LF
ok 215 - commit NNO files attr= aeol=crlf crlf=input CRLF
ok 216 - commit NNO files attr= aeol=crlf crlf=input CRLF_mix_LF
ok 217 - commit NNO files attr= aeol=crlf crlf=input LF_mix_cr
ok 218 - commit NNO files attr= aeol=crlf crlf=input CRLF_nul
ok 219 - setup commit NNO files
ok 220 - commit NNO files crlf=input attr=auto LF
ok 221 - commit NNO files attr=auto aeol=lf crlf=input CRLF
ok 222 - commit NNO files attr=auto aeol=lf crlf=input CRLF_mix_LF
ok 223 - commit NNO files attr=auto aeol=lf crlf=input LF_mix_cr
ok 224 - commit NNO files attr=auto aeol=lf crlf=input CRLF_nul
ok 225 - setup commit NNO files
ok 226 - commit NNO files crlf=input attr=auto LF
ok 227 - commit NNO files attr=auto aeol=crlf crlf=input CRLF
ok 228 - commit NNO files attr=auto aeol=crlf crlf=input CRLF_mix_LF
ok 229 - commit NNO files attr=auto aeol=crlf crlf=input LF_mix_cr
ok 230 - commit NNO files attr=auto aeol=crlf crlf=input CRLF_nul
ok 231 - setup commit NNO files
ok 232 - commit NNO files crlf=input attr=text LF
ok 233 - commit NNO files attr=text aeol=lf crlf=input CRLF
ok 234 - commit NNO files attr=text aeol=lf crlf=input CRLF_mix_LF
ok 235 - commit NNO files attr=text aeol=lf crlf=input LF_mix_cr
ok 236 - commit NNO files attr=text aeol=lf crlf=input CRLF_nul
ok 237 - setup commit NNO files
ok 238 - commit NNO files crlf=input attr=text LF
ok 239 - commit NNO files attr=text aeol=crlf crlf=input CRLF
ok 240 - commit NNO files attr=text aeol=crlf crlf=input CRLF_mix_LF
ok 241 - commit NNO files attr=text aeol=crlf crlf=input LF_mix_cr
ok 242 - commit NNO files attr=text aeol=crlf crlf=input CRLF_nul
ok 243 - setup commit NNO files
ok 244 - commit NNO files crlf=false attr=text LF
ok 245 - commit NNO files attr=text aeol= crlf=false CRLF
ok 246 - commit NNO files attr=text aeol= crlf=false CRLF_mix_LF
ok 247 - commit NNO files attr=text aeol= crlf=false LF_mix_cr
ok 248 - commit NNO files attr=text aeol= crlf=false CRLF_nul
ok 249 - setup commit NNO files
ok 250 - commit NNO files crlf=true attr=text LF
ok 251 - commit NNO files attr=text aeol= crlf=true CRLF
ok 252 - commit NNO files attr=text aeol= crlf=true CRLF_mix_LF
ok 253 - commit NNO files attr=text aeol= crlf=true LF_mix_cr
ok 254 - commit NNO files attr=text aeol= crlf=true CRLF_nul
ok 255 - setup commit NNO files
ok 256 - commit NNO files crlf=input attr=text LF
ok 257 - commit NNO files attr=text aeol= crlf=input CRLF
ok 258 - commit NNO files attr=text aeol= crlf=input CRLF_mix_LF
ok 259 - commit NNO files attr=text aeol= crlf=input LF_mix_cr
ok 260 - commit NNO files attr=text aeol= crlf=input CRLF_nul
ok 261 - commit NNO and cleanup
ok 262 - commit empty gitattribues
ok 263 - commit text=auto
ok 264 - commit text
ok 265 - commit -text
ok 266 - compare_files LF NNO_attr__aeol__true_LF.txt
ok 267 - compare_files CRLF NNO_attr__aeol__true_CRLF.txt
ok 268 - compare_files CRLF_mix_LF NNO_attr__aeol__true_CRLF_mix_LF.txt
ok 269 - compare_files LF_mix_CR NNO_attr__aeol__true_LF_mix_CR.txt
ok 270 - compare_files CRLF_nul NNO_attr__aeol__true_CRLF_nul.txt
ok 271 - compare_files LF NNO_attr_-text_aeol__true_LF.txt
ok 272 - compare_files CRLF NNO_attr_-text_aeol__true_CRLF.txt
ok 273 - compare_files CRLF_mix_LF NNO_attr_-text_aeol__true_CRLF_mix_LF.txt
ok 274 - compare_files LF_mix_CR NNO_attr_-text_aeol__true_LF_mix_CR.txt
ok 275 - compare_files CRLF_nul NNO_attr_-text_aeol__true_CRLF_nul.txt
ok 276 - compare_files LF NNO_attr_-text_aeol_lf_true_LF.txt
ok 277 - compare_files CRLF NNO_attr_-text_aeol_lf_true_CRLF.txt
ok 278 - compare_files CRLF_mix_LF NNO_attr_-text_aeol_lf_true_CRLF_mix_LF.txt
ok 279 - compare_files LF_mix_CR NNO_attr_-text_aeol_lf_true_LF_mix_CR.txt
ok 280 - compare_files CRLF_nul NNO_attr_-text_aeol_lf_true_CRLF_nul.txt
ok 281 - compare_files LF NNO_attr_-text_aeol_crlf_true_LF.txt
ok 282 - compare_files CRLF NNO_attr_-text_aeol_crlf_true_CRLF.txt
ok 283 - compare_files CRLF_mix_LF NNO_attr_-text_aeol_crlf_true_CRLF_mix_LF.txt
ok 284 - compare_files LF_mix_CR NNO_attr_-text_aeol_crlf_true_LF_mix_CR.txt
ok 285 - compare_files CRLF_nul NNO_attr_-text_aeol_crlf_true_CRLF_nul.txt
ok 286 - compare_files LF NNO_attr_auto_aeol__true_LF.txt
ok 287 - compare_files CRLF NNO_attr_auto_aeol__true_CRLF.txt
ok 288 - compare_files CRLF_mix_LF NNO_attr_auto_aeol__true_CRLF_mix_LF.txt
ok 289 - compare_files LF_mix_CR NNO_attr_auto_aeol__true_LF_mix_CR.txt
ok 290 - compare_files CRLF_nul NNO_attr_auto_aeol__true_CRLF_nul.txt
ok 291 - compare_files LF NNO_attr_auto_aeol_lf_true_LF.txt
ok 292 - compare_files CRLF NNO_attr_auto_aeol_lf_true_CRLF.txt
ok 293 - compare_files CRLF_mix_LF NNO_attr_auto_aeol_lf_true_CRLF_mix_LF.txt
ok 294 - compare_files LF_mix_CR NNO_attr_auto_aeol_lf_true_LF_mix_CR.txt
ok 295 - compare_files CRLF_nul NNO_attr_auto_aeol_lf_true_CRLF_nul.txt
ok 296 - compare_files LF NNO_attr_auto_aeol_crlf_true_LF.txt
ok 297 - compare_files CRLF NNO_attr_auto_aeol_crlf_true_CRLF.txt
ok 298 - compare_files CRLF_mix_LF NNO_attr_auto_aeol_crlf_true_CRLF_mix_LF.txt
ok 299 - compare_files LF_mix_CR NNO_attr_auto_aeol_crlf_true_LF_mix_CR.txt
ok 300 - compare_files CRLF_nul NNO_attr_auto_aeol_crlf_true_CRLF_nul.txt
ok 301 - compare_files LF NNO_attr_text_aeol__true_LF.txt
ok 302 - compare_files LF NNO_attr_text_aeol__true_CRLF.txt
ok 303 - compare_files LF NNO_attr_text_aeol__true_CRLF_mix_LF.txt
ok 304 - compare_files LF_mix_CR NNO_attr_text_aeol__true_LF_mix_CR.txt
ok 305 - compare_files LF_nul NNO_attr_text_aeol__true_CRLF_nul.txt
ok 306 - compare_files LF NNO_attr_text_aeol_lf_true_LF.txt
ok 307 - compare_files LF NNO_attr_text_aeol_lf_true_CRLF.txt
ok 308 - compare_files LF NNO_attr_text_aeol_lf_true_CRLF_mix_LF.txt
ok 309 - compare_files LF_mix_CR NNO_attr_text_aeol_lf_true_LF_mix_CR.txt
ok 310 - compare_files LF_nul NNO_attr_text_aeol_lf_true_CRLF_nul.txt
ok 311 - compare_files LF NNO_attr_text_aeol_crlf_true_LF.txt
ok 312 - compare_files LF NNO_attr_text_aeol_crlf_true_CRLF.txt
ok 313 - compare_files LF NNO_attr_text_aeol_crlf_true_CRLF_mix_LF.txt
ok 314 - compare_files LF_mix_CR NNO_attr_text_aeol_crlf_true_LF_mix_CR.txt
ok 315 - compare_files LF_nul NNO_attr_text_aeol_crlf_true_CRLF_nul.txt
ok 316 - compare_files LF NNO_attr__aeol__false_LF.txt
ok 317 - compare_files CRLF NNO_attr__aeol__false_CRLF.txt
ok 318 - compare_files CRLF_mix_LF NNO_attr__aeol__false_CRLF_mix_LF.txt
ok 319 - compare_files LF_mix_CR NNO_attr__aeol__false_LF_mix_CR.txt
ok 320 - compare_files CRLF_nul NNO_attr__aeol__false_CRLF_nul.txt
ok 321 - compare_files LF NNO_attr_-text_aeol__false_LF.txt
ok 322 - compare_files CRLF NNO_attr_-text_aeol__false_CRLF.txt
ok 323 - compare_files CRLF_mix_LF NNO_attr_-text_aeol__false_CRLF_mix_LF.txt
ok 324 - compare_files LF_mix_CR NNO_attr_-text_aeol__false_LF_mix_CR.txt
ok 325 - compare_files CRLF_nul NNO_attr_-text_aeol__false_CRLF_nul.txt
ok 326 - compare_files LF NNO_attr_-text_aeol_lf_false_LF.txt
ok 327 - compare_files CRLF NNO_attr_-text_aeol_lf_false_CRLF.txt
ok 328 - compare_files CRLF_mix_LF NNO_attr_-text_aeol_lf_false_CRLF_mix_LF.txt
ok 329 - compare_files LF_mix_CR NNO_attr_-text_aeol_lf_false_LF_mix_CR.txt
ok 330 - compare_files CRLF_nul NNO_attr_-text_aeol_lf_false_CRLF_nul.txt
ok 331 - compare_files LF NNO_attr_-text_aeol_crlf_false_LF.txt
ok 332 - compare_files CRLF NNO_attr_-text_aeol_crlf_false_CRLF.txt
ok 333 - compare_files CRLF_mix_LF NNO_attr_-text_aeol_crlf_false_CRLF_mix_LF.txt
ok 334 - compare_files LF_mix_CR NNO_attr_-text_aeol_crlf_false_LF_mix_CR.txt
ok 335 - compare_files CRLF_nul NNO_attr_-text_aeol_crlf_false_CRLF_nul.txt
ok 336 - compare_files LF NNO_attr_auto_aeol__false_LF.txt
ok 337 - compare_files CRLF NNO_attr_auto_aeol__false_CRLF.txt
ok 338 - compare_files CRLF_mix_LF NNO_attr_auto_aeol__false_CRLF_mix_LF.txt
ok 339 - compare_files LF_mix_CR NNO_attr_auto_aeol__false_LF_mix_CR.txt
ok 340 - compare_files CRLF_nul NNO_attr_auto_aeol__false_CRLF_nul.txt
ok 341 - compare_files LF NNO_attr_auto_aeol_lf_false_LF.txt
ok 342 - compare_files CRLF NNO_attr_auto_aeol_lf_false_CRLF.txt
ok 343 - compare_files CRLF_mix_LF NNO_attr_auto_aeol_lf_false_CRLF_mix_LF.txt
ok 344 - compare_files LF_mix_CR NNO_attr_auto_aeol_lf_false_LF_mix_CR.txt
ok 345 - compare_files CRLF_nul NNO_attr_auto_aeol_lf_false_CRLF_nul.txt
ok 346 - compare_files LF NNO_attr_auto_aeol_crlf_false_LF.txt
ok 347 - compare_files CRLF NNO_attr_auto_aeol_crlf_false_CRLF.txt
ok 348 - compare_files CRLF_mix_LF NNO_attr_auto_aeol_crlf_false_CRLF_mix_LF.txt
ok 349 - compare_files LF_mix_CR NNO_attr_auto_aeol_crlf_false_LF_mix_CR.txt
ok 350 - compare_files CRLF_nul NNO_attr_auto_aeol_crlf_false_CRLF_nul.txt
ok 351 - compare_files LF NNO_attr_text_aeol__false_LF.txt
ok 352 - compare_files LF NNO_attr_text_aeol__false_CRLF.txt
ok 353 - compare_files LF NNO_attr_text_aeol__false_CRLF_mix_LF.txt
ok 354 - compare_files LF_mix_CR NNO_attr_text_aeol__false_LF_mix_CR.txt
ok 355 - compare_files LF_nul NNO_attr_text_aeol__false_CRLF_nul.txt
ok 356 - compare_files LF NNO_attr_text_aeol_lf_false_LF.txt
ok 357 - compare_files LF NNO_attr_text_aeol_lf_false_CRLF.txt
ok 358 - compare_files LF NNO_attr_text_aeol_lf_false_CRLF_mix_LF.txt
ok 359 - compare_files LF_mix_CR NNO_attr_text_aeol_lf_false_LF_mix_CR.txt
ok 360 - compare_files LF_nul NNO_attr_text_aeol_lf_false_CRLF_nul.txt
ok 361 - compare_files LF NNO_attr_text_aeol_crlf_false_LF.txt
ok 362 - compare_files LF NNO_attr_text_aeol_crlf_false_CRLF.txt
ok 363 - compare_files LF NNO_attr_text_aeol_crlf_false_CRLF_mix_LF.txt
ok 364 - compare_files LF_mix_CR NNO_attr_text_aeol_crlf_false_LF_mix_CR.txt
ok 365 - compare_files LF_nul NNO_attr_text_aeol_crlf_false_CRLF_nul.txt
ok 366 - compare_files LF NNO_attr__aeol__input_LF.txt
ok 367 - compare_files CRLF NNO_attr__aeol__input_CRLF.txt
ok 368 - compare_files CRLF_mix_LF NNO_attr__aeol__input_CRLF_mix_LF.txt
ok 369 - compare_files LF_mix_CR NNO_attr__aeol__input_LF_mix_CR.txt
ok 370 - compare_files CRLF_nul NNO_attr__aeol__input_CRLF_nul.txt
ok 371 - compare_files LF NNO_attr_-text_aeol__input_LF.txt
ok 372 - compare_files CRLF NNO_attr_-text_aeol__input_CRLF.txt
ok 373 - compare_files CRLF_mix_LF NNO_attr_-text_aeol__input_CRLF_mix_LF.txt
ok 374 - compare_files LF_mix_CR NNO_attr_-text_aeol__input_LF_mix_CR.txt
ok 375 - compare_files CRLF_nul NNO_attr_-text_aeol__input_CRLF_nul.txt
ok 376 - compare_files LF NNO_attr_-text_aeol_lf_input_LF.txt
ok 377 - compare_files CRLF NNO_attr_-text_aeol_lf_input_CRLF.txt
ok 378 - compare_files CRLF_mix_LF NNO_attr_-text_aeol_lf_input_CRLF_mix_LF.txt
ok 379 - compare_files LF_mix_CR NNO_attr_-text_aeol_lf_input_LF_mix_CR.txt
ok 380 - compare_files CRLF_nul NNO_attr_-text_aeol_lf_input_CRLF_nul.txt
ok 381 - compare_files LF NNO_attr_-text_aeol_crlf_input_LF.txt
ok 382 - compare_files CRLF NNO_attr_-text_aeol_crlf_input_CRLF.txt
ok 383 - compare_files CRLF_mix_LF NNO_attr_-text_aeol_crlf_input_CRLF_mix_LF.txt
ok 384 - compare_files LF_mix_CR NNO_attr_-text_aeol_crlf_input_LF_mix_CR.txt
ok 385 - compare_files CRLF_nul NNO_attr_-text_aeol_crlf_input_CRLF_nul.txt
ok 386 - compare_files LF NNO_attr_auto_aeol__input_LF.txt
ok 387 - compare_files CRLF NNO_attr_auto_aeol__input_CRLF.txt
ok 388 - compare_files CRLF_mix_LF NNO_attr_auto_aeol__input_CRLF_mix_LF.txt
ok 389 - compare_files LF_mix_CR NNO_attr_auto_aeol__input_LF_mix_CR.txt
ok 390 - compare_files CRLF_nul NNO_attr_auto_aeol__input_CRLF_nul.txt
ok 391 - compare_files LF NNO_attr_auto_aeol_lf_input_LF.txt
ok 392 - compare_files CRLF NNO_attr_auto_aeol_lf_input_CRLF.txt
ok 393 - compare_files CRLF_mix_LF NNO_attr_auto_aeol_lf_input_CRLF_mix_LF.txt
ok 394 - compare_files LF_mix_CR NNO_attr_auto_aeol_lf_input_LF_mix_CR.txt
ok 395 - compare_files CRLF_nul NNO_attr_auto_aeol_lf_input_CRLF_nul.txt
ok 396 - compare_files LF NNO_attr_auto_aeol_crlf_input_LF.txt
ok 397 - compare_files CRLF NNO_attr_auto_aeol_crlf_input_CRLF.txt
ok 398 - compare_files CRLF_mix_LF NNO_attr_auto_aeol_crlf_input_CRLF_mix_LF.txt
ok 399 - compare_files LF_mix_CR NNO_attr_auto_aeol_crlf_input_LF_mix_CR.txt
ok 400 - compare_files CRLF_nul NNO_attr_auto_aeol_crlf_input_CRLF_nul.txt
ok 401 - compare_files LF NNO_attr_text_aeol__input_LF.txt
ok 402 - compare_files LF NNO_attr_text_aeol__input_CRLF.txt
ok 403 - compare_files LF NNO_attr_text_aeol__input_CRLF_mix_LF.txt
ok 404 - compare_files LF_mix_CR NNO_attr_text_aeol__input_LF_mix_CR.txt
ok 405 - compare_files LF_nul NNO_attr_text_aeol__input_CRLF_nul.txt
ok 406 - compare_files LF NNO_attr_text_aeol_lf_input_LF.txt
ok 407 - compare_files LF NNO_attr_text_aeol_lf_input_CRLF.txt
ok 408 - compare_files LF NNO_attr_text_aeol_lf_input_CRLF_mix_LF.txt
ok 409 - compare_files LF_mix_CR NNO_attr_text_aeol_lf_input_LF_mix_CR.txt
ok 410 - compare_files LF_nul NNO_attr_text_aeol_lf_input_CRLF_nul.txt
ok 411 - compare_files LF NNO_attr_text_aeol_crlf_input_LF.txt
ok 412 - compare_files LF NNO_attr_text_aeol_crlf_input_CRLF.txt
ok 413 - compare_files LF NNO_attr_text_aeol_crlf_input_CRLF_mix_LF.txt
ok 414 - compare_files LF_mix_CR NNO_attr_text_aeol_crlf_input_LF_mix_CR.txt
ok 415 - compare_files LF_nul NNO_attr_text_aeol_crlf_input_CRLF_nul.txt
ok 416 - setup config for checkout attr=-text ident= aeol= core.autocrlf=true
ok 417 - setup LF checkout  with -c core.eol=lf
ok 418 - setup CRLF checkout  with -c core.eol=lf
ok 419 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 420 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 421 - setup LF_nul checkout  with -c core.eol=lf
ok 422 - ls-files --eol attr=-text  aeol= core.autocrlf=true core.eol=lf
ok 423 - checkout attr=-text  aeol= core.autocrlf=true core.eol=lf file=LF
ok 424 - checkout attr=-text  aeol= core.autocrlf=true core.eol=lf file=CRLF
ok 425 - checkout attr=-text  aeol= core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 426 - checkout attr=-text  aeol= core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 427 - checkout attr=-text  aeol= core.autocrlf=true core.eol=lf file=LF_nul
ok 428 - setup config for checkout attr=-text ident= aeol=lf core.autocrlf=true
ok 429 - setup LF checkout  with -c core.eol=lf
ok 430 - setup CRLF checkout  with -c core.eol=lf
ok 431 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 432 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 433 - setup LF_nul checkout  with -c core.eol=lf
ok 434 - ls-files --eol attr=-text  aeol=lf core.autocrlf=true core.eol=lf
ok 435 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=lf file=LF
ok 436 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=lf file=CRLF
ok 437 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 438 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 439 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=lf file=LF_nul
ok 440 - setup config for checkout attr=-text ident= aeol=crlf core.autocrlf=true
ok 441 - setup LF checkout  with -c core.eol=lf
ok 442 - setup CRLF checkout  with -c core.eol=lf
ok 443 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 444 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 445 - setup LF_nul checkout  with -c core.eol=lf
ok 446 - ls-files --eol attr=-text  aeol=crlf core.autocrlf=true core.eol=lf
ok 447 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=lf file=LF
ok 448 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=lf file=CRLF
ok 449 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 450 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 451 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=lf file=LF_nul
ok 452 - setup config for checkout attr=text ident= aeol=lf core.autocrlf=true
ok 453 - setup LF checkout  with -c core.eol=lf
ok 454 - setup CRLF checkout  with -c core.eol=lf
ok 455 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 456 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 457 - setup LF_nul checkout  with -c core.eol=lf
ok 458 - ls-files --eol attr=text  aeol=lf core.autocrlf=true core.eol=lf
ok 459 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=lf file=LF
ok 460 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=lf file=CRLF
ok 461 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 462 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 463 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=lf file=LF_nul
ok 464 - setup config for checkout attr=text ident= aeol=crlf core.autocrlf=true
ok 465 - setup LF checkout  with -c core.eol=lf
ok 466 - setup CRLF checkout  with -c core.eol=lf
ok 467 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 468 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 469 - setup LF_nul checkout  with -c core.eol=lf
ok 470 - ls-files --eol attr=text  aeol=crlf core.autocrlf=true core.eol=lf
ok 471 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=lf file=LF
ok 472 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=lf file=CRLF
ok 473 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 474 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 475 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=lf file=LF_nul
ok 476 - setup config for checkout attr=auto ident= aeol=lf core.autocrlf=true
ok 477 - setup LF checkout  with -c core.eol=lf
ok 478 - setup CRLF checkout  with -c core.eol=lf
ok 479 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 480 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 481 - setup LF_nul checkout  with -c core.eol=lf
ok 482 - ls-files --eol attr=auto  aeol=lf core.autocrlf=true core.eol=lf
ok 483 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=lf file=LF
ok 484 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=lf file=CRLF
ok 485 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 486 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 487 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=lf file=LF_nul
ok 488 - setup config for checkout attr=auto ident= aeol=crlf core.autocrlf=true
ok 489 - setup LF checkout  with -c core.eol=lf
ok 490 - setup CRLF checkout  with -c core.eol=lf
ok 491 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 492 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 493 - setup LF_nul checkout  with -c core.eol=lf
ok 494 - ls-files --eol attr=auto  aeol=crlf core.autocrlf=true core.eol=lf
ok 495 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=lf file=LF
ok 496 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=lf file=CRLF
ok 497 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 498 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 499 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=lf file=LF_nul
ok 500 - setup config for checkout attr=-text ident= aeol= core.autocrlf=false
ok 501 - setup LF checkout  with -c core.eol=lf
ok 502 - setup CRLF checkout  with -c core.eol=lf
ok 503 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 504 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 505 - setup LF_nul checkout  with -c core.eol=lf
ok 506 - ls-files --eol attr=-text  aeol= core.autocrlf=false core.eol=lf
ok 507 - checkout attr=-text  aeol= core.autocrlf=false core.eol=lf file=LF
ok 508 - checkout attr=-text  aeol= core.autocrlf=false core.eol=lf file=CRLF
ok 509 - checkout attr=-text  aeol= core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 510 - checkout attr=-text  aeol= core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 511 - checkout attr=-text  aeol= core.autocrlf=false core.eol=lf file=LF_nul
ok 512 - setup config for checkout attr=-text ident= aeol=lf core.autocrlf=false
ok 513 - setup LF checkout  with -c core.eol=lf
ok 514 - setup CRLF checkout  with -c core.eol=lf
ok 515 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 516 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 517 - setup LF_nul checkout  with -c core.eol=lf
ok 518 - ls-files --eol attr=-text  aeol=lf core.autocrlf=false core.eol=lf
ok 519 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=lf file=LF
ok 520 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=lf file=CRLF
ok 521 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 522 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 523 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=lf file=LF_nul
ok 524 - setup config for checkout attr=-text ident= aeol=crlf core.autocrlf=false
ok 525 - setup LF checkout  with -c core.eol=lf
ok 526 - setup CRLF checkout  with -c core.eol=lf
ok 527 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 528 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 529 - setup LF_nul checkout  with -c core.eol=lf
ok 530 - ls-files --eol attr=-text  aeol=crlf core.autocrlf=false core.eol=lf
ok 531 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=lf file=LF
ok 532 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=lf file=CRLF
ok 533 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 534 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 535 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=lf file=LF_nul
ok 536 - setup config for checkout attr=text ident= aeol=lf core.autocrlf=false
ok 537 - setup LF checkout  with -c core.eol=lf
ok 538 - setup CRLF checkout  with -c core.eol=lf
ok 539 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 540 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 541 - setup LF_nul checkout  with -c core.eol=lf
ok 542 - ls-files --eol attr=text  aeol=lf core.autocrlf=false core.eol=lf
ok 543 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=lf file=LF
ok 544 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=lf file=CRLF
ok 545 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 546 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 547 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=lf file=LF_nul
ok 548 - setup config for checkout attr=text ident= aeol=crlf core.autocrlf=false
ok 549 - setup LF checkout  with -c core.eol=lf
ok 550 - setup CRLF checkout  with -c core.eol=lf
ok 551 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 552 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 553 - setup LF_nul checkout  with -c core.eol=lf
ok 554 - ls-files --eol attr=text  aeol=crlf core.autocrlf=false core.eol=lf
ok 555 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=lf file=LF
ok 556 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=lf file=CRLF
ok 557 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 558 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 559 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=lf file=LF_nul
ok 560 - setup config for checkout attr=auto ident= aeol=lf core.autocrlf=false
ok 561 - setup LF checkout  with -c core.eol=lf
ok 562 - setup CRLF checkout  with -c core.eol=lf
ok 563 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 564 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 565 - setup LF_nul checkout  with -c core.eol=lf
ok 566 - ls-files --eol attr=auto  aeol=lf core.autocrlf=false core.eol=lf
ok 567 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=lf file=LF
ok 568 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=lf file=CRLF
ok 569 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 570 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 571 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=lf file=LF_nul
ok 572 - setup config for checkout attr=auto ident= aeol=crlf core.autocrlf=false
ok 573 - setup LF checkout  with -c core.eol=lf
ok 574 - setup CRLF checkout  with -c core.eol=lf
ok 575 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 576 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 577 - setup LF_nul checkout  with -c core.eol=lf
ok 578 - ls-files --eol attr=auto  aeol=crlf core.autocrlf=false core.eol=lf
ok 579 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=lf file=LF
ok 580 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=lf file=CRLF
ok 581 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 582 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 583 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=lf file=LF_nul
ok 584 - setup config for checkout attr=-text ident= aeol= core.autocrlf=input
ok 585 - setup LF checkout  with -c core.eol=lf
ok 586 - setup CRLF checkout  with -c core.eol=lf
ok 587 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 588 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 589 - setup LF_nul checkout  with -c core.eol=lf
ok 590 - ls-files --eol attr=-text  aeol= core.autocrlf=input core.eol=lf
ok 591 - checkout attr=-text  aeol= core.autocrlf=input core.eol=lf file=LF
ok 592 - checkout attr=-text  aeol= core.autocrlf=input core.eol=lf file=CRLF
ok 593 - checkout attr=-text  aeol= core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 594 - checkout attr=-text  aeol= core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 595 - checkout attr=-text  aeol= core.autocrlf=input core.eol=lf file=LF_nul
ok 596 - setup config for checkout attr=-text ident= aeol=lf core.autocrlf=input
ok 597 - setup LF checkout  with -c core.eol=lf
ok 598 - setup CRLF checkout  with -c core.eol=lf
ok 599 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 600 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 601 - setup LF_nul checkout  with -c core.eol=lf
ok 602 - ls-files --eol attr=-text  aeol=lf core.autocrlf=input core.eol=lf
ok 603 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=lf file=LF
ok 604 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=lf file=CRLF
ok 605 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 606 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 607 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=lf file=LF_nul
ok 608 - setup config for checkout attr=-text ident= aeol=crlf core.autocrlf=input
ok 609 - setup LF checkout  with -c core.eol=lf
ok 610 - setup CRLF checkout  with -c core.eol=lf
ok 611 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 612 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 613 - setup LF_nul checkout  with -c core.eol=lf
ok 614 - ls-files --eol attr=-text  aeol=crlf core.autocrlf=input core.eol=lf
ok 615 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=lf file=LF
ok 616 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=lf file=CRLF
ok 617 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 618 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 619 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=lf file=LF_nul
ok 620 - setup config for checkout attr=text ident= aeol=lf core.autocrlf=input
ok 621 - setup LF checkout  with -c core.eol=lf
ok 622 - setup CRLF checkout  with -c core.eol=lf
ok 623 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 624 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 625 - setup LF_nul checkout  with -c core.eol=lf
ok 626 - ls-files --eol attr=text  aeol=lf core.autocrlf=input core.eol=lf
ok 627 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=lf file=LF
ok 628 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=lf file=CRLF
ok 629 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 630 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 631 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=lf file=LF_nul
ok 632 - setup config for checkout attr=text ident= aeol=crlf core.autocrlf=input
ok 633 - setup LF checkout  with -c core.eol=lf
ok 634 - setup CRLF checkout  with -c core.eol=lf
ok 635 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 636 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 637 - setup LF_nul checkout  with -c core.eol=lf
ok 638 - ls-files --eol attr=text  aeol=crlf core.autocrlf=input core.eol=lf
ok 639 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=lf file=LF
ok 640 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=lf file=CRLF
ok 641 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 642 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 643 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=lf file=LF_nul
ok 644 - setup config for checkout attr=auto ident= aeol=lf core.autocrlf=input
ok 645 - setup LF checkout  with -c core.eol=lf
ok 646 - setup CRLF checkout  with -c core.eol=lf
ok 647 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 648 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 649 - setup LF_nul checkout  with -c core.eol=lf
ok 650 - ls-files --eol attr=auto  aeol=lf core.autocrlf=input core.eol=lf
ok 651 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=lf file=LF
ok 652 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=lf file=CRLF
ok 653 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 654 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 655 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=lf file=LF_nul
ok 656 - setup config for checkout attr=auto ident= aeol=crlf core.autocrlf=input
ok 657 - setup LF checkout  with -c core.eol=lf
ok 658 - setup CRLF checkout  with -c core.eol=lf
ok 659 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 660 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 661 - setup LF_nul checkout  with -c core.eol=lf
ok 662 - ls-files --eol attr=auto  aeol=crlf core.autocrlf=input core.eol=lf
ok 663 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=lf file=LF
ok 664 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=lf file=CRLF
ok 665 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 666 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 667 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=lf file=LF_nul
ok 668 - setup config for checkout attr= ident= aeol= core.autocrlf=false
ok 669 - setup LF checkout  with -c core.eol=lf
ok 670 - setup CRLF checkout  with -c core.eol=lf
ok 671 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 672 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 673 - setup LF_nul checkout  with -c core.eol=lf
ok 674 - ls-files --eol attr=  aeol= core.autocrlf=false core.eol=lf
ok 675 - checkout attr=  aeol= core.autocrlf=false core.eol=lf file=LF
ok 676 - checkout attr=  aeol= core.autocrlf=false core.eol=lf file=CRLF
ok 677 - checkout attr=  aeol= core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 678 - checkout attr=  aeol= core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 679 - checkout attr=  aeol= core.autocrlf=false core.eol=lf file=LF_nul
ok 680 - setup config for checkout attr= ident= aeol= core.autocrlf=true
ok 681 - setup LF checkout  with -c core.eol=lf
ok 682 - setup CRLF checkout  with -c core.eol=lf
ok 683 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 684 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 685 - setup LF_nul checkout  with -c core.eol=lf
ok 686 - ls-files --eol attr=  aeol= core.autocrlf=true core.eol=lf
ok 687 - checkout attr=  aeol= core.autocrlf=true core.eol=lf file=LF
ok 688 - checkout attr=  aeol= core.autocrlf=true core.eol=lf file=CRLF
ok 689 - checkout attr=  aeol= core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 690 - checkout attr=  aeol= core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 691 - checkout attr=  aeol= core.autocrlf=true core.eol=lf file=LF_nul
ok 692 - setup config for checkout attr=auto ident= aeol= core.autocrlf=true
ok 693 - setup LF checkout  with -c core.eol=lf
ok 694 - setup CRLF checkout  with -c core.eol=lf
ok 695 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 696 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 697 - setup LF_nul checkout  with -c core.eol=lf
ok 698 - ls-files --eol attr=auto  aeol= core.autocrlf=true core.eol=lf
ok 699 - checkout attr=auto  aeol= core.autocrlf=true core.eol=lf file=LF
ok 700 - checkout attr=auto  aeol= core.autocrlf=true core.eol=lf file=CRLF
ok 701 - checkout attr=auto  aeol= core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 702 - checkout attr=auto  aeol= core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 703 - checkout attr=auto  aeol= core.autocrlf=true core.eol=lf file=LF_nul
ok 704 - setup config for checkout attr=text ident= aeol= core.autocrlf=true
ok 705 - setup LF checkout  with -c core.eol=lf
ok 706 - setup CRLF checkout  with -c core.eol=lf
ok 707 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 708 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 709 - setup LF_nul checkout  with -c core.eol=lf
ok 710 - ls-files --eol attr=text  aeol= core.autocrlf=true core.eol=lf
ok 711 - checkout attr=text  aeol= core.autocrlf=true core.eol=lf file=LF
ok 712 - checkout attr=text  aeol= core.autocrlf=true core.eol=lf file=CRLF
ok 713 - checkout attr=text  aeol= core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 714 - checkout attr=text  aeol= core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 715 - checkout attr=text  aeol= core.autocrlf=true core.eol=lf file=LF_nul
ok 716 - setup config for checkout attr=text ident= aeol= core.autocrlf=input
ok 717 - setup LF checkout  with -c core.eol=lf
ok 718 - setup CRLF checkout  with -c core.eol=lf
ok 719 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 720 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 721 - setup LF_nul checkout  with -c core.eol=lf
ok 722 - ls-files --eol attr=text  aeol= core.autocrlf=input core.eol=lf
ok 723 - checkout attr=text  aeol= core.autocrlf=input core.eol=lf file=LF
ok 724 - checkout attr=text  aeol= core.autocrlf=input core.eol=lf file=CRLF
ok 725 - checkout attr=text  aeol= core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 726 - checkout attr=text  aeol= core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 727 - checkout attr=text  aeol= core.autocrlf=input core.eol=lf file=LF_nul
ok 728 - setup config for checkout attr=auto ident= aeol= core.autocrlf=input
ok 729 - setup LF checkout  with -c core.eol=lf
ok 730 - setup CRLF checkout  with -c core.eol=lf
ok 731 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 732 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 733 - setup LF_nul checkout  with -c core.eol=lf
ok 734 - ls-files --eol attr=auto  aeol= core.autocrlf=input core.eol=lf
ok 735 - checkout attr=auto  aeol= core.autocrlf=input core.eol=lf file=LF
ok 736 - checkout attr=auto  aeol= core.autocrlf=input core.eol=lf file=CRLF
ok 737 - checkout attr=auto  aeol= core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 738 - checkout attr=auto  aeol= core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 739 - checkout attr=auto  aeol= core.autocrlf=input core.eol=lf file=LF_nul
ok 740 - setup config for checkout attr=-text ident= aeol= core.autocrlf=true
ok 741 - setup LF checkout  with -c core.eol=crlf
ok 742 - setup CRLF checkout  with -c core.eol=crlf
ok 743 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 744 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 745 - setup LF_nul checkout  with -c core.eol=crlf
ok 746 - ls-files --eol attr=-text  aeol= core.autocrlf=true core.eol=crlf
ok 747 - checkout attr=-text  aeol= core.autocrlf=true core.eol=crlf file=LF
ok 748 - checkout attr=-text  aeol= core.autocrlf=true core.eol=crlf file=CRLF
ok 749 - checkout attr=-text  aeol= core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 750 - checkout attr=-text  aeol= core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 751 - checkout attr=-text  aeol= core.autocrlf=true core.eol=crlf file=LF_nul
ok 752 - setup config for checkout attr=-text ident= aeol=lf core.autocrlf=true
ok 753 - setup LF checkout  with -c core.eol=crlf
ok 754 - setup CRLF checkout  with -c core.eol=crlf
ok 755 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 756 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 757 - setup LF_nul checkout  with -c core.eol=crlf
ok 758 - ls-files --eol attr=-text  aeol=lf core.autocrlf=true core.eol=crlf
ok 759 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=crlf file=LF
ok 760 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=crlf file=CRLF
ok 761 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 762 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 763 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=crlf file=LF_nul
ok 764 - setup config for checkout attr=-text ident= aeol=crlf core.autocrlf=true
ok 765 - setup LF checkout  with -c core.eol=crlf
ok 766 - setup CRLF checkout  with -c core.eol=crlf
ok 767 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 768 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 769 - setup LF_nul checkout  with -c core.eol=crlf
ok 770 - ls-files --eol attr=-text  aeol=crlf core.autocrlf=true core.eol=crlf
ok 771 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=crlf file=LF
ok 772 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=crlf file=CRLF
ok 773 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 774 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 775 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=crlf file=LF_nul
ok 776 - setup config for checkout attr=text ident= aeol=lf core.autocrlf=true
ok 777 - setup LF checkout  with -c core.eol=crlf
ok 778 - setup CRLF checkout  with -c core.eol=crlf
ok 779 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 780 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 781 - setup LF_nul checkout  with -c core.eol=crlf
ok 782 - ls-files --eol attr=text  aeol=lf core.autocrlf=true core.eol=crlf
ok 783 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=crlf file=LF
ok 784 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=crlf file=CRLF
ok 785 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 786 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 787 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=crlf file=LF_nul
ok 788 - setup config for checkout attr=text ident= aeol=crlf core.autocrlf=true
ok 789 - setup LF checkout  with -c core.eol=crlf
ok 790 - setup CRLF checkout  with -c core.eol=crlf
ok 791 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 792 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 793 - setup LF_nul checkout  with -c core.eol=crlf
ok 794 - ls-files --eol attr=text  aeol=crlf core.autocrlf=true core.eol=crlf
ok 795 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=crlf file=LF
ok 796 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=crlf file=CRLF
ok 797 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 798 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 799 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=crlf file=LF_nul
ok 800 - setup config for checkout attr=auto ident= aeol=lf core.autocrlf=true
ok 801 - setup LF checkout  with -c core.eol=crlf
ok 802 - setup CRLF checkout  with -c core.eol=crlf
ok 803 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 804 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 805 - setup LF_nul checkout  with -c core.eol=crlf
ok 806 - ls-files --eol attr=auto  aeol=lf core.autocrlf=true core.eol=crlf
ok 807 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=crlf file=LF
ok 808 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=crlf file=CRLF
ok 809 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 810 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 811 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=crlf file=LF_nul
ok 812 - setup config for checkout attr=auto ident= aeol=crlf core.autocrlf=true
ok 813 - setup LF checkout  with -c core.eol=crlf
ok 814 - setup CRLF checkout  with -c core.eol=crlf
ok 815 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 816 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 817 - setup LF_nul checkout  with -c core.eol=crlf
ok 818 - ls-files --eol attr=auto  aeol=crlf core.autocrlf=true core.eol=crlf
ok 819 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=crlf file=LF
ok 820 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=crlf file=CRLF
ok 821 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 822 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 823 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=crlf file=LF_nul
ok 824 - setup config for checkout attr=-text ident= aeol= core.autocrlf=false
ok 825 - setup LF checkout  with -c core.eol=crlf
ok 826 - setup CRLF checkout  with -c core.eol=crlf
ok 827 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 828 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 829 - setup LF_nul checkout  with -c core.eol=crlf
ok 830 - ls-files --eol attr=-text  aeol= core.autocrlf=false core.eol=crlf
ok 831 - checkout attr=-text  aeol= core.autocrlf=false core.eol=crlf file=LF
ok 832 - checkout attr=-text  aeol= core.autocrlf=false core.eol=crlf file=CRLF
ok 833 - checkout attr=-text  aeol= core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 834 - checkout attr=-text  aeol= core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 835 - checkout attr=-text  aeol= core.autocrlf=false core.eol=crlf file=LF_nul
ok 836 - setup config for checkout attr=-text ident= aeol=lf core.autocrlf=false
ok 837 - setup LF checkout  with -c core.eol=crlf
ok 838 - setup CRLF checkout  with -c core.eol=crlf
ok 839 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 840 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 841 - setup LF_nul checkout  with -c core.eol=crlf
ok 842 - ls-files --eol attr=-text  aeol=lf core.autocrlf=false core.eol=crlf
ok 843 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=crlf file=LF
ok 844 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=crlf file=CRLF
ok 845 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 846 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 847 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=crlf file=LF_nul
ok 848 - setup config for checkout attr=-text ident= aeol=crlf core.autocrlf=false
ok 849 - setup LF checkout  with -c core.eol=crlf
ok 850 - setup CRLF checkout  with -c core.eol=crlf
ok 851 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 852 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 853 - setup LF_nul checkout  with -c core.eol=crlf
ok 854 - ls-files --eol attr=-text  aeol=crlf core.autocrlf=false core.eol=crlf
ok 855 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=crlf file=LF
ok 856 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=crlf file=CRLF
ok 857 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 858 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 859 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=crlf file=LF_nul
ok 860 - setup config for checkout attr=text ident= aeol=lf core.autocrlf=false
ok 861 - setup LF checkout  with -c core.eol=crlf
ok 862 - setup CRLF checkout  with -c core.eol=crlf
ok 863 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 864 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 865 - setup LF_nul checkout  with -c core.eol=crlf
ok 866 - ls-files --eol attr=text  aeol=lf core.autocrlf=false core.eol=crlf
ok 867 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=crlf file=LF
ok 868 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=crlf file=CRLF
ok 869 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 870 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 871 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=crlf file=LF_nul
ok 872 - setup config for checkout attr=text ident= aeol=crlf core.autocrlf=false
ok 873 - setup LF checkout  with -c core.eol=crlf
ok 874 - setup CRLF checkout  with -c core.eol=crlf
ok 875 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 876 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 877 - setup LF_nul checkout  with -c core.eol=crlf
ok 878 - ls-files --eol attr=text  aeol=crlf core.autocrlf=false core.eol=crlf
ok 879 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=crlf file=LF
ok 880 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=crlf file=CRLF
ok 881 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 882 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 883 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=crlf file=LF_nul
ok 884 - setup config for checkout attr=auto ident= aeol=lf core.autocrlf=false
ok 885 - setup LF checkout  with -c core.eol=crlf
ok 886 - setup CRLF checkout  with -c core.eol=crlf
ok 887 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 888 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 889 - setup LF_nul checkout  with -c core.eol=crlf
ok 890 - ls-files --eol attr=auto  aeol=lf core.autocrlf=false core.eol=crlf
ok 891 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=crlf file=LF
ok 892 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=crlf file=CRLF
ok 893 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 894 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 895 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=crlf file=LF_nul
ok 896 - setup config for checkout attr=auto ident= aeol=crlf core.autocrlf=false
ok 897 - setup LF checkout  with -c core.eol=crlf
ok 898 - setup CRLF checkout  with -c core.eol=crlf
ok 899 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 900 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 901 - setup LF_nul checkout  with -c core.eol=crlf
ok 902 - ls-files --eol attr=auto  aeol=crlf core.autocrlf=false core.eol=crlf
ok 903 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=crlf file=LF
ok 904 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=crlf file=CRLF
ok 905 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 906 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 907 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=crlf file=LF_nul
ok 908 - setup config for checkout attr=-text ident= aeol= core.autocrlf=input
ok 909 - setup LF checkout  with -c core.eol=crlf
ok 910 - setup CRLF checkout  with -c core.eol=crlf
ok 911 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 912 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 913 - setup LF_nul checkout  with -c core.eol=crlf
ok 914 - ls-files --eol attr=-text  aeol= core.autocrlf=input core.eol=crlf
ok 915 - checkout attr=-text  aeol= core.autocrlf=input core.eol=crlf file=LF
ok 916 - checkout attr=-text  aeol= core.autocrlf=input core.eol=crlf file=CRLF
ok 917 - checkout attr=-text  aeol= core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 918 - checkout attr=-text  aeol= core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 919 - checkout attr=-text  aeol= core.autocrlf=input core.eol=crlf file=LF_nul
ok 920 - setup config for checkout attr=-text ident= aeol=lf core.autocrlf=input
ok 921 - setup LF checkout  with -c core.eol=crlf
ok 922 - setup CRLF checkout  with -c core.eol=crlf
ok 923 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 924 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 925 - setup LF_nul checkout  with -c core.eol=crlf
ok 926 - ls-files --eol attr=-text  aeol=lf core.autocrlf=input core.eol=crlf
ok 927 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=crlf file=LF
ok 928 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=crlf file=CRLF
ok 929 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 930 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 931 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=crlf file=LF_nul
ok 932 - setup config for checkout attr=-text ident= aeol=crlf core.autocrlf=input
ok 933 - setup LF checkout  with -c core.eol=crlf
ok 934 - setup CRLF checkout  with -c core.eol=crlf
ok 935 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 936 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 937 - setup LF_nul checkout  with -c core.eol=crlf
ok 938 - ls-files --eol attr=-text  aeol=crlf core.autocrlf=input core.eol=crlf
ok 939 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=crlf file=LF
ok 940 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=crlf file=CRLF
ok 941 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 942 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 943 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=crlf file=LF_nul
ok 944 - setup config for checkout attr=text ident= aeol=lf core.autocrlf=input
ok 945 - setup LF checkout  with -c core.eol=crlf
ok 946 - setup CRLF checkout  with -c core.eol=crlf
ok 947 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 948 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 949 - setup LF_nul checkout  with -c core.eol=crlf
ok 950 - ls-files --eol attr=text  aeol=lf core.autocrlf=input core.eol=crlf
ok 951 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=crlf file=LF
ok 952 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=crlf file=CRLF
ok 953 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 954 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 955 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=crlf file=LF_nul
ok 956 - setup config for checkout attr=text ident= aeol=crlf core.autocrlf=input
ok 957 - setup LF checkout  with -c core.eol=crlf
ok 958 - setup CRLF checkout  with -c core.eol=crlf
ok 959 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 960 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 961 - setup LF_nul checkout  with -c core.eol=crlf
ok 962 - ls-files --eol attr=text  aeol=crlf core.autocrlf=input core.eol=crlf
ok 963 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=crlf file=LF
ok 964 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=crlf file=CRLF
ok 965 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 966 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 967 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=crlf file=LF_nul
ok 968 - setup config for checkout attr=auto ident= aeol=lf core.autocrlf=input
ok 969 - setup LF checkout  with -c core.eol=crlf
ok 970 - setup CRLF checkout  with -c core.eol=crlf
ok 971 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 972 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 973 - setup LF_nul checkout  with -c core.eol=crlf
ok 974 - ls-files --eol attr=auto  aeol=lf core.autocrlf=input core.eol=crlf
ok 975 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=crlf file=LF
ok 976 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=crlf file=CRLF
ok 977 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 978 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 979 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=crlf file=LF_nul
ok 980 - setup config for checkout attr=auto ident= aeol=crlf core.autocrlf=input
ok 981 - setup LF checkout  with -c core.eol=crlf
ok 982 - setup CRLF checkout  with -c core.eol=crlf
ok 983 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 984 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 985 - setup LF_nul checkout  with -c core.eol=crlf
ok 986 - ls-files --eol attr=auto  aeol=crlf core.autocrlf=input core.eol=crlf
ok 987 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=crlf file=LF
ok 988 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=crlf file=CRLF
ok 989 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 990 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 991 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=crlf file=LF_nul
ok 992 - setup config for checkout attr= ident= aeol= core.autocrlf=false
ok 993 - setup LF checkout  with -c core.eol=crlf
ok 994 - setup CRLF checkout  with -c core.eol=crlf
ok 995 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 996 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 997 - setup LF_nul checkout  with -c core.eol=crlf
ok 998 - ls-files --eol attr=  aeol= core.autocrlf=false core.eol=crlf
ok 999 - checkout attr=  aeol= core.autocrlf=false core.eol=crlf file=LF
ok 1000 - checkout attr=  aeol= core.autocrlf=false core.eol=crlf file=CRLF
ok 1001 - checkout attr=  aeol= core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 1002 - checkout attr=  aeol= core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 1003 - checkout attr=  aeol= core.autocrlf=false core.eol=crlf file=LF_nul
ok 1004 - setup config for checkout attr= ident= aeol= core.autocrlf=true
ok 1005 - setup LF checkout  with -c core.eol=crlf
ok 1006 - setup CRLF checkout  with -c core.eol=crlf
ok 1007 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1008 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1009 - setup LF_nul checkout  with -c core.eol=crlf
ok 1010 - ls-files --eol attr=  aeol= core.autocrlf=true core.eol=crlf
ok 1011 - checkout attr=  aeol= core.autocrlf=true core.eol=crlf file=LF
ok 1012 - checkout attr=  aeol= core.autocrlf=true core.eol=crlf file=CRLF
ok 1013 - checkout attr=  aeol= core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 1014 - checkout attr=  aeol= core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 1015 - checkout attr=  aeol= core.autocrlf=true core.eol=crlf file=LF_nul
ok 1016 - setup config for checkout attr=auto ident= aeol= core.autocrlf=true
ok 1017 - setup LF checkout  with -c core.eol=crlf
ok 1018 - setup CRLF checkout  with -c core.eol=crlf
ok 1019 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1020 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1021 - setup LF_nul checkout  with -c core.eol=crlf
ok 1022 - ls-files --eol attr=auto  aeol= core.autocrlf=true core.eol=crlf
ok 1023 - checkout attr=auto  aeol= core.autocrlf=true core.eol=crlf file=LF
ok 1024 - checkout attr=auto  aeol= core.autocrlf=true core.eol=crlf file=CRLF
ok 1025 - checkout attr=auto  aeol= core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 1026 - checkout attr=auto  aeol= core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 1027 - checkout attr=auto  aeol= core.autocrlf=true core.eol=crlf file=LF_nul
ok 1028 - setup config for checkout attr=text ident= aeol= core.autocrlf=true
ok 1029 - setup LF checkout  with -c core.eol=crlf
ok 1030 - setup CRLF checkout  with -c core.eol=crlf
ok 1031 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1032 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1033 - setup LF_nul checkout  with -c core.eol=crlf
ok 1034 - ls-files --eol attr=text  aeol= core.autocrlf=true core.eol=crlf
ok 1035 - checkout attr=text  aeol= core.autocrlf=true core.eol=crlf file=LF
ok 1036 - checkout attr=text  aeol= core.autocrlf=true core.eol=crlf file=CRLF
ok 1037 - checkout attr=text  aeol= core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 1038 - checkout attr=text  aeol= core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 1039 - checkout attr=text  aeol= core.autocrlf=true core.eol=crlf file=LF_nul
ok 1040 - setup config for checkout attr=text ident= aeol= core.autocrlf=input
ok 1041 - setup LF checkout  with -c core.eol=crlf
ok 1042 - setup CRLF checkout  with -c core.eol=crlf
ok 1043 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1044 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1045 - setup LF_nul checkout  with -c core.eol=crlf
ok 1046 - ls-files --eol attr=text  aeol= core.autocrlf=input core.eol=crlf
ok 1047 - checkout attr=text  aeol= core.autocrlf=input core.eol=crlf file=LF
ok 1048 - checkout attr=text  aeol= core.autocrlf=input core.eol=crlf file=CRLF
ok 1049 - checkout attr=text  aeol= core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 1050 - checkout attr=text  aeol= core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 1051 - checkout attr=text  aeol= core.autocrlf=input core.eol=crlf file=LF_nul
ok 1052 - setup config for checkout attr=auto ident= aeol= core.autocrlf=input
ok 1053 - setup LF checkout  with -c core.eol=crlf
ok 1054 - setup CRLF checkout  with -c core.eol=crlf
ok 1055 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1056 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1057 - setup LF_nul checkout  with -c core.eol=crlf
ok 1058 - ls-files --eol attr=auto  aeol= core.autocrlf=input core.eol=crlf
ok 1059 - checkout attr=auto  aeol= core.autocrlf=input core.eol=crlf file=LF
ok 1060 - checkout attr=auto  aeol= core.autocrlf=input core.eol=crlf file=CRLF
ok 1061 - checkout attr=auto  aeol= core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 1062 - checkout attr=auto  aeol= core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 1063 - checkout attr=auto  aeol= core.autocrlf=input core.eol=crlf file=LF_nul
ok 1064 - setup config for checkout attr=-text ident= aeol= core.autocrlf=true
ok 1065 - setup LF checkout  with -c core.eol=native
ok 1066 - setup CRLF checkout  with -c core.eol=native
ok 1067 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1068 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1069 - setup LF_nul checkout  with -c core.eol=native
ok 1070 - ls-files --eol attr=-text  aeol= core.autocrlf=true core.eol=native
ok 1071 - checkout attr=-text  aeol= core.autocrlf=true core.eol=native file=LF
ok 1072 - checkout attr=-text  aeol= core.autocrlf=true core.eol=native file=CRLF
ok 1073 - checkout attr=-text  aeol= core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 1074 - checkout attr=-text  aeol= core.autocrlf=true core.eol=native file=LF_mix_CR
ok 1075 - checkout attr=-text  aeol= core.autocrlf=true core.eol=native file=LF_nul
ok 1076 - setup config for checkout attr=-text ident= aeol=lf core.autocrlf=true
ok 1077 - setup LF checkout  with -c core.eol=native
ok 1078 - setup CRLF checkout  with -c core.eol=native
ok 1079 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1080 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1081 - setup LF_nul checkout  with -c core.eol=native
ok 1082 - ls-files --eol attr=-text  aeol=lf core.autocrlf=true core.eol=native
ok 1083 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=native file=LF
ok 1084 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=native file=CRLF
ok 1085 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 1086 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=native file=LF_mix_CR
ok 1087 - checkout attr=-text  aeol=lf core.autocrlf=true core.eol=native file=LF_nul
ok 1088 - setup config for checkout attr=-text ident= aeol=crlf core.autocrlf=true
ok 1089 - setup LF checkout  with -c core.eol=native
ok 1090 - setup CRLF checkout  with -c core.eol=native
ok 1091 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1092 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1093 - setup LF_nul checkout  with -c core.eol=native
ok 1094 - ls-files --eol attr=-text  aeol=crlf core.autocrlf=true core.eol=native
ok 1095 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=native file=LF
ok 1096 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=native file=CRLF
ok 1097 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 1098 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=native file=LF_mix_CR
ok 1099 - checkout attr=-text  aeol=crlf core.autocrlf=true core.eol=native file=LF_nul
ok 1100 - setup config for checkout attr=text ident= aeol=lf core.autocrlf=true
ok 1101 - setup LF checkout  with -c core.eol=native
ok 1102 - setup CRLF checkout  with -c core.eol=native
ok 1103 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1104 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1105 - setup LF_nul checkout  with -c core.eol=native
ok 1106 - ls-files --eol attr=text  aeol=lf core.autocrlf=true core.eol=native
ok 1107 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=native file=LF
ok 1108 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=native file=CRLF
ok 1109 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 1110 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=native file=LF_mix_CR
ok 1111 - checkout attr=text  aeol=lf core.autocrlf=true core.eol=native file=LF_nul
ok 1112 - setup config for checkout attr=text ident= aeol=crlf core.autocrlf=true
ok 1113 - setup LF checkout  with -c core.eol=native
ok 1114 - setup CRLF checkout  with -c core.eol=native
ok 1115 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1116 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1117 - setup LF_nul checkout  with -c core.eol=native
ok 1118 - ls-files --eol attr=text  aeol=crlf core.autocrlf=true core.eol=native
ok 1119 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=native file=LF
ok 1120 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=native file=CRLF
ok 1121 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 1122 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=native file=LF_mix_CR
ok 1123 - checkout attr=text  aeol=crlf core.autocrlf=true core.eol=native file=LF_nul
ok 1124 - setup config for checkout attr=auto ident= aeol=lf core.autocrlf=true
ok 1125 - setup LF checkout  with -c core.eol=native
ok 1126 - setup CRLF checkout  with -c core.eol=native
ok 1127 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1128 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1129 - setup LF_nul checkout  with -c core.eol=native
ok 1130 - ls-files --eol attr=auto  aeol=lf core.autocrlf=true core.eol=native
ok 1131 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=native file=LF
ok 1132 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=native file=CRLF
ok 1133 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 1134 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=native file=LF_mix_CR
ok 1135 - checkout attr=auto  aeol=lf core.autocrlf=true core.eol=native file=LF_nul
ok 1136 - setup config for checkout attr=auto ident= aeol=crlf core.autocrlf=true
ok 1137 - setup LF checkout  with -c core.eol=native
ok 1138 - setup CRLF checkout  with -c core.eol=native
ok 1139 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1140 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1141 - setup LF_nul checkout  with -c core.eol=native
ok 1142 - ls-files --eol attr=auto  aeol=crlf core.autocrlf=true core.eol=native
ok 1143 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=native file=LF
ok 1144 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=native file=CRLF
ok 1145 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 1146 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=native file=LF_mix_CR
ok 1147 - checkout attr=auto  aeol=crlf core.autocrlf=true core.eol=native file=LF_nul
ok 1148 - setup config for checkout attr=-text ident= aeol= core.autocrlf=false
ok 1149 - setup LF checkout  with -c core.eol=native
ok 1150 - setup CRLF checkout  with -c core.eol=native
ok 1151 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1152 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1153 - setup LF_nul checkout  with -c core.eol=native
ok 1154 - ls-files --eol attr=-text  aeol= core.autocrlf=false core.eol=native
ok 1155 - checkout attr=-text  aeol= core.autocrlf=false core.eol=native file=LF
ok 1156 - checkout attr=-text  aeol= core.autocrlf=false core.eol=native file=CRLF
ok 1157 - checkout attr=-text  aeol= core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 1158 - checkout attr=-text  aeol= core.autocrlf=false core.eol=native file=LF_mix_CR
ok 1159 - checkout attr=-text  aeol= core.autocrlf=false core.eol=native file=LF_nul
ok 1160 - setup config for checkout attr=-text ident= aeol=lf core.autocrlf=false
ok 1161 - setup LF checkout  with -c core.eol=native
ok 1162 - setup CRLF checkout  with -c core.eol=native
ok 1163 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1164 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1165 - setup LF_nul checkout  with -c core.eol=native
ok 1166 - ls-files --eol attr=-text  aeol=lf core.autocrlf=false core.eol=native
ok 1167 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=native file=LF
ok 1168 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=native file=CRLF
ok 1169 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 1170 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=native file=LF_mix_CR
ok 1171 - checkout attr=-text  aeol=lf core.autocrlf=false core.eol=native file=LF_nul
ok 1172 - setup config for checkout attr=-text ident= aeol=crlf core.autocrlf=false
ok 1173 - setup LF checkout  with -c core.eol=native
ok 1174 - setup CRLF checkout  with -c core.eol=native
ok 1175 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1176 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1177 - setup LF_nul checkout  with -c core.eol=native
ok 1178 - ls-files --eol attr=-text  aeol=crlf core.autocrlf=false core.eol=native
ok 1179 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=native file=LF
ok 1180 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=native file=CRLF
ok 1181 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 1182 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=native file=LF_mix_CR
ok 1183 - checkout attr=-text  aeol=crlf core.autocrlf=false core.eol=native file=LF_nul
ok 1184 - setup config for checkout attr=text ident= aeol=lf core.autocrlf=false
ok 1185 - setup LF checkout  with -c core.eol=native
ok 1186 - setup CRLF checkout  with -c core.eol=native
ok 1187 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1188 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1189 - setup LF_nul checkout  with -c core.eol=native
ok 1190 - ls-files --eol attr=text  aeol=lf core.autocrlf=false core.eol=native
ok 1191 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=native file=LF
ok 1192 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=native file=CRLF
ok 1193 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 1194 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=native file=LF_mix_CR
ok 1195 - checkout attr=text  aeol=lf core.autocrlf=false core.eol=native file=LF_nul
ok 1196 - setup config for checkout attr=text ident= aeol=crlf core.autocrlf=false
ok 1197 - setup LF checkout  with -c core.eol=native
ok 1198 - setup CRLF checkout  with -c core.eol=native
ok 1199 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1200 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1201 - setup LF_nul checkout  with -c core.eol=native
ok 1202 - ls-files --eol attr=text  aeol=crlf core.autocrlf=false core.eol=native
ok 1203 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=native file=LF
ok 1204 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=native file=CRLF
ok 1205 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 1206 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=native file=LF_mix_CR
ok 1207 - checkout attr=text  aeol=crlf core.autocrlf=false core.eol=native file=LF_nul
ok 1208 - setup config for checkout attr=auto ident= aeol=lf core.autocrlf=false
ok 1209 - setup LF checkout  with -c core.eol=native
ok 1210 - setup CRLF checkout  with -c core.eol=native
ok 1211 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1212 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1213 - setup LF_nul checkout  with -c core.eol=native
ok 1214 - ls-files --eol attr=auto  aeol=lf core.autocrlf=false core.eol=native
ok 1215 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=native file=LF
ok 1216 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=native file=CRLF
ok 1217 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 1218 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=native file=LF_mix_CR
ok 1219 - checkout attr=auto  aeol=lf core.autocrlf=false core.eol=native file=LF_nul
ok 1220 - setup config for checkout attr=auto ident= aeol=crlf core.autocrlf=false
ok 1221 - setup LF checkout  with -c core.eol=native
ok 1222 - setup CRLF checkout  with -c core.eol=native
ok 1223 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1224 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1225 - setup LF_nul checkout  with -c core.eol=native
ok 1226 - ls-files --eol attr=auto  aeol=crlf core.autocrlf=false core.eol=native
ok 1227 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=native file=LF
ok 1228 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=native file=CRLF
ok 1229 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 1230 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=native file=LF_mix_CR
ok 1231 - checkout attr=auto  aeol=crlf core.autocrlf=false core.eol=native file=LF_nul
ok 1232 - setup config for checkout attr=-text ident= aeol= core.autocrlf=input
ok 1233 - setup LF checkout  with -c core.eol=native
ok 1234 - setup CRLF checkout  with -c core.eol=native
ok 1235 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1236 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1237 - setup LF_nul checkout  with -c core.eol=native
ok 1238 - ls-files --eol attr=-text  aeol= core.autocrlf=input core.eol=native
ok 1239 - checkout attr=-text  aeol= core.autocrlf=input core.eol=native file=LF
ok 1240 - checkout attr=-text  aeol= core.autocrlf=input core.eol=native file=CRLF
ok 1241 - checkout attr=-text  aeol= core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 1242 - checkout attr=-text  aeol= core.autocrlf=input core.eol=native file=LF_mix_CR
ok 1243 - checkout attr=-text  aeol= core.autocrlf=input core.eol=native file=LF_nul
ok 1244 - setup config for checkout attr=-text ident= aeol=lf core.autocrlf=input
ok 1245 - setup LF checkout  with -c core.eol=native
ok 1246 - setup CRLF checkout  with -c core.eol=native
ok 1247 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1248 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1249 - setup LF_nul checkout  with -c core.eol=native
ok 1250 - ls-files --eol attr=-text  aeol=lf core.autocrlf=input core.eol=native
ok 1251 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=native file=LF
ok 1252 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=native file=CRLF
ok 1253 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 1254 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=native file=LF_mix_CR
ok 1255 - checkout attr=-text  aeol=lf core.autocrlf=input core.eol=native file=LF_nul
ok 1256 - setup config for checkout attr=-text ident= aeol=crlf core.autocrlf=input
ok 1257 - setup LF checkout  with -c core.eol=native
ok 1258 - setup CRLF checkout  with -c core.eol=native
ok 1259 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1260 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1261 - setup LF_nul checkout  with -c core.eol=native
ok 1262 - ls-files --eol attr=-text  aeol=crlf core.autocrlf=input core.eol=native
ok 1263 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=native file=LF
ok 1264 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=native file=CRLF
ok 1265 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 1266 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=native file=LF_mix_CR
ok 1267 - checkout attr=-text  aeol=crlf core.autocrlf=input core.eol=native file=LF_nul
ok 1268 - setup config for checkout attr=text ident= aeol=lf core.autocrlf=input
ok 1269 - setup LF checkout  with -c core.eol=native
ok 1270 - setup CRLF checkout  with -c core.eol=native
ok 1271 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1272 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1273 - setup LF_nul checkout  with -c core.eol=native
ok 1274 - ls-files --eol attr=text  aeol=lf core.autocrlf=input core.eol=native
ok 1275 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=native file=LF
ok 1276 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=native file=CRLF
ok 1277 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 1278 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=native file=LF_mix_CR
ok 1279 - checkout attr=text  aeol=lf core.autocrlf=input core.eol=native file=LF_nul
ok 1280 - setup config for checkout attr=text ident= aeol=crlf core.autocrlf=input
ok 1281 - setup LF checkout  with -c core.eol=native
ok 1282 - setup CRLF checkout  with -c core.eol=native
ok 1283 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1284 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1285 - setup LF_nul checkout  with -c core.eol=native
ok 1286 - ls-files --eol attr=text  aeol=crlf core.autocrlf=input core.eol=native
ok 1287 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=native file=LF
ok 1288 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=native file=CRLF
ok 1289 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 1290 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=native file=LF_mix_CR
ok 1291 - checkout attr=text  aeol=crlf core.autocrlf=input core.eol=native file=LF_nul
ok 1292 - setup config for checkout attr=auto ident= aeol=lf core.autocrlf=input
ok 1293 - setup LF checkout  with -c core.eol=native
ok 1294 - setup CRLF checkout  with -c core.eol=native
ok 1295 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1296 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1297 - setup LF_nul checkout  with -c core.eol=native
ok 1298 - ls-files --eol attr=auto  aeol=lf core.autocrlf=input core.eol=native
ok 1299 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=native file=LF
ok 1300 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=native file=CRLF
ok 1301 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 1302 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=native file=LF_mix_CR
ok 1303 - checkout attr=auto  aeol=lf core.autocrlf=input core.eol=native file=LF_nul
ok 1304 - setup config for checkout attr=auto ident= aeol=crlf core.autocrlf=input
ok 1305 - setup LF checkout  with -c core.eol=native
ok 1306 - setup CRLF checkout  with -c core.eol=native
ok 1307 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1308 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1309 - setup LF_nul checkout  with -c core.eol=native
ok 1310 - ls-files --eol attr=auto  aeol=crlf core.autocrlf=input core.eol=native
ok 1311 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=native file=LF
ok 1312 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=native file=CRLF
ok 1313 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 1314 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=native file=LF_mix_CR
ok 1315 - checkout attr=auto  aeol=crlf core.autocrlf=input core.eol=native file=LF_nul
ok 1316 - setup config for checkout attr= ident= aeol= core.autocrlf=false
ok 1317 - setup LF checkout  with -c core.eol=native
ok 1318 - setup CRLF checkout  with -c core.eol=native
ok 1319 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1320 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1321 - setup LF_nul checkout  with -c core.eol=native
ok 1322 - ls-files --eol attr=  aeol= core.autocrlf=false core.eol=native
ok 1323 - checkout attr=  aeol= core.autocrlf=false core.eol=native file=LF
ok 1324 - checkout attr=  aeol= core.autocrlf=false core.eol=native file=CRLF
ok 1325 - checkout attr=  aeol= core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 1326 - checkout attr=  aeol= core.autocrlf=false core.eol=native file=LF_mix_CR
ok 1327 - checkout attr=  aeol= core.autocrlf=false core.eol=native file=LF_nul
ok 1328 - setup config for checkout attr= ident= aeol= core.autocrlf=true
ok 1329 - setup LF checkout  with -c core.eol=native
ok 1330 - setup CRLF checkout  with -c core.eol=native
ok 1331 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1332 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1333 - setup LF_nul checkout  with -c core.eol=native
ok 1334 - ls-files --eol attr=  aeol= core.autocrlf=true core.eol=native
ok 1335 - checkout attr=  aeol= core.autocrlf=true core.eol=native file=LF
ok 1336 - checkout attr=  aeol= core.autocrlf=true core.eol=native file=CRLF
ok 1337 - checkout attr=  aeol= core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 1338 - checkout attr=  aeol= core.autocrlf=true core.eol=native file=LF_mix_CR
ok 1339 - checkout attr=  aeol= core.autocrlf=true core.eol=native file=LF_nul
ok 1340 - setup config for checkout attr=auto ident= aeol= core.autocrlf=true
ok 1341 - setup LF checkout  with -c core.eol=native
ok 1342 - setup CRLF checkout  with -c core.eol=native
ok 1343 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1344 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1345 - setup LF_nul checkout  with -c core.eol=native
ok 1346 - ls-files --eol attr=auto  aeol= core.autocrlf=true core.eol=native
ok 1347 - checkout attr=auto  aeol= core.autocrlf=true core.eol=native file=LF
ok 1348 - checkout attr=auto  aeol= core.autocrlf=true core.eol=native file=CRLF
ok 1349 - checkout attr=auto  aeol= core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 1350 - checkout attr=auto  aeol= core.autocrlf=true core.eol=native file=LF_mix_CR
ok 1351 - checkout attr=auto  aeol= core.autocrlf=true core.eol=native file=LF_nul
ok 1352 - setup config for checkout attr=text ident= aeol= core.autocrlf=true
ok 1353 - setup LF checkout  with -c core.eol=native
ok 1354 - setup CRLF checkout  with -c core.eol=native
ok 1355 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1356 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1357 - setup LF_nul checkout  with -c core.eol=native
ok 1358 - ls-files --eol attr=text  aeol= core.autocrlf=true core.eol=native
ok 1359 - checkout attr=text  aeol= core.autocrlf=true core.eol=native file=LF
ok 1360 - checkout attr=text  aeol= core.autocrlf=true core.eol=native file=CRLF
ok 1361 - checkout attr=text  aeol= core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 1362 - checkout attr=text  aeol= core.autocrlf=true core.eol=native file=LF_mix_CR
ok 1363 - checkout attr=text  aeol= core.autocrlf=true core.eol=native file=LF_nul
ok 1364 - setup config for checkout attr=text ident= aeol= core.autocrlf=input
ok 1365 - setup LF checkout  with -c core.eol=native
ok 1366 - setup CRLF checkout  with -c core.eol=native
ok 1367 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1368 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1369 - setup LF_nul checkout  with -c core.eol=native
ok 1370 - ls-files --eol attr=text  aeol= core.autocrlf=input core.eol=native
ok 1371 - checkout attr=text  aeol= core.autocrlf=input core.eol=native file=LF
ok 1372 - checkout attr=text  aeol= core.autocrlf=input core.eol=native file=CRLF
ok 1373 - checkout attr=text  aeol= core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 1374 - checkout attr=text  aeol= core.autocrlf=input core.eol=native file=LF_mix_CR
ok 1375 - checkout attr=text  aeol= core.autocrlf=input core.eol=native file=LF_nul
ok 1376 - setup config for checkout attr=auto ident= aeol= core.autocrlf=input
ok 1377 - setup LF checkout  with -c core.eol=native
ok 1378 - setup CRLF checkout  with -c core.eol=native
ok 1379 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1380 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1381 - setup LF_nul checkout  with -c core.eol=native
ok 1382 - ls-files --eol attr=auto  aeol= core.autocrlf=input core.eol=native
ok 1383 - checkout attr=auto  aeol= core.autocrlf=input core.eol=native file=LF
ok 1384 - checkout attr=auto  aeol= core.autocrlf=input core.eol=native file=CRLF
ok 1385 - checkout attr=auto  aeol= core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 1386 - checkout attr=auto  aeol= core.autocrlf=input core.eol=native file=LF_mix_CR
ok 1387 - checkout attr=auto  aeol= core.autocrlf=input core.eol=native file=LF_nul
ok 1388 - setup config for checkout attr=text ident= aeol= core.autocrlf=false
ok 1389 - setup LF checkout  with -c core.eol=crlf
ok 1390 - setup CRLF checkout  with -c core.eol=crlf
ok 1391 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1392 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1393 - setup LF_nul checkout  with -c core.eol=crlf
ok 1394 - ls-files --eol attr=text  aeol= core.autocrlf=false core.eol=crlf
ok 1395 - checkout attr=text  aeol= core.autocrlf=false core.eol=crlf file=LF
ok 1396 - checkout attr=text  aeol= core.autocrlf=false core.eol=crlf file=CRLF
ok 1397 - checkout attr=text  aeol= core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 1398 - checkout attr=text  aeol= core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 1399 - checkout attr=text  aeol= core.autocrlf=false core.eol=crlf file=LF_nul
ok 1400 - setup config for checkout attr=text ident= aeol= core.autocrlf=false
ok 1401 - setup LF checkout  with -c core.eol=lf
ok 1402 - setup CRLF checkout  with -c core.eol=lf
ok 1403 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1404 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1405 - setup LF_nul checkout  with -c core.eol=lf
ok 1406 - ls-files --eol attr=text  aeol= core.autocrlf=false core.eol=lf
ok 1407 - checkout attr=text  aeol= core.autocrlf=false core.eol=lf file=LF
ok 1408 - checkout attr=text  aeol= core.autocrlf=false core.eol=lf file=CRLF
ok 1409 - checkout attr=text  aeol= core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 1410 - checkout attr=text  aeol= core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 1411 - checkout attr=text  aeol= core.autocrlf=false core.eol=lf file=LF_nul
ok 1412 - setup config for checkout attr=text ident= aeol= core.autocrlf=false
ok 1413 - setup LF checkout 
ok 1414 - setup CRLF checkout 
ok 1415 - setup LF_mix_CR checkout 
ok 1416 - setup CRLF_mix_LF checkout 
ok 1417 - setup LF_nul checkout 
ok 1418 - ls-files --eol attr=text  aeol= core.autocrlf=false core.eol=
ok 1419 - checkout attr=text  aeol= core.autocrlf=false core.eol= file=LF
ok 1420 - checkout attr=text  aeol= core.autocrlf=false core.eol= file=CRLF
ok 1421 - checkout attr=text  aeol= core.autocrlf=false core.eol= file=CRLF_mix_LF
ok 1422 - checkout attr=text  aeol= core.autocrlf=false core.eol= file=LF_mix_CR
ok 1423 - checkout attr=text  aeol= core.autocrlf=false core.eol= file=LF_nul
ok 1424 - setup config for checkout attr=text ident= aeol= core.autocrlf=false
ok 1425 - setup LF checkout  with -c core.eol=native
ok 1426 - setup CRLF checkout  with -c core.eol=native
ok 1427 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1428 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1429 - setup LF_nul checkout  with -c core.eol=native
ok 1430 - ls-files --eol attr=text  aeol= core.autocrlf=false core.eol=native
ok 1431 - checkout attr=text  aeol= core.autocrlf=false core.eol=native file=LF
ok 1432 - checkout attr=text  aeol= core.autocrlf=false core.eol=native file=CRLF
ok 1433 - checkout attr=text  aeol= core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 1434 - checkout attr=text  aeol= core.autocrlf=false core.eol=native file=LF_mix_CR
ok 1435 - checkout attr=text  aeol= core.autocrlf=false core.eol=native file=LF_nul
ok 1436 - setup config for checkout attr=auto ident= aeol= core.autocrlf=false
ok 1437 - setup LF checkout 
ok 1438 - setup CRLF checkout 
ok 1439 - setup LF_mix_CR checkout 
ok 1440 - setup CRLF_mix_LF checkout 
ok 1441 - setup LF_nul checkout 
ok 1442 - ls-files --eol attr=auto  aeol= core.autocrlf=false core.eol=
ok 1443 - checkout attr=auto  aeol= core.autocrlf=false core.eol= file=LF
ok 1444 - checkout attr=auto  aeol= core.autocrlf=false core.eol= file=CRLF
ok 1445 - checkout attr=auto  aeol= core.autocrlf=false core.eol= file=CRLF_mix_LF
ok 1446 - checkout attr=auto  aeol= core.autocrlf=false core.eol= file=LF_mix_CR
ok 1447 - checkout attr=auto  aeol= core.autocrlf=false core.eol= file=LF_nul
ok 1448 - setup config for checkout attr=auto ident= aeol= core.autocrlf=false
ok 1449 - setup LF checkout  with -c core.eol=native
ok 1450 - setup CRLF checkout  with -c core.eol=native
ok 1451 - setup LF_mix_CR checkout  with -c core.eol=native
ok 1452 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 1453 - setup LF_nul checkout  with -c core.eol=native
ok 1454 - ls-files --eol attr=auto  aeol= core.autocrlf=false core.eol=native
ok 1455 - checkout attr=auto  aeol= core.autocrlf=false core.eol=native file=LF
ok 1456 - checkout attr=auto  aeol= core.autocrlf=false core.eol=native file=CRLF
ok 1457 - checkout attr=auto  aeol= core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 1458 - checkout attr=auto  aeol= core.autocrlf=false core.eol=native file=LF_mix_CR
ok 1459 - checkout attr=auto  aeol= core.autocrlf=false core.eol=native file=LF_nul
ok 1460 - setup config for checkout attr= ident= aeol=lf core.autocrlf=false
ok 1461 - setup LF checkout 
ok 1462 - setup CRLF checkout 
ok 1463 - setup LF_mix_CR checkout 
ok 1464 - setup CRLF_mix_LF checkout 
ok 1465 - setup LF_nul checkout 
ok 1466 - ls-files --eol attr=  aeol=lf core.autocrlf=false core.eol=
ok 1467 - checkout attr=  aeol=lf core.autocrlf=false core.eol= file=LF
ok 1468 - checkout attr=  aeol=lf core.autocrlf=false core.eol= file=CRLF
ok 1469 - checkout attr=  aeol=lf core.autocrlf=false core.eol= file=CRLF_mix_LF
ok 1470 - checkout attr=  aeol=lf core.autocrlf=false core.eol= file=LF_mix_CR
ok 1471 - checkout attr=  aeol=lf core.autocrlf=false core.eol= file=LF_nul
ok 1472 - setup config for checkout attr= ident= aeol=crlf core.autocrlf=false
ok 1473 - setup LF checkout 
ok 1474 - setup CRLF checkout 
ok 1475 - setup LF_mix_CR checkout 
ok 1476 - setup CRLF_mix_LF checkout 
ok 1477 - setup LF_nul checkout 
ok 1478 - ls-files --eol attr=  aeol=crlf core.autocrlf=false core.eol=
ok 1479 - checkout attr=  aeol=crlf core.autocrlf=false core.eol= file=LF
ok 1480 - checkout attr=  aeol=crlf core.autocrlf=false core.eol= file=CRLF
ok 1481 - checkout attr=  aeol=crlf core.autocrlf=false core.eol= file=CRLF_mix_LF
ok 1482 - checkout attr=  aeol=crlf core.autocrlf=false core.eol= file=LF_mix_CR
ok 1483 - checkout attr=  aeol=crlf core.autocrlf=false core.eol= file=LF_nul
ok 1484 - setup config for checkout attr= ident= aeol=lf core.autocrlf=true
ok 1485 - setup LF checkout 
ok 1486 - setup CRLF checkout 
ok 1487 - setup LF_mix_CR checkout 
ok 1488 - setup CRLF_mix_LF checkout 
ok 1489 - setup LF_nul checkout 
ok 1490 - ls-files --eol attr=  aeol=lf core.autocrlf=true core.eol=
ok 1491 - checkout attr=  aeol=lf core.autocrlf=true core.eol= file=LF
ok 1492 - checkout attr=  aeol=lf core.autocrlf=true core.eol= file=CRLF
ok 1493 - checkout attr=  aeol=lf core.autocrlf=true core.eol= file=CRLF_mix_LF
ok 1494 - checkout attr=  aeol=lf core.autocrlf=true core.eol= file=LF_mix_CR
ok 1495 - checkout attr=  aeol=lf core.autocrlf=true core.eol= file=LF_nul
ok 1496 - setup config for checkout attr= ident= aeol=crlf core.autocrlf=true
ok 1497 - setup LF checkout 
ok 1498 - setup CRLF checkout 
ok 1499 - setup LF_mix_CR checkout 
ok 1500 - setup CRLF_mix_LF checkout 
ok 1501 - setup LF_nul checkout 
ok 1502 - ls-files --eol attr=  aeol=crlf core.autocrlf=true core.eol=
ok 1503 - checkout attr=  aeol=crlf core.autocrlf=true core.eol= file=LF
ok 1504 - checkout attr=  aeol=crlf core.autocrlf=true core.eol= file=CRLF
ok 1505 - checkout attr=  aeol=crlf core.autocrlf=true core.eol= file=CRLF_mix_LF
ok 1506 - checkout attr=  aeol=crlf core.autocrlf=true core.eol= file=LF_mix_CR
ok 1507 - checkout attr=  aeol=crlf core.autocrlf=true core.eol= file=LF_nul
ok 1508 - setup config for checkout attr=-text ident=ident aeol= core.autocrlf=true
ok 1509 - setup LF checkout  with -c core.eol=lf
ok 1510 - setup CRLF checkout  with -c core.eol=lf
ok 1511 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1512 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1513 - setup LF_nul checkout  with -c core.eol=lf
ok 1514 - ls-files --eol attr=-text ident aeol= core.autocrlf=true core.eol=lf
ok 1515 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=lf file=LF
ok 1516 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=lf file=CRLF
ok 1517 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 1518 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 1519 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=lf file=LF_nul
ok 1520 - setup config for checkout attr=-text ident=ident aeol=lf core.autocrlf=true
ok 1521 - setup LF checkout  with -c core.eol=lf
ok 1522 - setup CRLF checkout  with -c core.eol=lf
ok 1523 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1524 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1525 - setup LF_nul checkout  with -c core.eol=lf
ok 1526 - ls-files --eol attr=-text ident aeol=lf core.autocrlf=true core.eol=lf
ok 1527 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=lf file=LF
ok 1528 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=lf file=CRLF
ok 1529 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 1530 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 1531 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=lf file=LF_nul
ok 1532 - setup config for checkout attr=-text ident=ident aeol=crlf core.autocrlf=true
ok 1533 - setup LF checkout  with -c core.eol=lf
ok 1534 - setup CRLF checkout  with -c core.eol=lf
ok 1535 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1536 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1537 - setup LF_nul checkout  with -c core.eol=lf
ok 1538 - ls-files --eol attr=-text ident aeol=crlf core.autocrlf=true core.eol=lf
ok 1539 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=lf file=LF
ok 1540 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=lf file=CRLF
ok 1541 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 1542 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 1543 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=lf file=LF_nul
ok 1544 - setup config for checkout attr=text ident=ident aeol=lf core.autocrlf=true
ok 1545 - setup LF checkout  with -c core.eol=lf
ok 1546 - setup CRLF checkout  with -c core.eol=lf
ok 1547 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1548 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1549 - setup LF_nul checkout  with -c core.eol=lf
ok 1550 - ls-files --eol attr=text ident aeol=lf core.autocrlf=true core.eol=lf
ok 1551 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=lf file=LF
ok 1552 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=lf file=CRLF
ok 1553 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 1554 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 1555 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=lf file=LF_nul
ok 1556 - setup config for checkout attr=text ident=ident aeol=crlf core.autocrlf=true
ok 1557 - setup LF checkout  with -c core.eol=lf
ok 1558 - setup CRLF checkout  with -c core.eol=lf
ok 1559 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1560 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1561 - setup LF_nul checkout  with -c core.eol=lf
ok 1562 - ls-files --eol attr=text ident aeol=crlf core.autocrlf=true core.eol=lf
ok 1563 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=lf file=LF
ok 1564 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=lf file=CRLF
ok 1565 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 1566 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 1567 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=lf file=LF_nul
ok 1568 - setup config for checkout attr=auto ident=ident aeol=lf core.autocrlf=true
ok 1569 - setup LF checkout  with -c core.eol=lf
ok 1570 - setup CRLF checkout  with -c core.eol=lf
ok 1571 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1572 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1573 - setup LF_nul checkout  with -c core.eol=lf
ok 1574 - ls-files --eol attr=auto ident aeol=lf core.autocrlf=true core.eol=lf
ok 1575 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=lf file=LF
ok 1576 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=lf file=CRLF
ok 1577 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 1578 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 1579 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=lf file=LF_nul
ok 1580 - setup config for checkout attr=auto ident=ident aeol=crlf core.autocrlf=true
ok 1581 - setup LF checkout  with -c core.eol=lf
ok 1582 - setup CRLF checkout  with -c core.eol=lf
ok 1583 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1584 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1585 - setup LF_nul checkout  with -c core.eol=lf
ok 1586 - ls-files --eol attr=auto ident aeol=crlf core.autocrlf=true core.eol=lf
ok 1587 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=lf file=LF
ok 1588 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=lf file=CRLF
ok 1589 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 1590 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 1591 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=lf file=LF_nul
ok 1592 - setup config for checkout attr=-text ident=ident aeol= core.autocrlf=false
ok 1593 - setup LF checkout  with -c core.eol=lf
ok 1594 - setup CRLF checkout  with -c core.eol=lf
ok 1595 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1596 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1597 - setup LF_nul checkout  with -c core.eol=lf
ok 1598 - ls-files --eol attr=-text ident aeol= core.autocrlf=false core.eol=lf
ok 1599 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=lf file=LF
ok 1600 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=lf file=CRLF
ok 1601 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 1602 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 1603 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=lf file=LF_nul
ok 1604 - setup config for checkout attr=-text ident=ident aeol=lf core.autocrlf=false
ok 1605 - setup LF checkout  with -c core.eol=lf
ok 1606 - setup CRLF checkout  with -c core.eol=lf
ok 1607 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1608 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1609 - setup LF_nul checkout  with -c core.eol=lf
ok 1610 - ls-files --eol attr=-text ident aeol=lf core.autocrlf=false core.eol=lf
ok 1611 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=lf file=LF
ok 1612 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=lf file=CRLF
ok 1613 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 1614 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 1615 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=lf file=LF_nul
ok 1616 - setup config for checkout attr=-text ident=ident aeol=crlf core.autocrlf=false
ok 1617 - setup LF checkout  with -c core.eol=lf
ok 1618 - setup CRLF checkout  with -c core.eol=lf
ok 1619 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1620 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1621 - setup LF_nul checkout  with -c core.eol=lf
ok 1622 - ls-files --eol attr=-text ident aeol=crlf core.autocrlf=false core.eol=lf
ok 1623 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=lf file=LF
ok 1624 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=lf file=CRLF
ok 1625 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 1626 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 1627 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=lf file=LF_nul
ok 1628 - setup config for checkout attr=text ident=ident aeol=lf core.autocrlf=false
ok 1629 - setup LF checkout  with -c core.eol=lf
ok 1630 - setup CRLF checkout  with -c core.eol=lf
ok 1631 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1632 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1633 - setup LF_nul checkout  with -c core.eol=lf
ok 1634 - ls-files --eol attr=text ident aeol=lf core.autocrlf=false core.eol=lf
ok 1635 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=lf file=LF
ok 1636 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=lf file=CRLF
ok 1637 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 1638 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 1639 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=lf file=LF_nul
ok 1640 - setup config for checkout attr=text ident=ident aeol=crlf core.autocrlf=false
ok 1641 - setup LF checkout  with -c core.eol=lf
ok 1642 - setup CRLF checkout  with -c core.eol=lf
ok 1643 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1644 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1645 - setup LF_nul checkout  with -c core.eol=lf
ok 1646 - ls-files --eol attr=text ident aeol=crlf core.autocrlf=false core.eol=lf
ok 1647 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=lf file=LF
ok 1648 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=lf file=CRLF
ok 1649 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 1650 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 1651 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=lf file=LF_nul
ok 1652 - setup config for checkout attr=auto ident=ident aeol=lf core.autocrlf=false
ok 1653 - setup LF checkout  with -c core.eol=lf
ok 1654 - setup CRLF checkout  with -c core.eol=lf
ok 1655 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1656 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1657 - setup LF_nul checkout  with -c core.eol=lf
ok 1658 - ls-files --eol attr=auto ident aeol=lf core.autocrlf=false core.eol=lf
ok 1659 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=lf file=LF
ok 1660 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=lf file=CRLF
ok 1661 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 1662 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 1663 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=lf file=LF_nul
ok 1664 - setup config for checkout attr=auto ident=ident aeol=crlf core.autocrlf=false
ok 1665 - setup LF checkout  with -c core.eol=lf
ok 1666 - setup CRLF checkout  with -c core.eol=lf
ok 1667 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1668 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1669 - setup LF_nul checkout  with -c core.eol=lf
ok 1670 - ls-files --eol attr=auto ident aeol=crlf core.autocrlf=false core.eol=lf
ok 1671 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=lf file=LF
ok 1672 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=lf file=CRLF
ok 1673 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 1674 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 1675 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=lf file=LF_nul
ok 1676 - setup config for checkout attr=-text ident=ident aeol= core.autocrlf=input
ok 1677 - setup LF checkout  with -c core.eol=lf
ok 1678 - setup CRLF checkout  with -c core.eol=lf
ok 1679 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1680 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1681 - setup LF_nul checkout  with -c core.eol=lf
ok 1682 - ls-files --eol attr=-text ident aeol= core.autocrlf=input core.eol=lf
ok 1683 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=lf file=LF
ok 1684 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=lf file=CRLF
ok 1685 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 1686 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 1687 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=lf file=LF_nul
ok 1688 - setup config for checkout attr=-text ident=ident aeol=lf core.autocrlf=input
ok 1689 - setup LF checkout  with -c core.eol=lf
ok 1690 - setup CRLF checkout  with -c core.eol=lf
ok 1691 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1692 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1693 - setup LF_nul checkout  with -c core.eol=lf
ok 1694 - ls-files --eol attr=-text ident aeol=lf core.autocrlf=input core.eol=lf
ok 1695 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=lf file=LF
ok 1696 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=lf file=CRLF
ok 1697 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 1698 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 1699 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=lf file=LF_nul
ok 1700 - setup config for checkout attr=-text ident=ident aeol=crlf core.autocrlf=input
ok 1701 - setup LF checkout  with -c core.eol=lf
ok 1702 - setup CRLF checkout  with -c core.eol=lf
ok 1703 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1704 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1705 - setup LF_nul checkout  with -c core.eol=lf
ok 1706 - ls-files --eol attr=-text ident aeol=crlf core.autocrlf=input core.eol=lf
ok 1707 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=lf file=LF
ok 1708 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=lf file=CRLF
ok 1709 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 1710 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 1711 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=lf file=LF_nul
ok 1712 - setup config for checkout attr=text ident=ident aeol=lf core.autocrlf=input
ok 1713 - setup LF checkout  with -c core.eol=lf
ok 1714 - setup CRLF checkout  with -c core.eol=lf
ok 1715 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1716 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1717 - setup LF_nul checkout  with -c core.eol=lf
ok 1718 - ls-files --eol attr=text ident aeol=lf core.autocrlf=input core.eol=lf
ok 1719 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=lf file=LF
ok 1720 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=lf file=CRLF
ok 1721 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 1722 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 1723 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=lf file=LF_nul
ok 1724 - setup config for checkout attr=text ident=ident aeol=crlf core.autocrlf=input
ok 1725 - setup LF checkout  with -c core.eol=lf
ok 1726 - setup CRLF checkout  with -c core.eol=lf
ok 1727 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1728 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1729 - setup LF_nul checkout  with -c core.eol=lf
ok 1730 - ls-files --eol attr=text ident aeol=crlf core.autocrlf=input core.eol=lf
ok 1731 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=lf file=LF
ok 1732 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=lf file=CRLF
ok 1733 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 1734 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 1735 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=lf file=LF_nul
ok 1736 - setup config for checkout attr=auto ident=ident aeol=lf core.autocrlf=input
ok 1737 - setup LF checkout  with -c core.eol=lf
ok 1738 - setup CRLF checkout  with -c core.eol=lf
ok 1739 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1740 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1741 - setup LF_nul checkout  with -c core.eol=lf
ok 1742 - ls-files --eol attr=auto ident aeol=lf core.autocrlf=input core.eol=lf
ok 1743 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=lf file=LF
ok 1744 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=lf file=CRLF
ok 1745 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 1746 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 1747 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=lf file=LF_nul
ok 1748 - setup config for checkout attr=auto ident=ident aeol=crlf core.autocrlf=input
ok 1749 - setup LF checkout  with -c core.eol=lf
ok 1750 - setup CRLF checkout  with -c core.eol=lf
ok 1751 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1752 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1753 - setup LF_nul checkout  with -c core.eol=lf
ok 1754 - ls-files --eol attr=auto ident aeol=crlf core.autocrlf=input core.eol=lf
ok 1755 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=lf file=LF
ok 1756 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=lf file=CRLF
ok 1757 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 1758 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 1759 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=lf file=LF_nul
ok 1760 - setup config for checkout attr= ident=ident aeol= core.autocrlf=false
ok 1761 - setup LF checkout  with -c core.eol=lf
ok 1762 - setup CRLF checkout  with -c core.eol=lf
ok 1763 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1764 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1765 - setup LF_nul checkout  with -c core.eol=lf
ok 1766 - ls-files --eol attr= ident aeol= core.autocrlf=false core.eol=lf
ok 1767 - checkout attr= ident aeol= core.autocrlf=false core.eol=lf file=LF
ok 1768 - checkout attr= ident aeol= core.autocrlf=false core.eol=lf file=CRLF
ok 1769 - checkout attr= ident aeol= core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 1770 - checkout attr= ident aeol= core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 1771 - checkout attr= ident aeol= core.autocrlf=false core.eol=lf file=LF_nul
ok 1772 - setup config for checkout attr= ident=ident aeol= core.autocrlf=true
ok 1773 - setup LF checkout  with -c core.eol=lf
ok 1774 - setup CRLF checkout  with -c core.eol=lf
ok 1775 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1776 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1777 - setup LF_nul checkout  with -c core.eol=lf
ok 1778 - ls-files --eol attr= ident aeol= core.autocrlf=true core.eol=lf
ok 1779 - checkout attr= ident aeol= core.autocrlf=true core.eol=lf file=LF
ok 1780 - checkout attr= ident aeol= core.autocrlf=true core.eol=lf file=CRLF
ok 1781 - checkout attr= ident aeol= core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 1782 - checkout attr= ident aeol= core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 1783 - checkout attr= ident aeol= core.autocrlf=true core.eol=lf file=LF_nul
ok 1784 - setup config for checkout attr=auto ident=ident aeol= core.autocrlf=true
ok 1785 - setup LF checkout  with -c core.eol=lf
ok 1786 - setup CRLF checkout  with -c core.eol=lf
ok 1787 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1788 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1789 - setup LF_nul checkout  with -c core.eol=lf
ok 1790 - ls-files --eol attr=auto ident aeol= core.autocrlf=true core.eol=lf
ok 1791 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=lf file=LF
ok 1792 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=lf file=CRLF
ok 1793 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 1794 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 1795 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=lf file=LF_nul
ok 1796 - setup config for checkout attr=text ident=ident aeol= core.autocrlf=true
ok 1797 - setup LF checkout  with -c core.eol=lf
ok 1798 - setup CRLF checkout  with -c core.eol=lf
ok 1799 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1800 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1801 - setup LF_nul checkout  with -c core.eol=lf
ok 1802 - ls-files --eol attr=text ident aeol= core.autocrlf=true core.eol=lf
ok 1803 - checkout attr=text ident aeol= core.autocrlf=true core.eol=lf file=LF
ok 1804 - checkout attr=text ident aeol= core.autocrlf=true core.eol=lf file=CRLF
ok 1805 - checkout attr=text ident aeol= core.autocrlf=true core.eol=lf file=CRLF_mix_LF
ok 1806 - checkout attr=text ident aeol= core.autocrlf=true core.eol=lf file=LF_mix_CR
ok 1807 - checkout attr=text ident aeol= core.autocrlf=true core.eol=lf file=LF_nul
ok 1808 - setup config for checkout attr=text ident=ident aeol= core.autocrlf=input
ok 1809 - setup LF checkout  with -c core.eol=lf
ok 1810 - setup CRLF checkout  with -c core.eol=lf
ok 1811 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1812 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1813 - setup LF_nul checkout  with -c core.eol=lf
ok 1814 - ls-files --eol attr=text ident aeol= core.autocrlf=input core.eol=lf
ok 1815 - checkout attr=text ident aeol= core.autocrlf=input core.eol=lf file=LF
ok 1816 - checkout attr=text ident aeol= core.autocrlf=input core.eol=lf file=CRLF
ok 1817 - checkout attr=text ident aeol= core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 1818 - checkout attr=text ident aeol= core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 1819 - checkout attr=text ident aeol= core.autocrlf=input core.eol=lf file=LF_nul
ok 1820 - setup config for checkout attr=auto ident=ident aeol= core.autocrlf=input
ok 1821 - setup LF checkout  with -c core.eol=lf
ok 1822 - setup CRLF checkout  with -c core.eol=lf
ok 1823 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 1824 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 1825 - setup LF_nul checkout  with -c core.eol=lf
ok 1826 - ls-files --eol attr=auto ident aeol= core.autocrlf=input core.eol=lf
ok 1827 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=lf file=LF
ok 1828 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=lf file=CRLF
ok 1829 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=lf file=CRLF_mix_LF
ok 1830 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=lf file=LF_mix_CR
ok 1831 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=lf file=LF_nul
ok 1832 - setup config for checkout attr=-text ident=ident aeol= core.autocrlf=true
ok 1833 - setup LF checkout  with -c core.eol=crlf
ok 1834 - setup CRLF checkout  with -c core.eol=crlf
ok 1835 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1836 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1837 - setup LF_nul checkout  with -c core.eol=crlf
ok 1838 - ls-files --eol attr=-text ident aeol= core.autocrlf=true core.eol=crlf
ok 1839 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=crlf file=LF
ok 1840 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=crlf file=CRLF
ok 1841 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 1842 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 1843 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=crlf file=LF_nul
ok 1844 - setup config for checkout attr=-text ident=ident aeol=lf core.autocrlf=true
ok 1845 - setup LF checkout  with -c core.eol=crlf
ok 1846 - setup CRLF checkout  with -c core.eol=crlf
ok 1847 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1848 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1849 - setup LF_nul checkout  with -c core.eol=crlf
ok 1850 - ls-files --eol attr=-text ident aeol=lf core.autocrlf=true core.eol=crlf
ok 1851 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=crlf file=LF
ok 1852 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=crlf file=CRLF
ok 1853 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 1854 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 1855 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=crlf file=LF_nul
ok 1856 - setup config for checkout attr=-text ident=ident aeol=crlf core.autocrlf=true
ok 1857 - setup LF checkout  with -c core.eol=crlf
ok 1858 - setup CRLF checkout  with -c core.eol=crlf
ok 1859 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1860 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1861 - setup LF_nul checkout  with -c core.eol=crlf
ok 1862 - ls-files --eol attr=-text ident aeol=crlf core.autocrlf=true core.eol=crlf
ok 1863 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=crlf file=LF
ok 1864 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=crlf file=CRLF
ok 1865 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 1866 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 1867 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=crlf file=LF_nul
ok 1868 - setup config for checkout attr=text ident=ident aeol=lf core.autocrlf=true
ok 1869 - setup LF checkout  with -c core.eol=crlf
ok 1870 - setup CRLF checkout  with -c core.eol=crlf
ok 1871 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1872 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1873 - setup LF_nul checkout  with -c core.eol=crlf
ok 1874 - ls-files --eol attr=text ident aeol=lf core.autocrlf=true core.eol=crlf
ok 1875 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=crlf file=LF
ok 1876 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=crlf file=CRLF
ok 1877 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 1878 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 1879 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=crlf file=LF_nul
ok 1880 - setup config for checkout attr=text ident=ident aeol=crlf core.autocrlf=true
ok 1881 - setup LF checkout  with -c core.eol=crlf
ok 1882 - setup CRLF checkout  with -c core.eol=crlf
ok 1883 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1884 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1885 - setup LF_nul checkout  with -c core.eol=crlf
ok 1886 - ls-files --eol attr=text ident aeol=crlf core.autocrlf=true core.eol=crlf
ok 1887 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=crlf file=LF
ok 1888 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=crlf file=CRLF
ok 1889 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 1890 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 1891 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=crlf file=LF_nul
ok 1892 - setup config for checkout attr=auto ident=ident aeol=lf core.autocrlf=true
ok 1893 - setup LF checkout  with -c core.eol=crlf
ok 1894 - setup CRLF checkout  with -c core.eol=crlf
ok 1895 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1896 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1897 - setup LF_nul checkout  with -c core.eol=crlf
ok 1898 - ls-files --eol attr=auto ident aeol=lf core.autocrlf=true core.eol=crlf
ok 1899 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=crlf file=LF
ok 1900 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=crlf file=CRLF
ok 1901 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 1902 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 1903 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=crlf file=LF_nul
ok 1904 - setup config for checkout attr=auto ident=ident aeol=crlf core.autocrlf=true
ok 1905 - setup LF checkout  with -c core.eol=crlf
ok 1906 - setup CRLF checkout  with -c core.eol=crlf
ok 1907 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1908 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1909 - setup LF_nul checkout  with -c core.eol=crlf
ok 1910 - ls-files --eol attr=auto ident aeol=crlf core.autocrlf=true core.eol=crlf
ok 1911 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=crlf file=LF
ok 1912 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=crlf file=CRLF
ok 1913 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 1914 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 1915 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=crlf file=LF_nul
ok 1916 - setup config for checkout attr=-text ident=ident aeol= core.autocrlf=false
ok 1917 - setup LF checkout  with -c core.eol=crlf
ok 1918 - setup CRLF checkout  with -c core.eol=crlf
ok 1919 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1920 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1921 - setup LF_nul checkout  with -c core.eol=crlf
ok 1922 - ls-files --eol attr=-text ident aeol= core.autocrlf=false core.eol=crlf
ok 1923 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=crlf file=LF
ok 1924 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=crlf file=CRLF
ok 1925 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 1926 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 1927 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=crlf file=LF_nul
ok 1928 - setup config for checkout attr=-text ident=ident aeol=lf core.autocrlf=false
ok 1929 - setup LF checkout  with -c core.eol=crlf
ok 1930 - setup CRLF checkout  with -c core.eol=crlf
ok 1931 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1932 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1933 - setup LF_nul checkout  with -c core.eol=crlf
ok 1934 - ls-files --eol attr=-text ident aeol=lf core.autocrlf=false core.eol=crlf
ok 1935 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=crlf file=LF
ok 1936 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=crlf file=CRLF
ok 1937 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 1938 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 1939 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=crlf file=LF_nul
ok 1940 - setup config for checkout attr=-text ident=ident aeol=crlf core.autocrlf=false
ok 1941 - setup LF checkout  with -c core.eol=crlf
ok 1942 - setup CRLF checkout  with -c core.eol=crlf
ok 1943 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1944 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1945 - setup LF_nul checkout  with -c core.eol=crlf
ok 1946 - ls-files --eol attr=-text ident aeol=crlf core.autocrlf=false core.eol=crlf
ok 1947 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=crlf file=LF
ok 1948 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=crlf file=CRLF
ok 1949 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 1950 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 1951 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=crlf file=LF_nul
ok 1952 - setup config for checkout attr=text ident=ident aeol=lf core.autocrlf=false
ok 1953 - setup LF checkout  with -c core.eol=crlf
ok 1954 - setup CRLF checkout  with -c core.eol=crlf
ok 1955 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1956 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1957 - setup LF_nul checkout  with -c core.eol=crlf
ok 1958 - ls-files --eol attr=text ident aeol=lf core.autocrlf=false core.eol=crlf
ok 1959 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=crlf file=LF
ok 1960 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=crlf file=CRLF
ok 1961 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 1962 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 1963 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=crlf file=LF_nul
ok 1964 - setup config for checkout attr=text ident=ident aeol=crlf core.autocrlf=false
ok 1965 - setup LF checkout  with -c core.eol=crlf
ok 1966 - setup CRLF checkout  with -c core.eol=crlf
ok 1967 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1968 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1969 - setup LF_nul checkout  with -c core.eol=crlf
ok 1970 - ls-files --eol attr=text ident aeol=crlf core.autocrlf=false core.eol=crlf
ok 1971 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=crlf file=LF
ok 1972 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=crlf file=CRLF
ok 1973 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 1974 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 1975 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=crlf file=LF_nul
ok 1976 - setup config for checkout attr=auto ident=ident aeol=lf core.autocrlf=false
ok 1977 - setup LF checkout  with -c core.eol=crlf
ok 1978 - setup CRLF checkout  with -c core.eol=crlf
ok 1979 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1980 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1981 - setup LF_nul checkout  with -c core.eol=crlf
ok 1982 - ls-files --eol attr=auto ident aeol=lf core.autocrlf=false core.eol=crlf
ok 1983 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=crlf file=LF
ok 1984 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=crlf file=CRLF
ok 1985 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 1986 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 1987 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=crlf file=LF_nul
ok 1988 - setup config for checkout attr=auto ident=ident aeol=crlf core.autocrlf=false
ok 1989 - setup LF checkout  with -c core.eol=crlf
ok 1990 - setup CRLF checkout  with -c core.eol=crlf
ok 1991 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 1992 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 1993 - setup LF_nul checkout  with -c core.eol=crlf
ok 1994 - ls-files --eol attr=auto ident aeol=crlf core.autocrlf=false core.eol=crlf
ok 1995 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=crlf file=LF
ok 1996 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=crlf file=CRLF
ok 1997 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 1998 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 1999 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=crlf file=LF_nul
ok 2000 - setup config for checkout attr=-text ident=ident aeol= core.autocrlf=input
ok 2001 - setup LF checkout  with -c core.eol=crlf
ok 2002 - setup CRLF checkout  with -c core.eol=crlf
ok 2003 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2004 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2005 - setup LF_nul checkout  with -c core.eol=crlf
ok 2006 - ls-files --eol attr=-text ident aeol= core.autocrlf=input core.eol=crlf
ok 2007 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=crlf file=LF
ok 2008 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=crlf file=CRLF
ok 2009 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 2010 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 2011 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=crlf file=LF_nul
ok 2012 - setup config for checkout attr=-text ident=ident aeol=lf core.autocrlf=input
ok 2013 - setup LF checkout  with -c core.eol=crlf
ok 2014 - setup CRLF checkout  with -c core.eol=crlf
ok 2015 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2016 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2017 - setup LF_nul checkout  with -c core.eol=crlf
ok 2018 - ls-files --eol attr=-text ident aeol=lf core.autocrlf=input core.eol=crlf
ok 2019 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=crlf file=LF
ok 2020 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=crlf file=CRLF
ok 2021 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 2022 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 2023 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=crlf file=LF_nul
ok 2024 - setup config for checkout attr=-text ident=ident aeol=crlf core.autocrlf=input
ok 2025 - setup LF checkout  with -c core.eol=crlf
ok 2026 - setup CRLF checkout  with -c core.eol=crlf
ok 2027 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2028 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2029 - setup LF_nul checkout  with -c core.eol=crlf
ok 2030 - ls-files --eol attr=-text ident aeol=crlf core.autocrlf=input core.eol=crlf
ok 2031 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=crlf file=LF
ok 2032 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=crlf file=CRLF
ok 2033 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 2034 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 2035 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=crlf file=LF_nul
ok 2036 - setup config for checkout attr=text ident=ident aeol=lf core.autocrlf=input
ok 2037 - setup LF checkout  with -c core.eol=crlf
ok 2038 - setup CRLF checkout  with -c core.eol=crlf
ok 2039 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2040 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2041 - setup LF_nul checkout  with -c core.eol=crlf
ok 2042 - ls-files --eol attr=text ident aeol=lf core.autocrlf=input core.eol=crlf
ok 2043 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=crlf file=LF
ok 2044 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=crlf file=CRLF
ok 2045 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 2046 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 2047 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=crlf file=LF_nul
ok 2048 - setup config for checkout attr=text ident=ident aeol=crlf core.autocrlf=input
ok 2049 - setup LF checkout  with -c core.eol=crlf
ok 2050 - setup CRLF checkout  with -c core.eol=crlf
ok 2051 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2052 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2053 - setup LF_nul checkout  with -c core.eol=crlf
ok 2054 - ls-files --eol attr=text ident aeol=crlf core.autocrlf=input core.eol=crlf
ok 2055 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=crlf file=LF
ok 2056 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=crlf file=CRLF
ok 2057 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 2058 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 2059 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=crlf file=LF_nul
ok 2060 - setup config for checkout attr=auto ident=ident aeol=lf core.autocrlf=input
ok 2061 - setup LF checkout  with -c core.eol=crlf
ok 2062 - setup CRLF checkout  with -c core.eol=crlf
ok 2063 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2064 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2065 - setup LF_nul checkout  with -c core.eol=crlf
ok 2066 - ls-files --eol attr=auto ident aeol=lf core.autocrlf=input core.eol=crlf
ok 2067 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=crlf file=LF
ok 2068 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=crlf file=CRLF
ok 2069 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 2070 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 2071 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=crlf file=LF_nul
ok 2072 - setup config for checkout attr=auto ident=ident aeol=crlf core.autocrlf=input
ok 2073 - setup LF checkout  with -c core.eol=crlf
ok 2074 - setup CRLF checkout  with -c core.eol=crlf
ok 2075 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2076 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2077 - setup LF_nul checkout  with -c core.eol=crlf
ok 2078 - ls-files --eol attr=auto ident aeol=crlf core.autocrlf=input core.eol=crlf
ok 2079 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=crlf file=LF
ok 2080 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=crlf file=CRLF
ok 2081 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 2082 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 2083 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=crlf file=LF_nul
ok 2084 - setup config for checkout attr= ident=ident aeol= core.autocrlf=false
ok 2085 - setup LF checkout  with -c core.eol=crlf
ok 2086 - setup CRLF checkout  with -c core.eol=crlf
ok 2087 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2088 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2089 - setup LF_nul checkout  with -c core.eol=crlf
ok 2090 - ls-files --eol attr= ident aeol= core.autocrlf=false core.eol=crlf
ok 2091 - checkout attr= ident aeol= core.autocrlf=false core.eol=crlf file=LF
ok 2092 - checkout attr= ident aeol= core.autocrlf=false core.eol=crlf file=CRLF
ok 2093 - checkout attr= ident aeol= core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 2094 - checkout attr= ident aeol= core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 2095 - checkout attr= ident aeol= core.autocrlf=false core.eol=crlf file=LF_nul
ok 2096 - setup config for checkout attr= ident=ident aeol= core.autocrlf=true
ok 2097 - setup LF checkout  with -c core.eol=crlf
ok 2098 - setup CRLF checkout  with -c core.eol=crlf
ok 2099 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2100 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2101 - setup LF_nul checkout  with -c core.eol=crlf
ok 2102 - ls-files --eol attr= ident aeol= core.autocrlf=true core.eol=crlf
ok 2103 - checkout attr= ident aeol= core.autocrlf=true core.eol=crlf file=LF
ok 2104 - checkout attr= ident aeol= core.autocrlf=true core.eol=crlf file=CRLF
ok 2105 - checkout attr= ident aeol= core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 2106 - checkout attr= ident aeol= core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 2107 - checkout attr= ident aeol= core.autocrlf=true core.eol=crlf file=LF_nul
ok 2108 - setup config for checkout attr=auto ident=ident aeol= core.autocrlf=true
ok 2109 - setup LF checkout  with -c core.eol=crlf
ok 2110 - setup CRLF checkout  with -c core.eol=crlf
ok 2111 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2112 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2113 - setup LF_nul checkout  with -c core.eol=crlf
ok 2114 - ls-files --eol attr=auto ident aeol= core.autocrlf=true core.eol=crlf
ok 2115 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=crlf file=LF
ok 2116 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=crlf file=CRLF
ok 2117 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 2118 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 2119 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=crlf file=LF_nul
ok 2120 - setup config for checkout attr=text ident=ident aeol= core.autocrlf=true
ok 2121 - setup LF checkout  with -c core.eol=crlf
ok 2122 - setup CRLF checkout  with -c core.eol=crlf
ok 2123 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2124 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2125 - setup LF_nul checkout  with -c core.eol=crlf
ok 2126 - ls-files --eol attr=text ident aeol= core.autocrlf=true core.eol=crlf
ok 2127 - checkout attr=text ident aeol= core.autocrlf=true core.eol=crlf file=LF
ok 2128 - checkout attr=text ident aeol= core.autocrlf=true core.eol=crlf file=CRLF
ok 2129 - checkout attr=text ident aeol= core.autocrlf=true core.eol=crlf file=CRLF_mix_LF
ok 2130 - checkout attr=text ident aeol= core.autocrlf=true core.eol=crlf file=LF_mix_CR
ok 2131 - checkout attr=text ident aeol= core.autocrlf=true core.eol=crlf file=LF_nul
ok 2132 - setup config for checkout attr=text ident=ident aeol= core.autocrlf=input
ok 2133 - setup LF checkout  with -c core.eol=crlf
ok 2134 - setup CRLF checkout  with -c core.eol=crlf
ok 2135 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2136 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2137 - setup LF_nul checkout  with -c core.eol=crlf
ok 2138 - ls-files --eol attr=text ident aeol= core.autocrlf=input core.eol=crlf
ok 2139 - checkout attr=text ident aeol= core.autocrlf=input core.eol=crlf file=LF
ok 2140 - checkout attr=text ident aeol= core.autocrlf=input core.eol=crlf file=CRLF
ok 2141 - checkout attr=text ident aeol= core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 2142 - checkout attr=text ident aeol= core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 2143 - checkout attr=text ident aeol= core.autocrlf=input core.eol=crlf file=LF_nul
ok 2144 - setup config for checkout attr=auto ident=ident aeol= core.autocrlf=input
ok 2145 - setup LF checkout  with -c core.eol=crlf
ok 2146 - setup CRLF checkout  with -c core.eol=crlf
ok 2147 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2148 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2149 - setup LF_nul checkout  with -c core.eol=crlf
ok 2150 - ls-files --eol attr=auto ident aeol= core.autocrlf=input core.eol=crlf
ok 2151 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=crlf file=LF
ok 2152 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=crlf file=CRLF
ok 2153 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=crlf file=CRLF_mix_LF
ok 2154 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=crlf file=LF_mix_CR
ok 2155 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=crlf file=LF_nul
ok 2156 - setup config for checkout attr=-text ident=ident aeol= core.autocrlf=true
ok 2157 - setup LF checkout  with -c core.eol=native
ok 2158 - setup CRLF checkout  with -c core.eol=native
ok 2159 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2160 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2161 - setup LF_nul checkout  with -c core.eol=native
ok 2162 - ls-files --eol attr=-text ident aeol= core.autocrlf=true core.eol=native
ok 2163 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=native file=LF
ok 2164 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=native file=CRLF
ok 2165 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 2166 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=native file=LF_mix_CR
ok 2167 - checkout attr=-text ident aeol= core.autocrlf=true core.eol=native file=LF_nul
ok 2168 - setup config for checkout attr=-text ident=ident aeol=lf core.autocrlf=true
ok 2169 - setup LF checkout  with -c core.eol=native
ok 2170 - setup CRLF checkout  with -c core.eol=native
ok 2171 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2172 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2173 - setup LF_nul checkout  with -c core.eol=native
ok 2174 - ls-files --eol attr=-text ident aeol=lf core.autocrlf=true core.eol=native
ok 2175 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=native file=LF
ok 2176 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=native file=CRLF
ok 2177 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 2178 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=native file=LF_mix_CR
ok 2179 - checkout attr=-text ident aeol=lf core.autocrlf=true core.eol=native file=LF_nul
ok 2180 - setup config for checkout attr=-text ident=ident aeol=crlf core.autocrlf=true
ok 2181 - setup LF checkout  with -c core.eol=native
ok 2182 - setup CRLF checkout  with -c core.eol=native
ok 2183 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2184 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2185 - setup LF_nul checkout  with -c core.eol=native
ok 2186 - ls-files --eol attr=-text ident aeol=crlf core.autocrlf=true core.eol=native
ok 2187 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=native file=LF
ok 2188 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=native file=CRLF
ok 2189 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 2190 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=native file=LF_mix_CR
ok 2191 - checkout attr=-text ident aeol=crlf core.autocrlf=true core.eol=native file=LF_nul
ok 2192 - setup config for checkout attr=text ident=ident aeol=lf core.autocrlf=true
ok 2193 - setup LF checkout  with -c core.eol=native
ok 2194 - setup CRLF checkout  with -c core.eol=native
ok 2195 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2196 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2197 - setup LF_nul checkout  with -c core.eol=native
ok 2198 - ls-files --eol attr=text ident aeol=lf core.autocrlf=true core.eol=native
ok 2199 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=native file=LF
ok 2200 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=native file=CRLF
ok 2201 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 2202 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=native file=LF_mix_CR
ok 2203 - checkout attr=text ident aeol=lf core.autocrlf=true core.eol=native file=LF_nul
ok 2204 - setup config for checkout attr=text ident=ident aeol=crlf core.autocrlf=true
ok 2205 - setup LF checkout  with -c core.eol=native
ok 2206 - setup CRLF checkout  with -c core.eol=native
ok 2207 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2208 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2209 - setup LF_nul checkout  with -c core.eol=native
ok 2210 - ls-files --eol attr=text ident aeol=crlf core.autocrlf=true core.eol=native
ok 2211 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=native file=LF
ok 2212 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=native file=CRLF
ok 2213 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 2214 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=native file=LF_mix_CR
ok 2215 - checkout attr=text ident aeol=crlf core.autocrlf=true core.eol=native file=LF_nul
ok 2216 - setup config for checkout attr=auto ident=ident aeol=lf core.autocrlf=true
ok 2217 - setup LF checkout  with -c core.eol=native
ok 2218 - setup CRLF checkout  with -c core.eol=native
ok 2219 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2220 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2221 - setup LF_nul checkout  with -c core.eol=native
ok 2222 - ls-files --eol attr=auto ident aeol=lf core.autocrlf=true core.eol=native
ok 2223 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=native file=LF
ok 2224 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=native file=CRLF
ok 2225 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 2226 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=native file=LF_mix_CR
ok 2227 - checkout attr=auto ident aeol=lf core.autocrlf=true core.eol=native file=LF_nul
ok 2228 - setup config for checkout attr=auto ident=ident aeol=crlf core.autocrlf=true
ok 2229 - setup LF checkout  with -c core.eol=native
ok 2230 - setup CRLF checkout  with -c core.eol=native
ok 2231 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2232 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2233 - setup LF_nul checkout  with -c core.eol=native
ok 2234 - ls-files --eol attr=auto ident aeol=crlf core.autocrlf=true core.eol=native
ok 2235 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=native file=LF
ok 2236 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=native file=CRLF
ok 2237 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 2238 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=native file=LF_mix_CR
ok 2239 - checkout attr=auto ident aeol=crlf core.autocrlf=true core.eol=native file=LF_nul
ok 2240 - setup config for checkout attr=-text ident=ident aeol= core.autocrlf=false
ok 2241 - setup LF checkout  with -c core.eol=native
ok 2242 - setup CRLF checkout  with -c core.eol=native
ok 2243 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2244 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2245 - setup LF_nul checkout  with -c core.eol=native
ok 2246 - ls-files --eol attr=-text ident aeol= core.autocrlf=false core.eol=native
ok 2247 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=native file=LF
ok 2248 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=native file=CRLF
ok 2249 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 2250 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=native file=LF_mix_CR
ok 2251 - checkout attr=-text ident aeol= core.autocrlf=false core.eol=native file=LF_nul
ok 2252 - setup config for checkout attr=-text ident=ident aeol=lf core.autocrlf=false
ok 2253 - setup LF checkout  with -c core.eol=native
ok 2254 - setup CRLF checkout  with -c core.eol=native
ok 2255 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2256 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2257 - setup LF_nul checkout  with -c core.eol=native
ok 2258 - ls-files --eol attr=-text ident aeol=lf core.autocrlf=false core.eol=native
ok 2259 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=native file=LF
ok 2260 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=native file=CRLF
ok 2261 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 2262 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=native file=LF_mix_CR
ok 2263 - checkout attr=-text ident aeol=lf core.autocrlf=false core.eol=native file=LF_nul
ok 2264 - setup config for checkout attr=-text ident=ident aeol=crlf core.autocrlf=false
ok 2265 - setup LF checkout  with -c core.eol=native
ok 2266 - setup CRLF checkout  with -c core.eol=native
ok 2267 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2268 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2269 - setup LF_nul checkout  with -c core.eol=native
ok 2270 - ls-files --eol attr=-text ident aeol=crlf core.autocrlf=false core.eol=native
ok 2271 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=native file=LF
ok 2272 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=native file=CRLF
ok 2273 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 2274 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=native file=LF_mix_CR
ok 2275 - checkout attr=-text ident aeol=crlf core.autocrlf=false core.eol=native file=LF_nul
ok 2276 - setup config for checkout attr=text ident=ident aeol=lf core.autocrlf=false
ok 2277 - setup LF checkout  with -c core.eol=native
ok 2278 - setup CRLF checkout  with -c core.eol=native
ok 2279 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2280 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2281 - setup LF_nul checkout  with -c core.eol=native
ok 2282 - ls-files --eol attr=text ident aeol=lf core.autocrlf=false core.eol=native
ok 2283 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=native file=LF
ok 2284 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=native file=CRLF
ok 2285 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 2286 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=native file=LF_mix_CR
ok 2287 - checkout attr=text ident aeol=lf core.autocrlf=false core.eol=native file=LF_nul
ok 2288 - setup config for checkout attr=text ident=ident aeol=crlf core.autocrlf=false
ok 2289 - setup LF checkout  with -c core.eol=native
ok 2290 - setup CRLF checkout  with -c core.eol=native
ok 2291 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2292 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2293 - setup LF_nul checkout  with -c core.eol=native
ok 2294 - ls-files --eol attr=text ident aeol=crlf core.autocrlf=false core.eol=native
ok 2295 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=native file=LF
ok 2296 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=native file=CRLF
ok 2297 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 2298 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=native file=LF_mix_CR
ok 2299 - checkout attr=text ident aeol=crlf core.autocrlf=false core.eol=native file=LF_nul
ok 2300 - setup config for checkout attr=auto ident=ident aeol=lf core.autocrlf=false
ok 2301 - setup LF checkout  with -c core.eol=native
ok 2302 - setup CRLF checkout  with -c core.eol=native
ok 2303 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2304 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2305 - setup LF_nul checkout  with -c core.eol=native
ok 2306 - ls-files --eol attr=auto ident aeol=lf core.autocrlf=false core.eol=native
ok 2307 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=native file=LF
ok 2308 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=native file=CRLF
ok 2309 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 2310 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=native file=LF_mix_CR
ok 2311 - checkout attr=auto ident aeol=lf core.autocrlf=false core.eol=native file=LF_nul
ok 2312 - setup config for checkout attr=auto ident=ident aeol=crlf core.autocrlf=false
ok 2313 - setup LF checkout  with -c core.eol=native
ok 2314 - setup CRLF checkout  with -c core.eol=native
ok 2315 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2316 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2317 - setup LF_nul checkout  with -c core.eol=native
ok 2318 - ls-files --eol attr=auto ident aeol=crlf core.autocrlf=false core.eol=native
ok 2319 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=native file=LF
ok 2320 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=native file=CRLF
ok 2321 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 2322 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=native file=LF_mix_CR
ok 2323 - checkout attr=auto ident aeol=crlf core.autocrlf=false core.eol=native file=LF_nul
ok 2324 - setup config for checkout attr=-text ident=ident aeol= core.autocrlf=input
ok 2325 - setup LF checkout  with -c core.eol=native
ok 2326 - setup CRLF checkout  with -c core.eol=native
ok 2327 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2328 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2329 - setup LF_nul checkout  with -c core.eol=native
ok 2330 - ls-files --eol attr=-text ident aeol= core.autocrlf=input core.eol=native
ok 2331 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=native file=LF
ok 2332 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=native file=CRLF
ok 2333 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 2334 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=native file=LF_mix_CR
ok 2335 - checkout attr=-text ident aeol= core.autocrlf=input core.eol=native file=LF_nul
ok 2336 - setup config for checkout attr=-text ident=ident aeol=lf core.autocrlf=input
ok 2337 - setup LF checkout  with -c core.eol=native
ok 2338 - setup CRLF checkout  with -c core.eol=native
ok 2339 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2340 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2341 - setup LF_nul checkout  with -c core.eol=native
ok 2342 - ls-files --eol attr=-text ident aeol=lf core.autocrlf=input core.eol=native
ok 2343 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=native file=LF
ok 2344 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=native file=CRLF
ok 2345 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 2346 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=native file=LF_mix_CR
ok 2347 - checkout attr=-text ident aeol=lf core.autocrlf=input core.eol=native file=LF_nul
ok 2348 - setup config for checkout attr=-text ident=ident aeol=crlf core.autocrlf=input
ok 2349 - setup LF checkout  with -c core.eol=native
ok 2350 - setup CRLF checkout  with -c core.eol=native
ok 2351 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2352 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2353 - setup LF_nul checkout  with -c core.eol=native
ok 2354 - ls-files --eol attr=-text ident aeol=crlf core.autocrlf=input core.eol=native
ok 2355 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=native file=LF
ok 2356 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=native file=CRLF
ok 2357 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 2358 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=native file=LF_mix_CR
ok 2359 - checkout attr=-text ident aeol=crlf core.autocrlf=input core.eol=native file=LF_nul
ok 2360 - setup config for checkout attr=text ident=ident aeol=lf core.autocrlf=input
ok 2361 - setup LF checkout  with -c core.eol=native
ok 2362 - setup CRLF checkout  with -c core.eol=native
ok 2363 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2364 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2365 - setup LF_nul checkout  with -c core.eol=native
ok 2366 - ls-files --eol attr=text ident aeol=lf core.autocrlf=input core.eol=native
ok 2367 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=native file=LF
ok 2368 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=native file=CRLF
ok 2369 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 2370 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=native file=LF_mix_CR
ok 2371 - checkout attr=text ident aeol=lf core.autocrlf=input core.eol=native file=LF_nul
ok 2372 - setup config for checkout attr=text ident=ident aeol=crlf core.autocrlf=input
ok 2373 - setup LF checkout  with -c core.eol=native
ok 2374 - setup CRLF checkout  with -c core.eol=native
ok 2375 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2376 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2377 - setup LF_nul checkout  with -c core.eol=native
ok 2378 - ls-files --eol attr=text ident aeol=crlf core.autocrlf=input core.eol=native
ok 2379 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=native file=LF
ok 2380 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=native file=CRLF
ok 2381 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 2382 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=native file=LF_mix_CR
ok 2383 - checkout attr=text ident aeol=crlf core.autocrlf=input core.eol=native file=LF_nul
ok 2384 - setup config for checkout attr=auto ident=ident aeol=lf core.autocrlf=input
ok 2385 - setup LF checkout  with -c core.eol=native
ok 2386 - setup CRLF checkout  with -c core.eol=native
ok 2387 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2388 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2389 - setup LF_nul checkout  with -c core.eol=native
ok 2390 - ls-files --eol attr=auto ident aeol=lf core.autocrlf=input core.eol=native
ok 2391 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=native file=LF
ok 2392 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=native file=CRLF
ok 2393 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 2394 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=native file=LF_mix_CR
ok 2395 - checkout attr=auto ident aeol=lf core.autocrlf=input core.eol=native file=LF_nul
ok 2396 - setup config for checkout attr=auto ident=ident aeol=crlf core.autocrlf=input
ok 2397 - setup LF checkout  with -c core.eol=native
ok 2398 - setup CRLF checkout  with -c core.eol=native
ok 2399 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2400 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2401 - setup LF_nul checkout  with -c core.eol=native
ok 2402 - ls-files --eol attr=auto ident aeol=crlf core.autocrlf=input core.eol=native
ok 2403 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=native file=LF
ok 2404 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=native file=CRLF
ok 2405 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 2406 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=native file=LF_mix_CR
ok 2407 - checkout attr=auto ident aeol=crlf core.autocrlf=input core.eol=native file=LF_nul
ok 2408 - setup config for checkout attr= ident=ident aeol= core.autocrlf=false
ok 2409 - setup LF checkout  with -c core.eol=native
ok 2410 - setup CRLF checkout  with -c core.eol=native
ok 2411 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2412 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2413 - setup LF_nul checkout  with -c core.eol=native
ok 2414 - ls-files --eol attr= ident aeol= core.autocrlf=false core.eol=native
ok 2415 - checkout attr= ident aeol= core.autocrlf=false core.eol=native file=LF
ok 2416 - checkout attr= ident aeol= core.autocrlf=false core.eol=native file=CRLF
ok 2417 - checkout attr= ident aeol= core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 2418 - checkout attr= ident aeol= core.autocrlf=false core.eol=native file=LF_mix_CR
ok 2419 - checkout attr= ident aeol= core.autocrlf=false core.eol=native file=LF_nul
ok 2420 - setup config for checkout attr= ident=ident aeol= core.autocrlf=true
ok 2421 - setup LF checkout  with -c core.eol=native
ok 2422 - setup CRLF checkout  with -c core.eol=native
ok 2423 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2424 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2425 - setup LF_nul checkout  with -c core.eol=native
ok 2426 - ls-files --eol attr= ident aeol= core.autocrlf=true core.eol=native
ok 2427 - checkout attr= ident aeol= core.autocrlf=true core.eol=native file=LF
ok 2428 - checkout attr= ident aeol= core.autocrlf=true core.eol=native file=CRLF
ok 2429 - checkout attr= ident aeol= core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 2430 - checkout attr= ident aeol= core.autocrlf=true core.eol=native file=LF_mix_CR
ok 2431 - checkout attr= ident aeol= core.autocrlf=true core.eol=native file=LF_nul
ok 2432 - setup config for checkout attr=auto ident=ident aeol= core.autocrlf=true
ok 2433 - setup LF checkout  with -c core.eol=native
ok 2434 - setup CRLF checkout  with -c core.eol=native
ok 2435 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2436 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2437 - setup LF_nul checkout  with -c core.eol=native
ok 2438 - ls-files --eol attr=auto ident aeol= core.autocrlf=true core.eol=native
ok 2439 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=native file=LF
ok 2440 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=native file=CRLF
ok 2441 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 2442 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=native file=LF_mix_CR
ok 2443 - checkout attr=auto ident aeol= core.autocrlf=true core.eol=native file=LF_nul
ok 2444 - setup config for checkout attr=text ident=ident aeol= core.autocrlf=true
ok 2445 - setup LF checkout  with -c core.eol=native
ok 2446 - setup CRLF checkout  with -c core.eol=native
ok 2447 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2448 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2449 - setup LF_nul checkout  with -c core.eol=native
ok 2450 - ls-files --eol attr=text ident aeol= core.autocrlf=true core.eol=native
ok 2451 - checkout attr=text ident aeol= core.autocrlf=true core.eol=native file=LF
ok 2452 - checkout attr=text ident aeol= core.autocrlf=true core.eol=native file=CRLF
ok 2453 - checkout attr=text ident aeol= core.autocrlf=true core.eol=native file=CRLF_mix_LF
ok 2454 - checkout attr=text ident aeol= core.autocrlf=true core.eol=native file=LF_mix_CR
ok 2455 - checkout attr=text ident aeol= core.autocrlf=true core.eol=native file=LF_nul
ok 2456 - setup config for checkout attr=text ident=ident aeol= core.autocrlf=input
ok 2457 - setup LF checkout  with -c core.eol=native
ok 2458 - setup CRLF checkout  with -c core.eol=native
ok 2459 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2460 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2461 - setup LF_nul checkout  with -c core.eol=native
ok 2462 - ls-files --eol attr=text ident aeol= core.autocrlf=input core.eol=native
ok 2463 - checkout attr=text ident aeol= core.autocrlf=input core.eol=native file=LF
ok 2464 - checkout attr=text ident aeol= core.autocrlf=input core.eol=native file=CRLF
ok 2465 - checkout attr=text ident aeol= core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 2466 - checkout attr=text ident aeol= core.autocrlf=input core.eol=native file=LF_mix_CR
ok 2467 - checkout attr=text ident aeol= core.autocrlf=input core.eol=native file=LF_nul
ok 2468 - setup config for checkout attr=auto ident=ident aeol= core.autocrlf=input
ok 2469 - setup LF checkout  with -c core.eol=native
ok 2470 - setup CRLF checkout  with -c core.eol=native
ok 2471 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2472 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2473 - setup LF_nul checkout  with -c core.eol=native
ok 2474 - ls-files --eol attr=auto ident aeol= core.autocrlf=input core.eol=native
ok 2475 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=native file=LF
ok 2476 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=native file=CRLF
ok 2477 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=native file=CRLF_mix_LF
ok 2478 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=native file=LF_mix_CR
ok 2479 - checkout attr=auto ident aeol= core.autocrlf=input core.eol=native file=LF_nul
ok 2480 - setup config for checkout attr=text ident=ident aeol= core.autocrlf=false
ok 2481 - setup LF checkout  with -c core.eol=crlf
ok 2482 - setup CRLF checkout  with -c core.eol=crlf
ok 2483 - setup LF_mix_CR checkout  with -c core.eol=crlf
ok 2484 - setup CRLF_mix_LF checkout  with -c core.eol=crlf
ok 2485 - setup LF_nul checkout  with -c core.eol=crlf
ok 2486 - ls-files --eol attr=text ident aeol= core.autocrlf=false core.eol=crlf
ok 2487 - checkout attr=text ident aeol= core.autocrlf=false core.eol=crlf file=LF
ok 2488 - checkout attr=text ident aeol= core.autocrlf=false core.eol=crlf file=CRLF
ok 2489 - checkout attr=text ident aeol= core.autocrlf=false core.eol=crlf file=CRLF_mix_LF
ok 2490 - checkout attr=text ident aeol= core.autocrlf=false core.eol=crlf file=LF_mix_CR
ok 2491 - checkout attr=text ident aeol= core.autocrlf=false core.eol=crlf file=LF_nul
ok 2492 - setup config for checkout attr=text ident=ident aeol= core.autocrlf=false
ok 2493 - setup LF checkout  with -c core.eol=lf
ok 2494 - setup CRLF checkout  with -c core.eol=lf
ok 2495 - setup LF_mix_CR checkout  with -c core.eol=lf
ok 2496 - setup CRLF_mix_LF checkout  with -c core.eol=lf
ok 2497 - setup LF_nul checkout  with -c core.eol=lf
ok 2498 - ls-files --eol attr=text ident aeol= core.autocrlf=false core.eol=lf
ok 2499 - checkout attr=text ident aeol= core.autocrlf=false core.eol=lf file=LF
ok 2500 - checkout attr=text ident aeol= core.autocrlf=false core.eol=lf file=CRLF
ok 2501 - checkout attr=text ident aeol= core.autocrlf=false core.eol=lf file=CRLF_mix_LF
ok 2502 - checkout attr=text ident aeol= core.autocrlf=false core.eol=lf file=LF_mix_CR
ok 2503 - checkout attr=text ident aeol= core.autocrlf=false core.eol=lf file=LF_nul
ok 2504 - setup config for checkout attr=text ident=ident aeol= core.autocrlf=false
ok 2505 - setup LF checkout 
ok 2506 - setup CRLF checkout 
ok 2507 - setup LF_mix_CR checkout 
ok 2508 - setup CRLF_mix_LF checkout 
ok 2509 - setup LF_nul checkout 
ok 2510 - ls-files --eol attr=text ident aeol= core.autocrlf=false core.eol=
ok 2511 - checkout attr=text ident aeol= core.autocrlf=false core.eol= file=LF
ok 2512 - checkout attr=text ident aeol= core.autocrlf=false core.eol= file=CRLF
ok 2513 - checkout attr=text ident aeol= core.autocrlf=false core.eol= file=CRLF_mix_LF
ok 2514 - checkout attr=text ident aeol= core.autocrlf=false core.eol= file=LF_mix_CR
ok 2515 - checkout attr=text ident aeol= core.autocrlf=false core.eol= file=LF_nul
ok 2516 - setup config for checkout attr=text ident=ident aeol= core.autocrlf=false
ok 2517 - setup LF checkout  with -c core.eol=native
ok 2518 - setup CRLF checkout  with -c core.eol=native
ok 2519 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2520 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2521 - setup LF_nul checkout  with -c core.eol=native
ok 2522 - ls-files --eol attr=text ident aeol= core.autocrlf=false core.eol=native
ok 2523 - checkout attr=text ident aeol= core.autocrlf=false core.eol=native file=LF
ok 2524 - checkout attr=text ident aeol= core.autocrlf=false core.eol=native file=CRLF
ok 2525 - checkout attr=text ident aeol= core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 2526 - checkout attr=text ident aeol= core.autocrlf=false core.eol=native file=LF_mix_CR
ok 2527 - checkout attr=text ident aeol= core.autocrlf=false core.eol=native file=LF_nul
ok 2528 - setup config for checkout attr=auto ident=ident aeol= core.autocrlf=false
ok 2529 - setup LF checkout 
ok 2530 - setup CRLF checkout 
ok 2531 - setup LF_mix_CR checkout 
ok 2532 - setup CRLF_mix_LF checkout 
ok 2533 - setup LF_nul checkout 
ok 2534 - ls-files --eol attr=auto ident aeol= core.autocrlf=false core.eol=
ok 2535 - checkout attr=auto ident aeol= core.autocrlf=false core.eol= file=LF
ok 2536 - checkout attr=auto ident aeol= core.autocrlf=false core.eol= file=CRLF
ok 2537 - checkout attr=auto ident aeol= core.autocrlf=false core.eol= file=CRLF_mix_LF
ok 2538 - checkout attr=auto ident aeol= core.autocrlf=false core.eol= file=LF_mix_CR
ok 2539 - checkout attr=auto ident aeol= core.autocrlf=false core.eol= file=LF_nul
ok 2540 - setup config for checkout attr=auto ident=ident aeol= core.autocrlf=false
ok 2541 - setup LF checkout  with -c core.eol=native
ok 2542 - setup CRLF checkout  with -c core.eol=native
ok 2543 - setup LF_mix_CR checkout  with -c core.eol=native
ok 2544 - setup CRLF_mix_LF checkout  with -c core.eol=native
ok 2545 - setup LF_nul checkout  with -c core.eol=native
ok 2546 - ls-files --eol attr=auto ident aeol= core.autocrlf=false core.eol=native
ok 2547 - checkout attr=auto ident aeol= core.autocrlf=false core.eol=native file=LF
ok 2548 - checkout attr=auto ident aeol= core.autocrlf=false core.eol=native file=CRLF
ok 2549 - checkout attr=auto ident aeol= core.autocrlf=false core.eol=native file=CRLF_mix_LF
ok 2550 - checkout attr=auto ident aeol= core.autocrlf=false core.eol=native file=LF_mix_CR
ok 2551 - checkout attr=auto ident aeol= core.autocrlf=false core.eol=native file=LF_nul
ok 2552 - setup config for checkout attr= ident=ident aeol=lf core.autocrlf=false
ok 2553 - setup LF checkout 
ok 2554 - setup CRLF checkout 
ok 2555 - setup LF_mix_CR checkout 
ok 2556 - setup CRLF_mix_LF checkout 
ok 2557 - setup LF_nul checkout 
ok 2558 - ls-files --eol attr= ident aeol=lf core.autocrlf=false core.eol=
ok 2559 - checkout attr= ident aeol=lf core.autocrlf=false core.eol= file=LF
ok 2560 - checkout attr= ident aeol=lf core.autocrlf=false core.eol= file=CRLF
ok 2561 - checkout attr= ident aeol=lf core.autocrlf=false core.eol= file=CRLF_mix_LF
ok 2562 - checkout attr= ident aeol=lf core.autocrlf=false core.eol= file=LF_mix_CR
ok 2563 - checkout attr= ident aeol=lf core.autocrlf=false core.eol= file=LF_nul
ok 2564 - setup config for checkout attr= ident=ident aeol=crlf core.autocrlf=false
ok 2565 - setup LF checkout 
ok 2566 - setup CRLF checkout 
ok 2567 - setup LF_mix_CR checkout 
ok 2568 - setup CRLF_mix_LF checkout 
ok 2569 - setup LF_nul checkout 
ok 2570 - ls-files --eol attr= ident aeol=crlf core.autocrlf=false core.eol=
ok 2571 - checkout attr= ident aeol=crlf core.autocrlf=false core.eol= file=LF
ok 2572 - checkout attr= ident aeol=crlf core.autocrlf=false core.eol= file=CRLF
ok 2573 - checkout attr= ident aeol=crlf core.autocrlf=false core.eol= file=CRLF_mix_LF
ok 2574 - checkout attr= ident aeol=crlf core.autocrlf=false core.eol= file=LF_mix_CR
ok 2575 - checkout attr= ident aeol=crlf core.autocrlf=false core.eol= file=LF_nul
ok 2576 - setup config for checkout attr= ident=ident aeol=lf core.autocrlf=true
ok 2577 - setup LF checkout 
ok 2578 - setup CRLF checkout 
ok 2579 - setup LF_mix_CR checkout 
ok 2580 - setup CRLF_mix_LF checkout 
ok 2581 - setup LF_nul checkout 
ok 2582 - ls-files --eol attr= ident aeol=lf core.autocrlf=true core.eol=
ok 2583 - checkout attr= ident aeol=lf core.autocrlf=true core.eol= file=LF
ok 2584 - checkout attr= ident aeol=lf core.autocrlf=true core.eol= file=CRLF
ok 2585 - checkout attr= ident aeol=lf core.autocrlf=true core.eol= file=CRLF_mix_LF
ok 2586 - checkout attr= ident aeol=lf core.autocrlf=true core.eol= file=LF_mix_CR
ok 2587 - checkout attr= ident aeol=lf core.autocrlf=true core.eol= file=LF_nul
ok 2588 - setup config for checkout attr= ident=ident aeol=crlf core.autocrlf=true
ok 2589 - setup LF checkout 
ok 2590 - setup CRLF checkout 
ok 2591 - setup LF_mix_CR checkout 
ok 2592 - setup CRLF_mix_LF checkout 
ok 2593 - setup LF_nul checkout 
ok 2594 - ls-files --eol attr= ident aeol=crlf core.autocrlf=true core.eol=
ok 2595 - checkout attr= ident aeol=crlf core.autocrlf=true core.eol= file=LF
ok 2596 - checkout attr= ident aeol=crlf core.autocrlf=true core.eol= file=CRLF
ok 2597 - checkout attr= ident aeol=crlf core.autocrlf=true core.eol= file=CRLF_mix_LF
ok 2598 - checkout attr= ident aeol=crlf core.autocrlf=true core.eol= file=LF_mix_CR
ok 2599 - checkout attr= ident aeol=crlf core.autocrlf=true core.eol= file=LF_nul
ok 2600 - ls-files --eol -d -z
# passed all 2600 test(s)
1..2600
make[2]: Leaving directory '/tmp/B.6ak6sxqb/BUILD/git-core-2.51.1-build/git-2.51.1/t'
make[1]: *** [Makefile:63: test] Error 2
make: *** [Makefile:3282: test] Error 2
error: Bad exit status from /tmp/B.6ak6sxqb/BUILD/tmp/rpm-tmp.dfBZ4W (%build)

RPM build warnings:
    Could not canonicalize hostname: ymir

RPM build errors:
    Bad exit status from /tmp/B.6ak6sxqb/BUILD/tmp/rpm-tmp.dfBZ4W (%build)
ended at: Sat Oct 18 02:38:57 2025, done in 0:02:12.301070
error: No files produced.
+ chmod -R u+rwX /tmp/B.6ak6sxqb/BUILD
+ rm -rf /tmp/B.6ak6sxqb/tmp /tmp/B.6ak6sxqb/BUILD
+ rm -rf /tmp/B.6ak6sxqb
Begin-PLD-Builder-Info
Build-Time: user:1044.91s sys:233.85s real:136.22s (faults io:465 non-io:31962031)

End-PLD-Builder-Info
[Back to list of logs] [View rpm -qa of builder]