예제 #1
0
파일: funcs.py 프로젝트: OmarElawady/tgg
def status():
    e = engine.VCS()
    if not e.is_initialized():
        print("No tgg repo found")
        return
    e.view_status()
예제 #2
0
파일: funcs.py 프로젝트: OmarElawady/tgg
def untrack(name):
    e = engine.VCS()
    if not e.is_initialized():
        print("No tgg repo found")
        return
    e.untrack_file(name)
예제 #3
0
파일: funcs.py 프로젝트: OmarElawady/tgg
def revert(c):
    e = engine.VCS()
    if not e.is_initialized():
        print("No tgg repo found")
        return
    e.load_commit_by_id(c)
예제 #4
0
파일: funcs.py 프로젝트: OmarElawady/tgg
def merge(b):
    e = engine.VCS()
    if not e.is_initialized():
        print("No tgg repo found")
        return
    e.merge_with_branch_by_name(b)
예제 #5
0
파일: funcs.py 프로젝트: OmarElawady/tgg
def log():
    e = engine.VCS()
    if not e.is_initialized():
        print("No tgg repo found")
        return
    e.log()
예제 #6
0
파일: funcs.py 프로젝트: OmarElawady/tgg
def checkout():
    e = engine.VCS()
    if not e.is_initialized():
        print("No tgg repo found")
        return
    e.switch_to_branch_by_name(b)
예제 #7
0
파일: funcs.py 프로젝트: OmarElawady/tgg
def branch(b):
    e = engine.VCS()
    if not e.is_initialized():
        print("No tgg repo found")
        return
    e.create_new_branch(b)
예제 #8
0
파일: funcs.py 프로젝트: OmarElawady/tgg
def init():
    engine.VCS().initialize()
예제 #9
0
파일: funcs.py 프로젝트: OmarElawady/tgg
def commit(m):
    e = engine.VCS()
    if not e.is_initialized():
        print("No tgg repo found")
        return
    e.add_new_commit(m)