Files
delta-mirror/etc/examples/128-empty-file
Dan Davison cfd6ed0e07 Reorganize
2020-08-05 16:37:09 -04:00

16 lines
163 B
Bash
Executable File

#!/bin/bash
repo=$(mktemp -d)
cd $repo
git init
git commit --allow-empty -m "Initial commit"
touch file
git add file
git commit -m "Initial commit"
git show