<![CDATA[ clone a private git repo - My Forums]]> https://forums.modx.com/thread/?thread=80984 <![CDATA[clone a private git repo]]> https://forums.modx.com/thread/80984/clone-a-private-git-repo#dis-post-446139
Public repos from both gitHub and bitbucket work fine.
I do clone over HTTPS:
$ git clone https://[email protected]/username/my_repo.git


When I do this locally, I'm asked for my password and all works fine. On the cloud, it directly fails with the following error:
Cloning into 'my_repo'...
git-remote-https: /lib/libcurl.so.4: no version information available (required by git-remote-https)
fatal: could not read Password for 'https://[email protected]': Permission denied


(I changed «username» and «my_repo». Just didn't want to publish that here)



Any recommendations?]]>
saschame Dec 07, 2012, 02:37 AM https://forums.modx.com/thread/80984/clone-a-private-git-repo#dis-post-446139
<![CDATA[Re: clone a private git repo]]> https://forums.modx.com/thread/80984/clone-a-private-git-repo#dis-post-446227
When you're logged into SSH on your Cloud, you can access a private repo by including your username and password in the URL like this:

git clone https://myusername:[email protected]/path_to/myRepo.git


@jeroen Cloud does not yet support ssh pull/push via git. I guess, that rules out using a key.]]>
saschame Dec 07, 2012, 03:42 PM https://forums.modx.com/thread/80984/clone-a-private-git-repo#dis-post-446227
<![CDATA[Re: clone a private git repo]]> https://forums.modx.com/thread/80984/clone-a-private-git-repo#dis-post-446199 jeroenkenters Dec 07, 2012, 11:01 AM https://forums.modx.com/thread/80984/clone-a-private-git-repo#dis-post-446199