Configure git

This commit is contained in:
Sven Weidauer 2022-06-05 13:03:51 +02:00
parent 6eab549d8a
commit c76200e4a6

View file

@ -16,6 +16,9 @@ module Git
@path = Dir.mktmpdir
git 'init'
git 'branch', '-m', 'main'
git 'config', 'user.name', 'Test User'
git 'config', 'user.email', 'test@example.com'
end
def file_in_tree(name, content)