A rubygem that allows OO access to git repositories.
0
votes
0answers
2 views
global excludesfile not used when getting repo status with Grit?
My ~/.gitconfig file includes:
[core]
excludesfile = /Users/jonathak/.gitignore_global
However, when I try to get the current status of one of my repos with Grit, this excludesfile doesn't seem ...
2
votes
2answers
96 views
Example of a git push using either rugged or grit
I'm looking for some code examples, for either rugged or grit, showing how to do a git push.
Background
I have rake tasks deploy:staging and deploy:production that I use to deploy my app.
I'm ...
0
votes
0answers
17 views
Ruby Grit library tag creation
I'm trying to create a tag with this code (irb executed in the git repository folder):
r = Grit::Repo.new('.')
...
tagger = {}
tagger[:name] = 'blah'
tagger[:email] = 'blah@email.net'
tagger[:type] ...
0
votes
0answers
65 views
how to use Push in grit using method_missing method
I am trying to do push using grit.. however I am unable to figure out what all parameters are to be passed in rmpush.push command below.. I have already created a remote alias using git remote add and ...
2
votes
1answer
96 views
Git: Editing a file in a bare repo using Git plumbing commands
I'm trying to create a basic GIT web UI for GIT bare repos which allows edit (only) of existing files.
For example, considering these two cases:
/dir-a/dir-b/dir-c/a-file.txt
/a-file.txt
How ...
0
votes
0answers
153 views
Using Grit with to add to an existing repo
I am trying to use Grit to access a repo that already exists, make changes to the repo, then commit those changes. In my example I am simply adding files that end in .doc or .docx to the .gitignore ...
0
votes
1answer
112 views
Ruby Grit: find commits between 2 branches
I would like to compare 2 branches and show the commits that exist in one but not the other. This works from command line git log --pretty=oneline branch_b ^branch_a --no-merges and gives me what I ...
0
votes
2answers
73 views
Grit: how to to tell between two commits which is newer?
I'd like to be able to tell between two Grit::Commit objects, which is newer. What I mean by newer is that if commit_A is a parent (or parent of a parent,etc) of commit_B, then commit_B is newer. This ...
4
votes
3answers
415 views
How to detect conflict between two git repositories.
To implement github like fork/pull request function in my project, the auto-merge feature need to detect conflict between source/target repository every time while viewing the pull request.
One ...
0
votes
1answer
128 views
Grit commit_diff shows reverse diff
I'm trying to do a very simple thing: Read a diff from a git repo via the ruby gem Grit. I'm creating a file and adding the line "This is me changing the first file". Now I do this to get the diff:
r ...
2
votes
2answers
137 views
Creating tags with Grit
I'm trying to create a tag in my git repository via Grit, but I'm not sure that the library supports referenced tags. It's easy to create a tag like this:
Grit::Tag.create_tag_object(repo, params, ...
1
vote
1answer
148 views
Getting blobs with Grit
I'm using Grit in my rails app and I'm creating a commit which i know works:
repo = Repo.new(full_path, {:is_bare => true})
fname = "snippet"
...
2
votes
2answers
302 views
Does Grit works with Windows 7 well?
I have tried the last day to work with the Ruby gem git (version 1.2.5), but I am not sure that it works well enough. I stumbled over grit, which is more active, but was not able to get it working ...
1
vote
2answers
419 views
How to get the last commit date of a file with ruby/grit?
I have a jekyll site, and I want to find the last commit date of a certain post using ruby/grit.
I know that I can do the following using git:
git log -1 --format="%cd" -- <file>
How can I ...
0
votes
1answer
334 views
Using grit with Ruby on rails
When I use rails c, I could type repo = Grit::Repo.name("/path/path") and there is no error.
But when I type these in my rails controller, there is a error message showing: uninitialized constant ...
0
votes
1answer
70 views
How to find blob in tree by its name
I have a tree of commit found by SHA-1,code is:
tree = repo.tree(sha)
now I need to find blob by file name and display its content
1
vote
3answers
135 views
How to display commit content in ruby
How do you display the commit content specified with SHA-1 in a Ruby on Rails application?
3
votes
1answer
1k views
Can I get the progress of a git clone command, issued in grit, output to stdout?
I'm fairly confident this is either not possible or I'm missing an obvious option, but after consulting grit's Git class, the gist linked in this SO post, and the other grit tagged questions on SO, ...
6
votes
1answer
265 views
How does Github allow for inline file editing? (Or how to add or edit files in a bare git repository)
I have a small application that manages several git repositories similar to Github/Gitorious. Github allows for inline file editing, and I'd like to know if anyone has any idea on how they manage ...
3
votes
1answer
233 views
Grit warnings on ruby 1.9
I'm learning grit (version 2.4.1). Here is my basic code:
#!/usr/bin/env ruby -wKU
require "grit"
repo = Grit::Repo.new("./myproject")
p repo.commits
Running this code gave me a lot of warnings. ...
0
votes
1answer
179 views
Grit submodule update returns nil
Working on a ruby/git project using Grit, but I'm unable to update my submodules programmatically. I figured out how the missing_method function maps to git and how to use it to perform tasks not ...
1
vote
2answers
1k views
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!
1
vote
3answers
797 views
A few questions about Grit
I have a few questions about Grit/Git that I hope you can help me with. Here's my code:
# create Repo
r = Repo.init_bare 'myrepo.git'
i = r.index
# first commit to master
i.add('myfile.txt', 'my ...
1
vote
1answer
315 views
Create a repo using Grit
Is there a way to create a branch in a repo using Grit? I can't seem to find a way in the docs nor is there any reference I can find on the web.
3
votes
2answers
290 views
Is it possible to add/commit a file to the index of a local bare Git repo?
I'm messing around with the Ruby Grit gem... seeing how I can use it to manage/access a Gitosis server I'm running. Does anyone know if it is possible to add/commit files to a local bare repo, or will ...
1
vote
2answers
188 views
Grit remove file in commit
I using Grit/Git as a database to track files added to a blog.
I can't find any example of how I would delete a file from the index. I still want to be able to have the file in my Git history (being ...
1
vote
0answers
105 views
Grit: Find blob by ID
Is there any way that I can get a blob by id using Grit? I know I can do this:
@repo.tree/"myfile.txt"
But is there any way I can get a blob from the tree by its id?
EDIT:
Solution was this:
...
0
votes
1answer
364 views
Grit: Show all files in master
I'm trying to wrap my head around using Grit to write to a Git repository. I can easily create a repo and make a commit:
repo = Repo.init_bare("grit.git")
index = Index.new(repo)
...
1
vote
2answers
513 views
In ruby/grit, how do I get a list of files changed in a specific commit?
I want a list of files affected by a certain commit in git. Through the command line, I can do this with:
git show --pretty="format:" --name-only (sha)
But how can I do this through Grit in Ruby?
1
vote
1answer
490 views
Grit commit seems to be overriding last commit in Git repo?
I'm using Grit to create a repo and committing as few times. Every time I commit, my commit is saved, but the old one disappears. Anyone have any clue what I'm doing wrong?
First I create a repo and ...
5
votes
1answer
1k views
Grit's clone method is undefined?
I've recently started working on a project that uses git for storage and ruby as a front-end. The first version of my script used ruby-git, which was ok though pretty simple. When I needed to do more ...
1
vote
1answer
543 views
get latest commit for blob with ruby/grit
i cloned a copy of the git-wiki for some educational programming. now, as a challange, i tried to figure out how to get the date for the blob.
the blob is fetched with
repository.tree/(page_name + ...
1
vote
1answer
308 views
git + grit working directory revision information
I'm trying to display some git version information (via grit) in my rails application footer for debuging. When I want to see the head, it's straightforward:
@git_repository = Grit::Repo.new( ...
0
votes
1answer
309 views
How do you find out what files where changed between commits using Grit
I am having trouble trying to find out what files changed between two different commits. Here is the setup, version of Ruby and the Gem Grit, and what happens when I run the program:
> cd /temp
...
0
votes
2answers
630 views
grit - trying to add files to git repo with out writing them to the file system
mkdir /tmp/scratch
cd /tmp/scratch
git init .
--*--
xx.rb:
SCRATCH = '/tmp/scratch'
repo = Repo.new(SCRATCH)
def add_multiple_commits_same_file_different_content(repo)
previous_commit = ...
93
votes
5answers
23k views
Git: Finding what branch a commit came from
I'm pretty sure this isn't possible, but is there anyway to find out what branch a commit comes from given its sha1?
Bonus points if you can tell me how to accomplish this using grit. :)