You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the only way to use git over SSH to build from a private repository is to use an URL of the form git@server. git:// uses the raw git protocol, there is a shennigan checking for .git at the end of the path but only over http(s).
If your connecting user is not git, you cannot use the git over ssh protocol to build a private repository, resulting in all sorts of workaround like RUN --mount=type=ssh to clone during the build instead of just building a repository by url.