Browse Source

added "init" command

bmallred 11 years ago
parent
commit
ef1350e10a
1 changed files with 23 additions and 0 deletions
  1. 23 0
      extensions/init.py

+ 23 - 0
extensions/init.py

@ -0,0 +1,23 @@
1
import subprocess
2
from utilities import isGit, isMercurial, isBazaar
3
4
def init(arguments):
5
    '''
6
    Initializes (or re-initializes) a repository.
7
    '''
8
    
9
    if "git" in arguments or isGit():
10
        executeCommand(["git", "init"])
11
12
    if "hg" in arguments or isMercurial():
13
        executeCommand(["hg", "init"])
14
15
    if "bzr" in arguments or isBazaar():
16
        executeCommand(["bzr", "init"])
17
18
def executeCommand(command):
19
    '''
20
    Execute the given command.
21
    '''
22
23
    subprocess.call(command)