コード例 #1
0
ファイル: versions.py プロジェクト: 0asa/gittle
from gittle import Gittle

repo = Gittle('.')
versions = repo.get_file_versions('gittle/gittle.py')

print("Found %d versions out of a total of %d commits" % (len(versions), repo.commit_count()))
コード例 #2
0
from gittle import Gittle

repo = Gittle('.')
versions = repo.get_file_versions('gittle/gittle.py')

print("Found %d versions out of a total of %d commits" %
      (len(versions), repo.commit_count()))
コード例 #3
0
ファイル: versions.py プロジェクト: wangjianze/gittle
from gittle import Gittle

repo = Gittle('.')
versions = repo.get_file_versions('gittle/gittle.py')

print(("Found %d versions out of a total of %d commits" % (len(versions), repo.commit_count())))