Skip to content
Snippets Groups Projects
dont-render 351 B
Newer Older
Jonas Haag's avatar
Jonas Haag committed
#!/bin/bash -e

# This should prevent this script to load the local git user config: 
# (HOME overwrite)
HOME="."

Jonas Haag's avatar
Jonas Haag committed
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 -am first