예제 #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
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())))