1 krepo='git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git'
5 git clone "$krepo" linux.orig
9 # Tag the top and base of a very long linear sequence of commits.
10 git tag bomb-top 85040bcb4643cba578839e953f25e2d1965d83d0
11 git tag bomb-base bomb-top~1470
13 # Add a file at the base of the linear sequence.
14 git checkout bomb-base
15 echo "woo-hoo" > woo-hoo.txt
17 git commit -m "Add a file"
20 # Clean up and go to start position.
22 git update-ref refs/heads/master bomb-top
28 ( cd linux.orig && mod_linux )
35 ( cd $dir && git init )
39 python ../create_synthetic_repo.py | git fast-import
41 git update-ref refs/heads/master bomb-top
47 create_empty synt.orig
48 ( cd synt.orig && fill_synthetic )