VS Code Remote-Containers: открытый репозиторий в контейнере - PullRequest
1 голос
/ 25 марта 2020

Не уверен, что это правильный форум для моего вопроса, но здесь он идет. У меня проблемы с открытием моего репо azure -devops в контейнере с использованием кода (F1 -> Удаленные контейнеры: Открыть репозиторий в контейнере). Сбой операции со следующим сообщением:

enter image description here

Чего мне не хватает? Я могу просто клонировать репо из терминала:

piotr@EMEA00304 Downloads % git clone https://eateam.visualstudio.com/Emailage%20Code/_git/piotr-helloworldconsole
Cloning into 'piotr-helloworldconsole'...
remote: Azure Repos
remote: We noticed you're using an older version of Git. For the best experience, upgrade to a newer version.
remote: Found 4 objects to send. (71 ms)
Unpacking objects: 100% (4/4), done.
piotr@EMEA00304 Downloads % cd piotr-helloworldconsole 
piotr@EMEA00304 piotr-helloworldconsole % ls
HelloWorldConsole.csproj    Program.cs

Нужно ли мне как-то настраивать код против моих учетных данных?

Извините, если это очевидно, но не смог найдите что-нибудь в документации: https://code.visualstudio.com/docs/remote/troubleshooting#_container -подсказки

Версия используемого кода против 1.43.2.


ОБНОВЛЕНИЕ:

Я дважды проверил, и я использую один и тот же URL-адрес в терминале и в коде vs, который указан azure -devops ui:

https://eateam.visualstudio.com/Emailage%20Code/_git/piotr-helloworldconsole

enter image description here

Это вывод, который я получаю в коде:

[0 ms] Start: Resolving remote
[4 ms] Start: Check Docker is running
[32 ms] Start: Run: docker build -f /Users/piotr/.vscode/extensions/ms-vscode-remote.remote-containers-0.106.0/scripts/volumeBootstrap.Dockerfile -t vsc-volume-bootstrap /Users/piotr/.vscode/extensions/ms-vscode-remote.remote-containers-0.106.0/scripts
[140 ms] Sending build context to Docker daemon   7.68kB
[209 ms] Step 1/2 : FROM alpine:3.11.2
[210 ms]  ---> cc0abc535e36
Step 2/2 : RUN apk add --no-cache       nodejs  git     openssh-client  docker-cli      ;
 ---> Using cache
 ---> d89d8b8c3615
[210 ms] Successfully built d89d8b8c3615
[214 ms] Successfully tagged vsc-volume-bootstrap:latest
[216 ms] Cloning Github repository: _git/piotr-helloworldconsole.git into /workspaces/piotr-helloworldconsole

[217 ms] Start: Run: docker run -d --mount src=vsc-remote-containers,dst=/workspaces,type=volume,volume-driver=local -v /var/run/docker.sock:/var/run/docker.sock vsc-volume-bootstrap sleep infinity
[592 ms] Start: Run: docker exec -i -u root 1092b2cb7af09d3f9c9648f243f2279ac7ad895e215d859be57542c9f3d87f0e /bin/sh
[596 ms] Start: Launching Remote-Containers helper.
[598 ms] Start: Run in container: command -v git >/dev/null 2>&1 && git config --global credential.helper '!f() { node /tmp/vscode-remote-containers-d357f963b0fea8b37100746ad6d1376e6226b019.js $*; }; f' || true
[737 ms] 
[737 ms] 
[737 ms] Start: Run in container: cat <<'EOF-/tmp/vscode-remote-containers-d357f963b0fea8b37100746ad6d1376e6226b019.js' >/tmp/vscode-remote-containers-d357f963b0fea8b37100746ad6d1376e6226b019.js
[741 ms] 
[741 ms] 
[1081 ms] Start: Run: docker exec -u root -e SSH_AUTH_SOCK=/tmp/vscode-ssh-auth-d357f963b0fea8b37100746ad6d1376e6226b019.sock -e REMOTE_CONTAINERS_IPC=/tmp/vscode-remote-containers-ipc-d357f963b0fea8b37100746ad6d1376e6226b019.sock 1092b2cb7af09d3f9c9648f243f2279ac7ad895e215d859be57542c9f3d87f0e git clone https://eateam.visualstudio.com/Emailage%20Code/_git/piotr-helloworldconsole.git /workspaces/piotr-helloworldconsole
[1207 ms] Cloning into '/workspaces/piotr-helloworldconsole'...
[2346 ms] remote: TF401019: The Git repository with name or identifier piotr-helloworldconsole.git does not exist or you do not have permissions for the operation you are attempting.
fatal: repository 'https://eateam.visualstudio.com/Emailage%20Code/_git/piotr-helloworldconsole.git/' not found

1 Ответ

0 голосов
/ 26 марта 2020

Чего мне не хватает? Я могу просто клонировать репо из терминала:

Вы используете неправильный формат Url для своих репо Azure Devops. В отличие от обычного URL GitHub, правильный формат URL для Azure Devops Repos заканчивается ReposName вместо .git.

enter image description here

FtpUpload это имя моих Azure репозиториев Devops.

Так что https://eateam.visualstudio.com/Emailage%20Code/_git/piotr-helloworldconsole работает в вашем терминале, в то время как https://eateam.visualstudio.com/Emailage%20Code/_git/piotr-helloworldconsole.git завершился ошибкой Удалите лишний .git в URL, который вы используете в коде VS, и он должен работать.

Чтобы воспроизвести проблему:

enter image description here

...