We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aefaeac commit eaac208Copy full SHA for eaac208
1 file changed
git_sim/git_sim_base_command.py
@@ -122,7 +122,8 @@ def parse_commits(
122
try:
123
commitParents = list(commit.parents)
124
except AttributeError:
125
- self.parse_commits(self.create_dark_commit(), i, circle)
+ if len(self.drawnCommits) < self.n_default:
126
+ self.parse_commits(self.create_dark_commit(), i, circle)
127
return
128
129
if len(commitParents) > 0:
@@ -135,7 +136,8 @@ def parse_commits(
135
136
for p in range(len(commitParents)):
137
self.parse_commits(commitParents[p], i, circle)
138
else:
139
140
141
142
def parse_all(self):
143
if self.all:
0 commit comments