blob: 6cc3c24a589826b44462d27cb7a50fe4bdf5eac3 (
plain) (
tree)
|
|
{
"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
}
}
}
}
|