Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Will running cgit periodically cause any harm (since gerrit manipulates the repo with JGit)? Does JGit perform this function automatically?

share|improve this question

3 Answers

up vote 2 down vote accepted

Yes, it is safe to run git gc (or most any other cgit command) on the server while Gerrit is running.

No, jgit does not perform this automatically. Most groups using Gerrit have a script which runs gc once a week or so. I tried to find some more official documentation on this, but didn't see anything.

share|improve this answer

JGit's gc implementation is still in review [1], should be ready soon.

[1] https://git.eclipse.org/r/#/c/4705/

share|improve this answer

Jgit is eclipse plugin for Git. When and how often to run "git gc" is given in this

share|improve this answer
1  
Downvoted cause: if op asks about JGit, he already knows what is it, so your first sentence is meaningless. The last part is just a link so somewhere (and not even an excerpt) so it could be a comment, not answer. – om-nom-nom Mar 30 '12 at 19:05
JGit is not the eclipse plugin, EGit is (which happens to use JGit). EGit is sort of irrelevant to this question. – jnorris Mar 30 '12 at 22:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.