diff options
Diffstat (limited to 'test/git-lfs/scenarios.json')
-rw-r--r-- | test/git-lfs/scenarios.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/git-lfs/scenarios.json b/test/git-lfs/scenarios.json new file mode 100644 index 0000000..6cc3c24 --- /dev/null +++ b/test/git-lfs/scenarios.json @@ -0,0 +1,22 @@ +{ + "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 + } + } + } +}
\ No newline at end of file |