Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 1.69 KB

File metadata and controls

31 lines (26 loc) · 1.69 KB
title deleteRemote
sidebar_label deleteRemote

Removes the local config entry for a given remote

param type [= default] description
core string = 'default' The plugin core identifier to use for plugin injection
fs [deprecated] FileSystem The filesystem containing the git repo. Overrides the fs provided by the plugin system.
dir string The working tree directory path
gitdir string = join(dir,'.git') The git directory path
remote string The name of the remote to delete
return Promise<void> Resolves successfully when filesystem operations are complete

Example Code:

await git.deleteRemote({ dir: '$input((/))', remote: '$input((upstream))' })
console.log('done')
<script> (function rewriteEditLink() { const el = document.querySelector('a.edit-page-link.button'); if (el) { el.href = 'https://github.com/isomorphic-git/isomorphic-git/edit/master/src/commands/deleteRemote.js'; } })(); </script>