From c9ef744c7b5f6bcab446cf0a0bc9cc1b016dd5f8 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Mon, 3 Nov 2008 10:32:09 -0800 Subject: Install a default pre-auto-gc hook in all repositories This hook is evaluated by `git gc --auto` to determine if it is a good idea to execute a GC at this time, or defer it to some later date. When working on a laptop its a good idea to avoid GC if you are on battery power as the extra CPU and disk IO would consume a decent amount of the charge. The hook is the standard sample hook from git.git contrib/hooks, last modified in git.git by 84ed4c5d117d72f02cc918e413b9861a9d2846d7. I added the GPLv2 header to the script to ensure the license notice is clear, as it does not match repo's own APLv2 license. We only update hooks during initial repository creation or on a repo sync. This way we don't incur huge overheads from the hook stat operations during "repo status" or even the normal "repo sync" cases. Signed-off-by: Shawn O. Pearce --- main.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'main.py') diff --git a/main.py b/main.py index 0901c845..be8da017 100755 --- a/main.py +++ b/main.py @@ -186,11 +186,13 @@ def _Main(argv): repo._Run(argv) except KeyboardInterrupt: sys.exit(1) - except RepoChangedException: - # If the repo or manifest changed, re-exec ourselves. + except RepoChangedException, rce: + # If repo changed, re-exec ourselves. # + argv = list(sys.argv) + argv.extend(rce.extra_args) try: - os.execv(__file__, sys.argv) + os.execv(__file__, argv) except OSError, e: print >>sys.stderr, 'fatal: cannot restart repo after upgrade' print >>sys.stderr, 'fatal: %s' % e -- cgit v1.2.3-54-g00ecf