Browse Source

added "merge", "mv", "pull", "push", and "rm" commands

bmallred 11 years ago
parent
commit
20022e8d47
5 changed files with 145 additions and 0 deletions
  1. 29 0
      extensions/merge.py
  2. 29 0
      extensions/mv.py
  3. 29 0
      extensions/pull.py
  4. 29 0
      extensions/push.py
  5. 29 0
      extensions/rm.py

+ 29 - 0
extensions/merge.py

@ -0,0 +1,29 @@
1
import subprocess
2
from utilities import isGit, isMercurial, isBazaar
3
4
def merge(arguments):
5
    '''
6
    Merge incoming changes with the current branch.
7
    '''
8
    
9
    if isGit():
10
        command = ["git", "merge"]
11
        command.extend(arguments)
12
        executeCommand(command)
13
14
    if isMercurial():
15
        command = ["hg", "merge"]
16
        command.extend(arguments)
17
        executeCommand(command)
18
19
    if isBazaar():
20
        command = ["bzr", "merge"]
21
        command.extend(arguments)
22
        executeCommand(command)
23
24
def executeCommand(command):
25
    '''
26
    Execute the given command.
27
    '''
28
29
    subprocess.call(command)

+ 29 - 0
extensions/mv.py

@ -0,0 +1,29 @@
1
import subprocess
2
from utilities import isGit, isMercurial, isBazaar
3
4
def mv(arguments):
5
    '''
6
    Move file(s)
7
    '''
8
    
9
    if isGit():
10
        command = ["git", "mv"]
11
        command.extend(arguments)
12
        executeCommand(command)
13
14
    if isMercurial():
15
        command = ["hg", "mv"]
16
        command.extend(arguments)
17
        executeCommand(command)
18
19
    if isBazaar():
20
        command = ["bzr", "mv"]
21
        command.extend(arguments)
22
        executeCommand(command)
23
24
def executeCommand(command):
25
    '''
26
    Execute the given command.
27
    '''
28
29
    subprocess.call(command)

+ 29 - 0
extensions/pull.py

@ -0,0 +1,29 @@
1
import subprocess
2
from utilities import isGit, isMercurial, isBazaar
3
4
def pull(arguments):
5
    '''
6
    Pull the latest changes.
7
    '''
8
    
9
    if isGit():
10
        command = ["git", "fetch"]
11
        command.extend(arguments)
12
        executeCommand(command)
13
14
    if isMercurial():
15
        command = ["hg", "pull"]
16
        command.extend(arguments)
17
        executeCommand(command)
18
19
    if isBazaar():
20
        command = ["bzr", "pull"]
21
        command.extend(arguments)
22
        executeCommand(command)
23
24
def executeCommand(command):
25
    '''
26
    Execute the given command.
27
    '''
28
29
    subprocess.call(command)

+ 29 - 0
extensions/push.py

@ -0,0 +1,29 @@
1
import subprocess
2
from utilities import isGit, isMercurial, isBazaar
3
4
def push(arguments):
5
    '''
6
    Push commits to target.
7
    '''
8
    
9
    if isGit():
10
        command = ["git", "push"]
11
        command.extend(arguments)
12
        executeCommand(command)
13
14
    if isMercurial():
15
        command = ["hg", "push"]
16
        command.extend(arguments)
17
        executeCommand(command)
18
19
    if isBazaar():
20
        command = ["bzr", "push"]
21
        command.extend(arguments)
22
        executeCommand(command)
23
24
def executeCommand(command):
25
    '''
26
    Execute the given command.
27
    '''
28
29
    subprocess.call(command)

+ 29 - 0
extensions/rm.py

@ -0,0 +1,29 @@
1
import subprocess
2
from utilities import isGit, isMercurial, isBazaar
3
4
def rm(arguments):
5
    '''
6
    Remove file(s) from the pending changes.
7
    '''
8
    
9
    if isGit():
10
        command = ["git", "rm"]
11
        command.extend(arguments)
12
        executeCommand(command)
13
14
    if isMercurial():
15
        command = ["hg", "rm"]
16
        command.extend(arguments)
17
        executeCommand(command)
18
19
    if isBazaar():
20
        command = ["bzr", "rm"]
21
        command.extend(arguments)
22
        executeCommand(command)
23
24
def executeCommand(command):
25
    '''
26
    Execute the given command.
27
    '''
28
29
    subprocess.call(command)