From bfe647300080ab341984012a1c9d72f03bcbcb29 Mon Sep 17 00:00:00 2001 From: Gee-Bee Date: Fri, 18 Jul 2014 09:35:27 +0200 Subject: [PATCH] Fix comment. --- lib/middleman-deploy/strategies/git/force_push.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/middleman-deploy/strategies/git/force_push.rb b/lib/middleman-deploy/strategies/git/force_push.rb index b74c061..286ee48 100644 --- a/lib/middleman-deploy/strategies/git/force_push.rb +++ b/lib/middleman-deploy/strategies/git/force_push.rb @@ -30,7 +30,7 @@ module Middleman end # check if the user name has changed `git config user.name "#{self.user_name}"` unless self.user_name == `git config --get user.name` - # check if the remote repo has changed + # check if the user email has changed `git config user.email "#{self.user_email}"` unless self.user_email == `git config --get user.email` end end