We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1199200 commit 9216d96Copy full SHA for 9216d96
git_sim/git_sim_log.py
@@ -6,6 +6,8 @@
6
class GitSimLog(GitSimBaseCommand):
7
def __init__(self, args: Namespace):
8
super().__init__(args=args)
9
+ self.numCommits = self.args.commits + 1
10
+ self.defaultNumCommits = self.args.commits + 1
11
try:
12
self.selected_branches.append(self.repo.active_branch.name)
13
except TypeError:
0 commit comments