forked from initialcommit-com/git-sim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit_sim_reset.py
More file actions
101 lines (85 loc) · 4.35 KB
/
git_sim_reset.py
File metadata and controls
101 lines (85 loc) · 4.35 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import sys
import git
import manim as m
import numpy
from git_sim.git_sim_base_command import GitSimBaseCommand
class GitSimReset(GitSimBaseCommand):
def __init__(self, scene):
super().__init__(scene)
try:
self.resetTo = git.repo.fun.rev_parse(self.repo, self.scene.args.commit)
except git.exc.BadName:
print("git-sim error: '" + self.scene.args.commit + "' is not a valid Git ref or identifier.")
sys.exit(1)
self.commitsSinceResetTo = list(self.repo.iter_commits(self.scene.args.commit + "...HEAD"))
self.maxrefs = 2
self.hide_first_tag = True
try:
self.selected_branches.append(self.repo.active_branch.name)
except TypeError:
pass
if self.scene.args.hard:
self.scene.args.mode = "hard"
if self.scene.args.mixed:
self.scene.args.mode = "mixed"
if self.scene.args.soft:
self.scene.args.mode = "soft"
def execute(self):
print("Simulating: git " + self.scene.args.subcommand + ( " --" + self.scene.args.mode if self.scene.args.mode != "default" else "" ) + " " + self.scene.args.commit)
self.show_intro()
self.get_commits()
self.parse_commits(self.commits[self.i])
self.recenter_frame()
self.scale_frame()
self.reset_head_branch(self.resetTo.hexsha)
self.vsplit_frame()
self.setup_and_draw_zones(first_column_name="Changes deleted from")
self.fadeout()
self.show_outro()
def build_commit_id_and_message(self, commit):
hide_refs = False
if commit == "dark":
commitId = m.Text('', font="Monospace", font_size=20, color=self.scene.fontColor)
commitMessage = ''
elif self.i == 3 and self.resetTo.hexsha not in [commit.hexsha for commit in self.get_nondark_commits()]:
commitId = m.Text('...', font="Monospace", font_size=20, color=self.scene.fontColor)
commitMessage = '...'
hide_refs = True
elif self.i == 4 and self.resetTo.hexsha not in [commit.hexsha for commit in self.get_nondark_commits()]:
commitId = m.Text(self.resetTo.hexsha[:6], font="Monospace", font_size=20, color=self.scene.fontColor)
commitMessage = self.resetTo.message.split("\n")[0][:40].replace("\n", " ")
commit = self.resetTo
hide_refs = True
else:
commitId = m.Text(commit.hexsha[:6], font="Monospace", font_size=20, color=self.scene.fontColor)
commitMessage = commit.message.split("\n")[0][:40].replace("\n", " ")
if commit != "dark" and commit.hexsha == self.resetTo.hexsha and commit.hexsha != self.repo.head.commit.hexsha:
hide_refs = True
return commitId, commitMessage, commit, hide_refs
def populate_zones(self, firstColumnFileNames, secondColumnFileNames, thirdColumnFileNames, firstColumnArrowMap={}, secondColumnArrowMap={}):
for commit in self.commitsSinceResetTo:
if commit.hexsha == self.resetTo.hexsha:
break
for filename in commit.stats.files:
if self.scene.args.mode == "soft":
thirdColumnFileNames.add(filename)
elif self.scene.args.mode == "mixed" or self.scene.args.mode == "default":
secondColumnFileNames.add(filename)
elif self.scene.args.mode == "hard":
firstColumnFileNames.add(filename)
for x in self.repo.index.diff(None):
if "git-sim_media" not in x.a_path:
if self.scene.args.mode == "soft":
secondColumnFileNames.add(x.a_path)
elif self.scene.args.mode == "mixed" or self.scene.args.mode == "default":
secondColumnFileNames.add(x.a_path)
elif self.scene.args.mode == "hard":
firstColumnFileNames.add(x.a_path)
for y in self.repo.index.diff("HEAD"):
if "git-sim_media" not in y.a_path:
if self.scene.args.mode == "soft":
thirdColumnFileNames.add(y.a_path)
elif self.scene.args.mode == "mixed" or self.scene.args.mode == "default":
secondColumnFileNames.add(y.a_path)
elif self.scene.args.mode == "hard":
firstColumnFileNames.add(y.a_path)