features/test/git-lfs/scenarios.json

22 lines
874 B
JSON
Raw Permalink Normal View History

{
"autoPullEnabled": {
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"initializeCommand": "(GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/devcontainers/git-lfs-example /tmp/testRepo-1 || true) && (cp -r /tmp/testRepo-1/.git* . && cp -r /tmp/testRepo-1/* .)",
"remoteUser": "vscode",
"features": {
"git-lfs": {
"autoPull": true
}
}
},
"autoPullDisabled": {
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"initializeCommand": "(GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/devcontainers/git-lfs-example /tmp/testRepo-2 || true) && (cp -r /tmp/testRepo-2/.git* . && cp -r /tmp/testRepo-2/* .)",
"remoteUser": "vscode",
"features": {
"git-lfs": {
"autoPull": false
}
}
}
}