# File lib/hoe/git.rb, line 105
    def git_tag_and_push tag
      if git_svn?
        sh "git svn tag #{tag} -m 'Tagging #{tag} release.'"
      else
        sh "git tag -f #{tag}"
        git_remotes.each { |remote| sh "git push -f #{remote} tag #{tag}" }
      end
    end