From f981a00c4b6a968ebbd9ee287e286c95664fe38a Mon Sep 17 00:00:00 2001 From: David Underwood Date: Thu, 5 Dec 2013 15:38:49 -0500 Subject: [PATCH] Tabs to spaces in lib.rb --- lib/git/lib.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/git/lib.rb b/lib/git/lib.rb index 7f71d53a..2c91d8d4 100644 --- a/lib/git/lib.rb +++ b/lib/git/lib.rb @@ -575,9 +575,9 @@ def push(remote, branch = 'master', tags = false) command('push', ['--tags', remote]) if tags end - def pull(remote='origin', branch='master') - command('pull', [remote, branch]) - end + def pull(remote='origin', branch='master') + command('pull', [remote, branch]) + end def tag_sha(tag_name) head = File.join(@git_dir, 'refs', 'tags', tag_name)