diff options
author | Adam Spiers <git@adamspiers.org> | 2015-01-16 15:59:20 +0000 |
---|---|---|
committer | Adam Spiers <git@adamspiers.org> | 2015-01-16 15:59:20 +0000 |
commit | 6d1b1df4a0e480339671d6d39cd79d91a0a42ff0 (patch) | |
tree | 26a7fa41a48e22cb1339dcee0e1608cc753cdf76 /test/create-repo.sh | |
parent | 9d454f0f457b12e03fcdd09734d9ea6c8de1a3f1 (diff) | |
download | git-deps-6d1b1df4a0e480339671d6d39cd79d91a0a42ff0.tar.gz |
improve commit message in test fixture repo
Diffstat (limited to 'test/create-repo.sh')
-rwxr-xr-x | test/create-repo.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/create-repo.sh b/test/create-repo.sh index b697a44..e5886cc 100755 --- a/test/create-repo.sh +++ b/test/create-repo.sh @@ -33,13 +33,13 @@ ten EOF git add one -git commit -m 'one' +git commit -m 'create file one' tag one for f in two; do cp one $f git add $f - git commit -m "$f" + git commit -m "create file $f" tag "$f" done |