On Wed, May 7, 2014 at 3:23 PM, Duy Nguyen <pclo...@gmail.com> wrote:
> I need some big Java repos (over 100k files) to test "git status".
> Actually any repos with long path names and deep/wide directory
> structure are fine, not only Java ones. Right now I'm aware of
> gentoo-x86 and webkit. Let me know if you know some others. I'm afraid
> my Google-foo is not strong enough to search these repos.

1. Take a small repo with a small src directory
2. for i in {1..100}; do cp -Rvp src src-$i; done
3. git add src-*; git commit -m"bigger"

For some value of 100 you'll end up with a big repo to test "git status" on.

You just need lots of files to stat(), git status doesn't care about
history, so there's no reason why you need to track down an existing
large repository.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to