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 af7717c commit e83fe3fCopy full SHA for e83fe3f
modules/git/repo_commit.go
@@ -241,10 +241,10 @@ func (repo *Repository) CommitsByFileAndRange(opts CommitsByFileAndRangeOptions)
241
gitCmd.AddOptionValues("--not", opts.Not)
242
}
243
if opts.Since != "" {
244
- gitCmd.AddOptionFormat("--since='%s'", opts.Since)
+ gitCmd.AddOptionFormat("--since=%s", opts.Since)
245
246
if opts.Until != "" {
247
- gitCmd.AddOptionFormat("--until='%s'", opts.Until)
+ gitCmd.AddOptionFormat("--until=%s", opts.Until)
248
249
250
gitCmd.AddDashesAndList(opts.File)
0 commit comments