Specify branch name with git init

This commit is contained in:
Sven Weidauer 2022-06-05 13:19:08 +02:00
parent b138a43b80
commit d00760732d

View file

@ -15,8 +15,7 @@ module Git
def initialize
@path = Dir.mktmpdir
git 'init'
git 'branch', '-m', 'main'
git 'init', '-b', 'main'
git 'config', 'user.name', 'Test User'
git 'config', 'user.email', 'test@example.com'
end