-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathget_history_from_git.py
55 lines (46 loc) · 1.34 KB
/
get_history_from_git.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import sys
from git import *
if(len(sys.argv) != 4):
print "Usage: python get_history_from_git.py REPO_LOCATION REPO_PATH BRANCH"
sys.exit()
def printCommit(commitHash, commitDate, printed):
if not printed:
print "\t{"
else:
print ",\n\t{"
print '\t\tcommitHash: "' + commitHash + '",'
print "\t\tcommitDate: " + str(commitDate)
sys.stdout.write("\t}")
def getHistoryFromGit(repoLocation, repoPath, branch):
try:
repo = Repo(repoLocation)
currentCommit = repo.heads[branch].commit
lastBlobHexSHA = currentCommit.tree[repoPath].hexsha
lastCommit = currentCommit
foundBlob = False
handledFirst = False
printed = False
print "["
while currentCommit:
try:
blob = currentCommit.tree[repoPath]
foundBlob = True
if blob.hexsha != lastBlobHexSHA:
printCommit(lastCommit.hexsha, lastCommit.committed_date, printed)
printed = True
lastBlobHexSHA = blob.hexsha
except KeyError:
if foundBlob and not handledFirst:
handledFirst = True
printCommit(lastCommit.hexsha, lastCommit.committed_date, printed)
printed = True
lastBlobHexSHA = blob.hexsha
if currentCommit.parents:
lastCommit = currentCommit
currentCommit = currentCommit.parents[0]
else:
currentCommit = None
print "\n]"
except:
print "[ ]"
getHistoryFromGit(sys.argv[1], sys.argv[2], sys.argv[3])