From 9054ae10dcde5070959d1c104e98afdb1c7e45cd Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Sat, 22 Jan 2011 15:25:00 +0100 Subject: git.force_head: quiet git reset so we don't see pointless 'HEAD is now at ...' messages during imports. --- gbp/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gbp/git.py b/gbp/git.py index 9fac3ba5..8b7f17e4 100644 --- a/gbp/git.py +++ b/gbp/git.py @@ -207,7 +207,7 @@ class GitRepository(object): def force_head(self, commit, hard=False): """force head to a specific commit""" - args = [] + args = ['--quiet'] if hard: args += [ '--hard' ] args += [ commit, '--' ] -- cgit v1.2.3