Browse Source

close #1: added cloning command

bmallred 11 years ago
parent
commit
8b574aebe8
1 changed files with 40 additions and 0 deletions
  1. 40 0
      extensions/clone.py

+ 40 - 0
extensions/clone.py

@ -0,0 +1,40 @@
1
import os
2
import subprocess
3
from utilities import isGit, isMercurial, isBazaar
4
5
def clone(arguments):
6
    '''
7
    Clone a repository.
8
    '''
9
10
    commandSets = [
11
        ["git", "clone"],
12
        ["hg", "clone"],
13
        ["bzr", "branch"]
14
        ]
15
16
    for commandSet in commandSets:
17
        command = commandSet
18
        command.extend(arguments)
19
        out, err = executeCommandWithResponse(command)
20
21
        if err:
22
            print("{0}: repository not found".format(command[0]))
23
        else:
24
            print("{0}: repository cloned!".format(command[0]))
25
            break
26
27
def executeCommand(command):
28
    '''
29
    Execute the given command.
30
    '''
31
32
    subprocess.call(command, stderr=subprocess.STDOUT)
33
34
def executeCommandWithResponse(command):
35
    '''
36
    Execute the given command and return the output and errors.
37
    '''
38
39
    proc = subprocess.Popen(command, stdin=subprocess.PIPE, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
40
    return proc.communicate()