diff options
author | Michael Trier <mtrier@gmail.com> | 2008-05-18 10:55:31 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-05-18 10:55:31 -0400 |
commit | 0651f0964ba5a33257ebbda1e92c7a1649a4a058 (patch) | |
tree | d1565ced15d3ad46e9adf9d88e7622c76cbe6453 /lib/git_python/git.py | |
parent | 062aafa396866d4dfe8f3fd2f32d46fa7c01b6dd (diff) | |
download | gitpython-0651f0964ba5a33257ebbda1e92c7a1649a4a058.tar.gz |
lots of little fixes. Corrected problem with creating bare repo. Added Repo.create alias.
Diffstat (limited to 'lib/git_python/git.py')
-rw-r--r-- | lib/git_python/git.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/git_python/git.py b/lib/git_python/git.py index ad08bb20..ee256356 100644 --- a/lib/git_python/git.py +++ b/lib/git_python/git.py @@ -26,6 +26,7 @@ class Git(MethodMissingMixin): ``command`` The command to execute """ + print command proc = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE |