# File lib/whiskey_disk.rb, line 212
  def clone_repository(repo, path, my_branch)
    enqueue "cd #{parent_path(path)}"
    enqueue("if [ -e #{path} ]; then echo 'Repository already cloned to [#{path}].  Skipping.'; " +
            "else git clone #{repo} #{tail_path(path)} && #{safe_branch_checkout(path, my_branch)}; fi")
  end