Revision b3b647ea4799062be9ddcd13e8594e27540ce23e authored by Paladox on 02 June 2017, 12:20:09 UTC, committed by Paladox on 02 June 2017, 22:03:37 UTC
This is for gerrit 2.14 and won't affect gerrit 2.13.

Apparently in the newer jgit release which gerrit 2.14 has they added
support for gc.auto but we have gc switched off but it doesn't seem to
affect gc.auto. So we have to switch it off globally in a gitconfig file.

See disccusion at https://groups.google.com/forum/#!topic/repo-discuss/lVR37Pm4G3c

Bug: T151676
Bug: T156120
Change-Id: Icbcee9c080a3ee618104a5bf2c1b7c579ca33b5f
1 parent dc715db
Raw File
.gitignore
# Puppet's repository shouldn't have any editor backup files
*~

# Ignore .project (for eclipse/geppetto)
.project

# vim swap files are unwanted
*.swp

# Compiled Python files are useless
*.pyc

/private/

# Automatically generated documentation and related support path:
/doc/*
!/doc/README
*.yardoc*
/.yardwarns

# ctags generated file (see `rake tags`)
/tags

# local ruby configuration
/.rbenv-version
/Gemfile.lock

# python venv wrapper
/.tox

# Jetbrain's IDEA editor settings
/.idea
/*.iml
back to top