aboutsummaryrefslogtreecommitdiff
path: root/test/git-lfs/scenarios.json
blob: 6cc3c24a589826b44462d27cb7a50fe4bdf5eac3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
            }
        }
    }
}