class Raykit::Git::Repository

def checkout_local_clone_directory_branch(branch)

def checkout_local_clone_directory_branch(branch)
te_local_clone_directory
ir.exist?(local_clone_directory))
Dir.chdir(local_clone_directory) do
    check=`git branch`
    if(!check.include?("* #{branch}"))
        t = `git checkout #{branch}`
    end
    check=`git branch`
    return check.include?("* #{branch}")
end

e