From 3a5a54ec47182d6b7a1f9c681a090e097b7a6751 Mon Sep 17 00:00:00 2001 From: Catalin Marinas Date: Fri, 22 May 2009 09:53:39 +0100 Subject: [PATCH] Add the log --clear option This option allows the clearing of the log history which sometimes may get too large. Signed-off-by: Catalin Marinas --- stgit/commands/log.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/stgit/commands/log.py b/stgit/commands/log.py index 3370e6c..92aaf0b 100644 --- a/stgit/commands/log.py +++ b/stgit/commands/log.py @@ -50,7 +50,9 @@ options = [ opt('-f', '--full', action = 'store_true', short = 'Show the full commit ids'), opt('-g', '--graphical', action = 'store_true', - short = 'Run gitk instead of printing')] + short = 'Run gitk instead of printing'), + opt('--clear', action = 'store_true', + short = 'Clear the log history')] directory = common.DirectoryHasRepositoryLib() @@ -76,6 +78,11 @@ def func(parser, options, args): except KeyError: out.info('Log is empty') return + + if options.clear: + log.delete_log(stack.repository, stack.name) + return + stacklog = log.get_log_entry(stack.repository, logref, logcommit) pathlim = [os.path.join('patches', pn) for pn in patches] -- 2.11.0