コード例 #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