Access private Repositories
Partners and customers may gain this access for their plugin development and security review. This page shows how to then actually access the repositories.
1. Give us a key of yours
ssh-keygen -f ~/.ssh/mykey
cat ~/.ssh/mykey.pub2. Use the key to clone and update the repository
GIT_SSH_COMMAND='ssh -i ~/.ssh/mykey' git clone [email protected]:programmfabrik/easydb-webfrontend.gitcd easydb-webfrontend
git config core.sshCommand "ssh -i ~/.ssh/mykey"Last updated