We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6650624 commit d577e88Copy full SHA for d577e88
1 file changed
docs/git.mdx
@@ -13,8 +13,6 @@ const sandbox = await Sandbox.create()
13
14
await sandbox.git.clone('https://git.example.com/org/repo.git', {
15
path: '/workspace/repo',
16
- branch: 'main',
17
- depth: 1,
18
})
19
```
20
```python Python
@@ -23,8 +21,6 @@ sandbox = Sandbox.create()
23
21
sandbox.git.clone(
24
22
'https://git.example.com/org/repo.git',
25
path='/workspace/repo',
26
- branch='main',
27
- depth=1,
28
)
29
30
</CodeGroup>
0 commit comments