1
0
mirror of https://github.com/danog/gift.git synced 2024-11-26 20:04:47 +01:00

Updating README to document new set-url functions

This commit is contained in:
Brian Partridge 2014-11-06 14:35:00 -08:00
parent 1209a68a34
commit 9ba915bbd6

View File

@ -115,6 +115,12 @@ Get the string names of each of the remotes.
### `Repo#remote_add(name, url, callback)`
Equivalent to `git remote add <name> <url>`.
### `Repo#remote_add_url(name, url, callback)`
Equivalent to `git remote set-url --add <name> <url>`.
### `Repo#remote_delete_url(name, url, callback)`
Equivalent to `git remote set-url --delete <name> <url>`.
### `Repo#remote_remove(name, callback)`
Remove a remote.