https://meltano.com/ logo
#cli
Title
# cli
b

bumpy-dog-48208

05/15/2020, 7:29 PM
Adding a custom tap from a private github repo
I'm failing to find the right format
Tried this
<git+ssh://github.com/aroder/><repo>.git
Tried this
<git+ssh://git>@github.com:aroder/<repo>.git
Received
Command "git clone -q <ssh://git>@github.com:aroder/<repo>.git /tmp/pip-6xxpv2nm-build" failed with error code 128 in None
OK, I verified that an HTTPS repo reference works, but I have to supply my username and password during the installation process.
The SSH repo reference does not work
I verified I can
git clone
directly from command line, so my ssh keys and repo reference are good
@ripe-musician-59933 should this be an issue, or am I missing something here?
r

ripe-musician-59933

05/15/2020, 8:41 PM
@bumpy-dog-48208 If you're using
git+ssh://
, you need to use a
/
where you currently have
:
!
Meltano passes the
pip_url
argument straight to
pip install
, so I'd make sure it works there first
Per https://stackoverflow.com/a/4837571,
pip install <git+ssh://git>@github.com/user/repo.git
should work
b

bumpy-dog-48208

05/15/2020, 8:47 PM
Yeah that was it. Thank you