Commit 3049dfaf authored by Jacob Vosmaer's avatar Jacob Vosmaer

Simplify return values

parent df7f2b13
...@@ -596,11 +596,13 @@ module Gitlab ...@@ -596,11 +596,13 @@ module Gitlab
# Delete the specified remote from this repository. # Delete the specified remote from this repository.
def remote_delete(remote_name) def remote_delete(remote_name)
rugged.remotes.delete(remote_name) rugged.remotes.delete(remote_name)
nil
end end
# Add a new remote to this repository. Returns a Rugged::Remote object # Add a new remote to this repository.
def remote_add(remote_name, url) def remote_add(remote_name, url)
rugged.remotes.create(remote_name, url) rugged.remotes.create(remote_name, url)
nil
end end
# Update the specified remote using the values in the +options+ hash # Update the specified remote using the values in the +options+ hash
...@@ -610,6 +612,7 @@ module Gitlab ...@@ -610,6 +612,7 @@ module Gitlab
def remote_update(remote_name, url:) def remote_update(remote_name, url:)
# TODO: Implement other remote options # TODO: Implement other remote options
rugged.remotes.set_url(remote_name, url) rugged.remotes.set_url(remote_name, url)
nil
end end
AUTOCRLF_VALUES = { AUTOCRLF_VALUES = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment