From 579d1b8174c9be915c0fa17a67fc38cc6de36ad7 Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Thu, 29 May 2008 01:55:21 -0700 Subject: git.py: always use "git foo" and never "git-foo" gitsters on the git mailing list have been slowly deprecating the usage of "git-foo" commands. The preferred invocation is "git foo". Signed-off-by: David Aguilar --- lib/git_python/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/git_python') diff --git a/lib/git_python/git.py b/lib/git_python/git.py index 450f71fd..c66d9461 100644 --- a/lib/git_python/git.py +++ b/lib/git_python/git.py @@ -82,7 +82,7 @@ class Git(MethodMissingMixin): ext_args = map(lambda a: (a == '--') and a or "%s" % a, args) args = opt_args + ext_args - call = ['git-'+dashify(method)] + call = ["git", dashify(method)] call.extend(args) stdout_value = self.execute(call) -- cgit v1.2.1