summaryrefslogtreecommitdiff
path: root/morphlib/plugins/branch_and_merge_plugin.py
diff options
context:
space:
mode:
authorRichard Dale <richard.dale@codethink.co.uk>2013-06-25 09:26:28 +0100
committerRichard Dale <richard.dale@codethink.co.uk>2013-06-25 09:26:28 +0100
commite15e84e3cab086a8a2301c6c16e34e5a8e07c368 (patch)
tree99a2d9030d35b94a51ad4eda6c2eb7e147de2f5f /morphlib/plugins/branch_and_merge_plugin.py
parent155e5025278d106f3700fa8dffffb4c279dcded0 (diff)
downloadmorph-e15e84e3cab086a8a2301c6c16e34e5a8e07c368.tar.gz
Don't show git config messages for 'morph branch' in verbose mode
Diffstat (limited to 'morphlib/plugins/branch_and_merge_plugin.py')
-rw-r--r--morphlib/plugins/branch_and_merge_plugin.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/morphlib/plugins/branch_and_merge_plugin.py b/morphlib/plugins/branch_and_merge_plugin.py
index 38e9ccc3..bad2e9de 100644
--- a/morphlib/plugins/branch_and_merge_plugin.py
+++ b/morphlib/plugins/branch_and_merge_plugin.py
@@ -180,18 +180,18 @@ class BranchAndMergePlugin(cliapp.Plugin):
def set_branch_config(self, branch_dir, option, value):
filename = os.path.join(branch_dir, '.morph-system-branch', 'config')
- self.app.runcmd(['git', 'config', '-f', filename, option, value])
+ self.app.runcmd(['git', 'config', '-f', filename, option, value], print_command=False)
def get_branch_config(self, branch_dir, option):
filename = os.path.join(branch_dir, '.morph-system-branch', 'config')
- value = self.app.runcmd(['git', 'config', '-f', filename, option])
+ value = self.app.runcmd(['git', 'config', '-f', filename, option], print_command=False)
return value.strip()
def set_repo_config(self, repo_dir, option, value):
- self.app.runcmd(['git', 'config', option, value], cwd=repo_dir)
+ self.app.runcmd(['git', 'config', option, value], cwd=repo_dir, print_command=False)
def get_repo_config(self, repo_dir, option):
- value = self.app.runcmd(['git', 'config', option], cwd=repo_dir)
+ value = self.app.runcmd(['git', 'config', option], cwd=repo_dir, print_command=False)
return value.strip()
def get_head(self, repo_path):