We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16f5d00 commit f6994d2Copy full SHA for f6994d2
1 file changed
docs/git.mdx
@@ -237,12 +237,12 @@ Set the global git author and other config values as needed.
237
<CodeGroup>
238
```js JavaScript & TypeScript
239
await sandbox.git.configureUser('E2B Bot', 'bot@example.com')
240
-await sandbox.git.configSet('pull.rebase', 'false')
241
-const rebase = await sandbox.git.configGet('pull.rebase')
+await sandbox.git.setConfig('pull.rebase', 'false')
+const rebase = await sandbox.git.getConfig('pull.rebase')
242
```
243
```python Python
244
sandbox.git.configure_user('E2B Bot', 'bot@example.com')
245
-sandbox.git.config_set('pull.rebase', 'false')
246
-rebase = sandbox.git.config_get('pull.rebase')
+sandbox.git.set_config('pull.rebase', 'false')
+rebase = sandbox.git.get_config('pull.rebase')
247
248
</CodeGroup>
0 commit comments