# File lib/rhc/git_helpers.rb, line 20
    def git_clone_deploy_hooks(repo_dir)
      debug "Deploy default hooks"
      Dir.chdir(repo_dir) do |dir|
        Dir.glob(".openshift/git_hooks/*") do |hook|
          FileUtils.cp(hook, ".git/hooks/")
        end
      end
    end