I am trying to pull a single file from an Azure Git repo.
But if I run this:
git archive --remote="ssh.dev.azure.com:v3/[organization]/[project]/[repo]" master myfile
It returns an error:
remote: Could not find a Command Extension for Command:git-upload-archive
fatal: the remote end hung up unexpectedly
This happens in both Linux and Windows.
On the other hand, note that these work fine:
git clone "ssh.dev.azure.com:v3/[organization]/[project]/[repo]"
git ls-remote "ssh.dev.azure.com:v3/[organization]/[project]/[repo]"