Reputation: 2773
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
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