summaryrefslogtreecommitdiff
path: root/yarns
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-07-23 15:43:20 +0000
committerLars Wirzenius <liw@liw.fi>2017-07-23 15:43:20 +0000
commitd78a6f594e824dfddedda6d2695fdb62dc11b620 (patch)
tree73daadcae95ad5ff951c6cab81e3f98db1e886d8 /yarns
parentfb5fb1d608e3b1c19a5a4aeadcc7f9799e7b8954 (diff)
downloadick2-d78a6f594e824dfddedda6d2695fdb62dc11b620.tar.gz
Add: git config for test repo
Diffstat (limited to 'yarns')
-rw-r--r--yarns/900.yarn2
1 files changed, 2 insertions, 0 deletions
diff --git a/yarns/900.yarn b/yarns/900.yarn
index 82ab42a..4727dbd 100644
--- a/yarns/900.yarn
+++ b/yarns/900.yarn
@@ -26,6 +26,8 @@
pathname = os.path.join(repo, filename)
os.mkdir(repo)
git(repo, 'init', '.')
+ git(repo, 'config', 'user.email', 'user@example.com')
+ git(repo, 'config', 'user.name', 'J. Random User')
write(pathname, unescape(content))
git(repo, 'add', '.')
git(repo, 'commit', '-minitial')