# File lib/meez/meez.rb, line 66
  def self.init_git(cookbook_name, options)
    puts '* Initializing GIT repo'
    path = File.join(options[:path], cookbook_name)
    require 'git'
    Git.init(path, repository: path)
  end