I’m distributing a Julia package internal to my company and want an easy workflow for users to add package dependencies to their Julia projects.
I can’t use Pkg
for this because the default way of adding non registered packages is:
add https://github.com/orgname/reponame
This uses https, which I can’t use since my organisation requires an additional authorisation flow over https. How can I add a git package dependency using ssh? The following does not work:
add git://github.com/orgname/reponame.git
# ERROR: git://github.com/orgname/reponame.git is not a valid packagename
Providing URIs for ssh used to work with clone
, but that no longer works.