无法使用 Visual Studio Online 克隆 Git 存储库

无法使用 Visual Studio Online 克隆 Git 存储库

我正在尝试使用 Visual Studio Online“Monaco”将 WinJS 克隆到我的 Azure 网站。当我git clone https://github.com/winjs/winjs.git在在线控制台中输入时,我收到错误Can only clone a git repository to the root of the workspace.

控制台中的“前缀”是/ $这样的,我猜我已经在根目录中了。

如何使用 Visual Studio Online 克隆 git repo?

答案1

首先,您必须删除wwwroot文件夹下的每个文件夹。包括env.git

之后,您应该单击 git 图标并提供您的存储库的链接。正确输入用户名和密码后,克隆过程将立即开始。

Azure Online VS 克隆 git 存储库

答案2

这将创建一个 winjs 文件夹,因此它不会位于根目录中。您可以尝试使用句点:

git clone https://github.com/winjs/winjs.git .

但更简单的方法是单击 git 图标并使用那里的克隆 UI,而不是从命令行执行。

相关内容