From 08816fb364e02fb6dc8be1c31a1d72dcaf1165b6 Mon Sep 17 00:00:00 2001 From: Chris Ball Date: Fri, 16 May 2008 14:43:02 -0400 Subject: Add GIT support, from Chris Ball and Michael Stone. --- libbe/rcs.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libbe/rcs.py') diff --git a/libbe/rcs.py b/libbe/rcs.py index 64503db..77d6c9a 100644 --- a/libbe/rcs.py +++ b/libbe/rcs.py @@ -28,6 +28,9 @@ def rcs_by_name(rcs_name): elif rcs_name == "hg": import hg return hg + elif rcs_name == "git": + import git + return git elif rcs_name == "None": import no_rcs return no_rcs @@ -37,12 +40,15 @@ def detect(dir): import arch import bzr import hg + import git if arch.detect(dir): return arch elif bzr.detect(dir): return bzr elif hg.detect(dir): return hg + elif git.detect(dir): + return git import no_rcs return no_rcs -- cgit