feat(core): reimplement clone with go-git

This commit is contained in:
Micheal Wilkinson
2026-03-19 14:05:50 +00:00
parent d02d118b28
commit dbc77a1b34
2 changed files with 9 additions and 4 deletions

View File

@@ -73,9 +73,8 @@ func (s *CloneSuite) createBareRemote(name string) string {
return remotePath
}
func (s *CloneSuite) TestClone_FileURLWorksWithoutGitInPath() {
func (s *CloneSuite) TestClone_FileURLWorks() {
remotePath := s.createBareRemote("castle")
s.T().Setenv("PATH", "")
err := s.app.Clone("file://"+remotePath, "parity-castle")
require.NoError(s.T(), err)