Version control system wrapper allowing the developer to worry about only having to learn one command set to manage all types of repositories.

merge.py 496B

    from utilities import execute, isGit, isMercurial, isBazaar def merge(arguments): ''' Merge incoming changes with the current branch. ''' if isGit(): command = ["git", "merge"] command.extend(arguments) execute(command) if isMercurial(): command = ["hg", "merge"] command.extend(arguments) execute(command) if isBazaar(): command = ["bzr", "merge"] command.extend(arguments) execute(command)