addRemote
Add or update a 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 | The git directory path |
remote | string | The name of the remote |
url | string | The URL of the remote |
force | boolean = false | Instead of throwing an error if a remote named remote already exists, overwrite the existing remote. |
return | Promise<void> | Resolves successfully when filesystem operations are complete |
Example Code:
await git.addRemote({ dir: '$input((/))', remote: '$input((upstream))', url: '$input((https://github.com/isomorphic-git/isomorphic-git))' })
console.log('done')