I have followed along in the text to where we update the package for the “hello-world” project, but when I try to generate the actual Xcode project with:
swift package generate-xcodeproj
I receive an error of “failed to clone; Cloning into bare repository”, and fatal: ‘…/…/…’ does not appear to be a git repository, and fatal: Could not read from remote repository.
Here is the full error text I get when trying to generate the project:
Fetching /Users/adamfeller/Developer/hello-world/https:/github.com/IBM-Swift/Kitura.git
error: failed to clone; Cloning into bare repository ‘/Users/adamfeller/Developer/hello-world/.build/repositories/Kitura.git-5859858057369657479’…
fatal: ‘/Users/adamfeller/Developer/hello-world/https:/github.com/IBM-Swift/Kitura.git’ does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
‘hello-world’ /Users/adamfeller/Developer/hello-world: error: product dependency ‘Kitura’ not found
‘hello-world’ /Users/adamfeller/Developer/hello-world: error: product dependency ‘Kitura’ not found
Is there some additional setup needed? Do I need to create a Git repository, or be logged in to Git?
Thanks in advance.
Adam