From 9ba915bbd64b453bfe89b72f5490742903649d8b Mon Sep 17 00:00:00 2001 From: Brian Partridge Date: Thu, 6 Nov 2014 14:35:00 -0800 Subject: [PATCH] Updating README to document new set-url functions --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 7cbb975..466b949 100644 --- a/README.md +++ b/README.md @@ -115,6 +115,12 @@ Get the string names of each of the remotes. ### `Repo#remote_add(name, url, callback)` Equivalent to `git remote add `. +### `Repo#remote_add_url(name, url, callback)` +Equivalent to `git remote set-url --add `. + +### `Repo#remote_delete_url(name, url, callback)` +Equivalent to `git remote set-url --delete `. + ### `Repo#remote_remove(name, callback)` Remove a remote.