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.
gix-protocol
1 parent 9f8fa22 commit b785e81Copy full SHA for b785e81
gix/src/remote/connection/fetch/receive_pack.rs
@@ -348,14 +348,14 @@ fn add_shallow_args(
348
args.deepen_relative();
349
}
350
Shallow::Since { cutoff } => {
351
- args.deepen_since(cutoff.seconds as usize);
+ args.deepen_since(cutoff.seconds);
352
353
Shallow::Exclude {
354
remote_refs,
355
since_cutoff,
356
} => {
357
if let Some(cutoff) = since_cutoff {
358
359
360
for ref_ in remote_refs {
361
args.deepen_not(ref_.as_ref().as_bstr());
0 commit comments