예제 #1
0
파일: cmd.py 프로젝트: austinvernsonger/tut
def fetch(tut, args):

    remote = args.get('<remote>')

    for point in tut.points(remote):
        tut.start(
            point.split('/')[-1],
            starting_point=point,
        )
예제 #2
0
파일: cmd.py 프로젝트: austinvernsonger/tut
def fetch(tut, args):

    remote = args.get('<remote>')

    for point in tut.points(remote):
        tut.start(
            point.split('/')[-1],
            starting_point=point,
        )
예제 #3
0
파일: cmd.py 프로젝트: austinvernsonger/tut
def points(tut, args):

    for point in tut.points():
        print point
예제 #4
0
파일: cmd.py 프로젝트: austinvernsonger/tut
def points(tut, args):

    for point in tut.points():
        print point