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
The git_resource plugin assumes the protocol is ssh, and it also assumes the ssh port is 22. This does not work if your git server is using a different port. It is also incompatible with the protocol portion of the URL. For example git+ssh://myurl.com:2222/my_repo.git is not identified as a URL, but instead as a directory:
Use case: git+ssh://myurl.com:2222/my_repo.git:
Actual result:
It assumes this is a directory:
Error in docker_build: error reading dockerfile: open /Users/user/Documents/workspace/my_project/git+ssh:/[email protected]:2222/my_repo.git/Dockerfile:
Expected result:
Cloning into /Users/user/Library/Application Support/tilt-dev/.git-sources/my_repo from git+ssh://myurl.com:2222
Use case: myurl.com:2222/my_repo.git:
Actual result:
It makes assumptions about the ssh server:
cloning into '/Users/user/Library/Application Support/tilt-dev/.git-sources/my_repo'...
ssh: connect to host myurl.com port 22: Operation timed out
Expected result:
Cloning into /Users/user/Library/Application Support/tilt-dev/.git-sources/my_repo from git+ssh://myurl.com:2222/my_repo
The text was updated successfully, but these errors were encountered:
The
git_resource
plugin assumes the protocol is ssh, and it also assumes the ssh port is 22. This does not work if your git server is using a different port. It is also incompatible with the protocol portion of the URL. For examplegit+ssh://myurl.com:2222/my_repo.git
is not identified as a URL, but instead as a directory:Use case:
git+ssh://myurl.com:2222/my_repo.git
:Actual result:
It assumes this is a directory:
Expected result:
Cloning into
/Users/user/Library/Application Support/tilt-dev/.git-sources/my_repo
fromgit+ssh://myurl.com:2222
Use case:
myurl.com:2222/my_repo.git
:Actual result:
It makes assumptions about the ssh server:
Expected result:
Cloning into
/Users/user/Library/Application Support/tilt-dev/.git-sources/my_repo
fromgit+ssh://myurl.com:2222/my_repo
The text was updated successfully, but these errors were encountered: