git - grit怎么修改代码,并且提交代码
怪我咯
怪我咯 2017-04-24 09:10:26
0
1
656

我想用https://github.com/mojombo/grit实现修改git仓库代码。

代码如下

r = Grit::Repo.new('/projects/atest.git').index
r.add('lib/test.rb', "aaaa")
r.commit("update test", [r.commits.first], Grit::Actor.new("test", "test@email.com"), nil, "master")

代码运行下来,是可以修改代码,但是却将这个仓库里面其他文件都删除了。。。

求高手该怎么写才对?

怪我咯
怪我咯

走同样的路,发现不同的人生

reply all(1)
迷茫

If you use the command line, use the git ls-tree -r 'master^{tree}' 的内容(上次提交的文件列表)和修改部分(写在后边)一同传递给 git update-index --add --index-infogit add operation). That is, the index contains unmodified and modified files (all files to be put into the new version).

So, maybe you should add the unmodified files to the index as well?

PS: grit depends on git...

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template