Thread (11 messages) flat view 11 messages, 4 authors, 2016-06-15

Re: [PATCH] Re: Gitk --all error when there are more than 797 refs in a repository

From: Johannes Sixt <hidden>
Date: 2016-06-15 22:47:26

Murphy, John schrieb:
Johannes Sixt writes:
quoted
But in order to have a $revs that exceeds 32K, you would already have
to
quoted
invoke gitk with a huge command line that exceeds the limit (but this
is
quoted
not possible), no?
quoted
How do you run gitk?
gitk --all
I see it. Here is a bash script that creates a repository that reproduces
the error. It is important that refs which sort alphabetically earlier
also point to earlier commits.

-- snip --
#!/bin/bash
git init
echo initial > file && git add file && git commit -m initial
for ((i = 0; i < 1000; i++))
do
	echo $i > file &&
	git commit -m $i file > /dev/null &&
	printf -v l "branch-%04d" $i &&
	git update-ref refs/heads/$l HEAD
done
git gc
-- snip --

On Windows, 'gitk --all' starts with branch-0797, on Linux it starts with
branch-0999 aka master.

I'm just throwing this out to interested parties; I'll not look into it at
this time.

Thanks,
-- Hannes
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help