# File lib/rhc/git_helpers.rb, line 19
    def git_clone_application(app)
      repo_dir = options.repo || app.name

      debug "Pulling new repo down"
      git_clone_repo(app.git_url, repo_dir)

      debug "Configuring git repo"
      Dir.chdir(repo_dir) do |dir|
        git_config_set "rhc.app-uuid", app.uuid
      end

      true
    end