commit

in git_helper.rb [16:25]


  def commit(repo_path, branch_name, commit_msg)
    puts "Committing changes..."
    Dir.chdir(repo_path) do |path|
      `git checkout -b 
      `git add .`
      `git commit -m "#{commit_msg}" -a`
      `git push origin 
    end
  end