Error Initializing submodules
Closed this issue · 1 comments
edwinbosire commented
•••• This is not an open issue, more of a solution to a problem I encountered****
If you get Permission denied (publickey) or related errors while cloning submodules by running
git submodule update --init --recursive
Do the following from your root directory (/apple-tv/ )
'$open .git/config'
Change the last line from
url = git@github.com:3sidedcube/iOS-ThunderRequest.git
To
url = git://github.com/3sidedcube/iOS-ThunderRequest.git
This is the Read-Only URL (which is what you want)
jiazufei commented