Jacob Foshee
Jacob Foshee

Reputation: 2773

Download and modify file from Git Repository using Ruby Grit over SSH

How can I download a file (or clone the repo) from a secure Git Repo (e.g. SSH on GitHub), then commit changes back to the repo using Ruby Grit? Thanks!

Upvotes: 3

Views: 1886

Answers (1)

Tekkub
Tekkub

Reputation: 31715

Grit gives you object oriented read/write access to Git repositories via Ruby.
-- http://grit.rubyforge.org/

Grit is just for interacting with a local repo, it doesn't manage remote ops (clone/push/pull/fetch) for you.

Upvotes: 3

Related Questions