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 ccd3d99 commit 26139cbCopy full SHA for 26139cb
src/git_sim/tag.py
@@ -43,9 +43,9 @@ def construct(self):
43
print(f"{settings.INFO_STRING} {self.cmd}")
44
45
self.show_intro()
46
- self.parse_commits()
+ self.parse_commits(self.get_commit(sha_or_ref=self.name) if self.d else None)
47
self.parse_all()
48
- self.center_frame_on_commit(self.get_commit())
+ self.center_frame_on_commit(self.get_commit(sha_or_ref=self.name) if self.d else self.get_commit())
49
50
if not self.d:
51
tagText = m.Text(
0 commit comments