git @ Cat's Eye Technologies klaus / fuzzyfind tests / repos / scripts / dont-render
fuzzyfind

Tree @fuzzyfind (Download .tar.gz)

dont-render @fuzzyfindraw · history · blame

#!/bin/bash -e
git init

# Create binary
echo -e 'abc \x0 def' > binary
git add binary

# Create image
echo -e 'abc \x0 def' > image.jpg
git add image.jpg

# Create too large file
yes | head -n 102400 > toolarge
git add toolarge

git commit --no-gpg-sign -am first