-
Notifications
You must be signed in to change notification settings - Fork 2
/
2023.csv
We can't make this file beautiful and searchable because it's too large.
3131 lines (3131 loc) · 711 KB
/
2023.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"Project","Client","Description","Task","User","Group","Email","Tags","Billable","Start Date","Start Time","End Date","End Time","Duration (h)","Duration (decimal)","Billable Rate (EUR)","Billable Amount (EUR)"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1224#issuecomment-1872939287; also fiddle with RustRover IDE which seems to rebuild everything, always, twice, when testing","","Byron","","[email protected]","","No","2023/12/31","13:25:59","2023/12/31","14:05:00","00:39:01","0.65","0.00","0.00"
"gitoxide","Byron","finish EOY","","Byron","","[email protected]","outreach","No","2023/12/31","10:04:30","2023/12/31","10:08:36","00:04:06","0.07","0.00","0.00"
"gitoxide","Byron","work towards releasing the EOY","","Byron","","[email protected]","","No","2023/12/31","09:02:39","2023/12/31","09:42:50","00:40:11","0.67","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1221#pullrequestreview-1799617973","","Byron","","[email protected]","review PR","No","2023/12/31","08:17:45","2023/12/31","08:41:17","00:23:32","0.39","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/703#issuecomment-1872758428","","Byron","","[email protected]","community","No","2023/12/31","08:09:29","2023/12/31","08:17:44","00:08:15","0.14","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1222#issuecomment-1872744975","","Byron","","[email protected]","community","No","2023/12/31","07:52:31","2023/12/31","08:09:28","00:16:57","0.28","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/703#issuecomment-1872594091","","Byron","","[email protected]","community","No","2023/12/30","20:50:39","2023/12/30","20:59:03","00:08:24","0.14","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1220#issuecomment-1872592748","","Byron","","[email protected]","review PR","No","2023/12/30","20:41:37","2023/12/30","20:50:37","00:09:00","0.15","0.00","0.00"
"gitoxide","Byron","finish first draft of end-of-year doc","","Byron","","[email protected]","outreach","No","2023/12/30","20:28:09","2023/12/30","20:41:35","00:13:26","0.22","0.00","0.00"
"gitoxide","Byron","more gratitude","","Byron","","[email protected]","outreach","No","2023/12/30","18:40:14","2023/12/30","19:11:58","00:31:44","0.53","0.00","0.00"
"gitoxide","Byron","recheck MSRV - it's 1.67 (even though we declared 1.65), all due to dependencies. Could do it per crate","","Byron","","[email protected]","","No","2023/12/30","18:27:41","2023/12/30","18:40:13","00:12:32","0.21","0.00","0.00"
"starship-gitoxide","Byron","https://github.com/starship/starship/pull/5664#issuecomment-1872569882","","Byron","","[email protected]","","No","2023/12/30","18:18:15","2023/12/30","18:27:39","00:09:24","0.16","0.00","0.00"
"gitoxide","Byron","yearly report up to 'gratittude' section","","Byron","","[email protected]","","No","2023/12/30","15:31:42","2023/12/30","16:47:01","01:15:19","1.26","0.00","0.00"
"gitoxide","Byron","prepare tree for final tally; finalize MSRV; https://github.com/rustsec/rustsec/pull/1081#issuecomment-1872538600","","Byron","","[email protected]","community","No","2023/12/30","15:16:09","2023/12/30","15:31:41","00:15:32","0.26","0.00","0.00"
"gitoxide","Byron","keep sketching the end-of-year report","","Byron","","[email protected]","outreach","No","2023/12/30","10:45:03","2023/12/30","11:16:03","00:31:00","0.52","0.00","0.00"
"maintenance","Byron","https://github.com/frewsxcv/rust-crates-index/pull/157; restore MSRV of 1.67","","Byron","","[email protected]","","No","2023/12/30","09:26:19","2023/12/30","10:45:02","01:18:43","1.31","0.00","0.00"
"gitoxide","Byron","Look into `rustsec` and waste quite some time due to multiple gix versions mixed","","Byron","","[email protected]","community","No","2023/12/30","08:52:36","2023/12/30","09:26:18","00:33:42","0.56","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1217#pullrequestreview-1799535227","","Byron","","[email protected]","review PR","No","2023/12/30","08:44:26","2023/12/30","08:52:29","00:08:03","0.13","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1216","","Byron","","[email protected]","community","No","2023/12/29","22:35:16","2023/12/29","22:39:17","00:04:01","0.07","0.00","0.00"
"gitoxide","Byron","get started with yearly report","","Byron","","[email protected]","outreach","No","2023/12/29","20:10:53","2023/12/29","20:25:52","00:14:59","0.25","0.00","0.00"
"catchup","team docs.rs","zulip","","Byron","","[email protected]","","No","2023/12/29","19:20:16","2023/12/29","19:22:01","00:01:45","0.03","0.00","0.00"
"helix-gitoxide","Byron","https://github.com/helix-editor/helix/pull/9188 (but lost time as intelliJ broke Rust support, switch to Rover)","","Byron","","[email protected]","","No","2023/12/29","18:52:00","2023/12/29","19:10:50","00:18:50","0.31","0.00","0.00"
"starship-gitoxide","Byron","https://github.com/starship/starship/pull/5664","","Byron","","[email protected]","","No","2023/12/29","18:32:01","2023/12/29","18:52:00","00:19:59","0.33","0.00","0.00"
"maintenance","Byron","crates-index-diff v22","","Byron","","[email protected]","","No","2023/12/29","18:27:34","2023/12/29","18:31:59","00:04:25","0.07","0.00","0.00"
"maintenance","Byron","fix regression - turns out to have just been about environment variables.","","Byron","","[email protected]","","No","2023/12/29","16:46:19","2023/12/29","17:54:15","01:07:56","1.13","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/crates-index-diff-rs/pull/43 - but there is a performance regression due to advanced diff handling","","Byron","","[email protected]","","No","2023/12/29","14:49:12","2023/12/29","15:50:05","01:00:53","1.01","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/issues/389#issuecomment-1871922377","","Byron","","[email protected]","","No","2023/12/29","11:16:09","2023/12/29","11:17:37","00:01:28","0.02","0.00","0.00"
"gitoxide","Byron","Finish all version upgrades","","Byron","","[email protected]","","No","2023/12/29","09:18:57","2023/12/29","11:16:08","01:57:11","1.95","0.00","0.00"
"gitoxide","Byron","prepare prodash for release before upgrading gitoxide dependencies","","Byron","","[email protected]","","No","2023/12/29","08:57:43","2023/12/29","09:17:15","00:19:32","0.33","0.00","0.00"
"gitoxide","Byron","work on Rustc upgrade","","Byron","","[email protected]","","No","2023/12/29","08:07:04","2023/12/29","08:32:57","00:25:53","0.43","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/208","","Byron","","[email protected]","","No","2023/12/28","07:26:25","2023/12/28","07:42:53","00:16:28","0.27","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1205#discussion_r1437251655","","Byron","","[email protected]","community","No","2023/12/27","21:34:42","2023/12/27","22:02:19","00:27:37","0.46","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/206","","Byron","","[email protected]","","No","2023/12/27","09:53:22","2023/12/27","10:30:31","00:37:09","0.62","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/205","","Byron","","[email protected]","","No","2023/12/27","09:33:00","2023/12/27","09:53:21","00:20:21","0.34","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/203#issuecomment-1869774533","","Byron","","[email protected]","","No","2023/12/26","22:10:17","2023/12/26","22:12:53","00:02:36","0.04","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/204","","Byron","","[email protected]","","No","2023/12/26","20:24:21","2023/12/26","20:58:18","00:33:57","0.57","0.00","0.00"
"maintenance","Byron","start migrating dua","","Byron","","[email protected]","","No","2023/12/26","19:50:28","2023/12/26","20:07:36","00:17:08","0.29","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/treediff-rs/pull/12#issuecomment-1869712609","","Byron","","[email protected]","","No","2023/12/26","19:41:03","2023/12/26","19:50:26","00:09:23","0.16","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/tui-crates/pull/6","","Byron","","[email protected]","","No","2023/12/26","18:47:53","2023/12/26","19:17:40","00:29:47","0.50","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1788#issuecomment-1869687763","","Byron","","[email protected]","","No","2023/12/26","18:41:07","2023/12/26","18:47:52","00:06:45","0.11","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/203#issuecomment-1869672096","","Byron","","[email protected]","","No","2023/12/26","17:12:14","2023/12/26","18:13:54","01:01:40","1.03","0.00","0.00"
"GitPython","Byron","read up on replies","","Byron","","[email protected]","","No","2023/12/26","17:05:40","2023/12/26","17:12:12","00:06:32","0.11","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/12/26","16:15:42","2023/12/26","16:17:21","00:01:39","0.03","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1789","","Byron","","[email protected]","","No","2023/12/26","16:07:35","2023/12/26","16:15:35","00:08:00","0.13","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1788","","Byron","","[email protected]","","No","2023/12/26","16:00:37","2023/12/26","16:07:35","00:06:58","0.12","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1782#issuecomment-1869440975","","Byron","","[email protected]","","No","2023/12/26","11:22:07","2023/12/26","11:27:48","00:05:41","0.09","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1787","","Byron","","[email protected]","","No","2023/12/26","11:09:01","2023/12/26","11:22:07","00:13:06","0.22","0.00","0.00"
"gitoxide","Byron","https://github.com/AmrDeveloper/GQL/pull/64#pullrequestreview-1796191921","","Byron","","[email protected]","review PR","No","2023/12/26","09:52:27","2023/12/26","09:59:58","00:07:31","0.13","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1212","","Byron","","[email protected]","","No","2023/12/26","09:31:31","2023/12/26","09:52:26","00:20:55","0.35","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/issues/462#issuecomment-1869364405","","Byron","","[email protected]","","No","2023/12/26","09:29:50","2023/12/26","09:31:31","00:01:41","0.03","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/154#issuecomment-1868797922; apply fix","","Byron","","[email protected]","","No","2023/12/25","07:59:02","2023/12/25","08:11:40","00:12:38","0.21","0.00","0.00"
"maintenance","Byron","crate a new dua release https://github.com/Byron/dua-cli/releases/tag/v2.24.0","","Byron","","[email protected]","","No","2023/12/24","10:44:12","2023/12/24","11:00:38","00:16:26","0.27","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1210#issuecomment-1868475948","","Byron","","[email protected]","community","No","2023/12/24","10:35:29","2023/12/24","10:44:11","00:08:42","0.15","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1782","","Byron","","[email protected]","","No","2023/12/24","10:29:50","2023/12/24","10:35:20","00:05:30","0.09","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1786","","Byron","","[email protected]","review PR","No","2023/12/24","10:21:05","2023/12/24","10:29:49","00:08:44","0.15","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1209","","Byron","","[email protected]","review PR","No","2023/12/24","10:16:06","2023/12/24","10:19:13","00:03:07","0.05","0.00","0.00"
"gitoxide","Byron","finalize https://github.com/Byron/gitoxide/pull/1208#pullrequestreview-1795537625","","Byron","","[email protected]","review PR","No","2023/12/24","10:03:42","2023/12/24","10:16:04","00:12:22","0.21","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1208#pullrequestreview-1795537625","","Byron","","[email protected]","review PR","No","2023/12/24","09:29:37","2023/12/24","09:51:09","00:21:32","0.36","0.00","0.00"
"gitoxide","Byron","merge https://github.com/Byron/gitoxide/pull/1205","","Byron","","[email protected]","review PR","No","2023/12/24","09:11:46","2023/12/24","09:29:36","00:17:50","0.30","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/202#pullrequestreview-1795472167","","Byron","","[email protected]","","No","2023/12/23","20:30:00","2023/12/23","21:18:47","00:48:47","0.81","0.00","0.00"
"maintenance","Byron","use gix-glob for better matching","","Byron","","[email protected]","","No","2023/12/23","18:31:45","2023/12/23","19:25:43","00:53:58","0.90","0.00","0.00"
"maintenance","Byron","simplification","","Byron","","[email protected]","","No","2023/12/23","16:15:54","2023/12/23","17:47:40","01:31:46","1.53","0.00","0.00"
"GitPython","Byron","Catchup on https://github.com/gitpython-developers/GitPython/issues/1779#issuecomment-1868285612","","Byron","","[email protected]","","No","2023/12/23","14:27:47","2023/12/23","14:29:58","00:02:11","0.04","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1785","","Byron","","[email protected]","review PR","No","2023/12/23","14:21:22","2023/12/23","14:27:46","00:06:24","0.11","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1784","","Byron","","[email protected]","review PR","No","2023/12/23","14:19:20","2023/12/23","14:21:22","00:02:02","0.03","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/discussions/461?converting=1#discussioncomment-7933777","","Byron","","[email protected]","","No","2023/12/23","13:41:50","2023/12/23","13:45:19","00:03:29","0.06","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1205","","Byron","","[email protected]","review PR","No","2023/12/23","10:31:29","2023/12/23","10:46:42","00:15:13","0.25","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1206#issuecomment-1868252334","","Byron","","[email protected]","review PR","No","2023/12/23","10:26:07","2023/12/23","10:31:29","00:05:22","0.09","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/discussions/391?converting=1#discussioncomment-7933058","","Byron","","[email protected]","","No","2023/12/23","10:21:21","2023/12/23","10:26:06","00:04:45","0.08","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/issues/389","","Byron","","[email protected]","","No","2023/12/23","10:16:02","2023/12/23","10:21:20","00:05:18","0.09","0.00","0.00"
"maintenance","Byron","read up on https://github.com/Byron/pulldown-cmark-to-cmark/issues/20#issuecomment-1867694449","","Byron","","[email protected]","","No","2023/12/23","10:14:17","2023/12/23","10:16:02","00:01:45","0.03","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1782#pullrequestreview-1795418659","","Byron","","[email protected]","review PR","No","2023/12/23","09:51:01","2023/12/23","10:14:16","00:23:15","0.39","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1776#issuecomment-1868237651","","Byron","","[email protected]","","No","2023/12/23","08:30:07","2023/12/23","09:09:54","00:39:47","0.66","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1780","","Byron","","[email protected]","review PR","No","2023/12/23","08:08:09","2023/12/23","08:30:06","00:21:57","0.37","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1779#issuecomment-1868226352 (distracted)","","Byron","","[email protected]","","No","2023/12/23","07:53:49","2023/12/23","08:08:08","00:14:19","0.24","0.00","0.00"
"maintenance","Byron","more refactoring","","Byron","","[email protected]","","No","2023/12/22","13:18:15","2023/12/22","14:02:54","00:44:39","0.74","0.00","0.00"
"maintenance","Byron","review and refactor https://github.com/Byron/dua-cli/pull/202 (part 1)","","Byron","","[email protected]","","No","2023/12/22","08:45:31","2023/12/22","11:16:47","02:31:16","2.52","0.00","0.00"
"maintenance","Byron","take a look at https://github.com/Byron/dua-cli/issues/96#issuecomment-1867056399; decide not to engage.","","Byron","","[email protected]","","No","2023/12/22","08:09:47","2023/12/22","08:11:23","00:01:36","0.03","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/202#issuecomment-1867321657","","Byron","","[email protected]","","No","2023/12/22","08:04:59","2023/12/22","08:09:46","00:04:47","0.08","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1778#pullrequestreview-1794057525","","Byron","","[email protected]","","No","2023/12/22","07:47:48","2023/12/22","08:04:59","00:17:11","0.29","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/307#issuecomment-1867306343","","Byron","","[email protected]","community","No","2023/12/22","07:31:51","2023/12/22","07:47:47","00:15:56","0.27","0.00","0.00"
"gitoxide","GitHub Sponsors","send progress report; release on Reddit","","Byron","","[email protected]","","No","2023/12/21","15:49:38","2023/12/21","16:04:49","00:15:11","0.25","0.00","0.00"
"gitoxide","GitHub Sponsors","update timesheet","","Byron","","[email protected]","","No","2023/12/21","15:45:04","2023/12/21","15:49:37","00:04:33","0.08","0.00","0.00"
"gitoxide","GitHub Sponsors","Check last years report around this time; wrap up this years last report","","Byron","","[email protected]","","No","2023/12/21","15:16:38","2023/12/21","15:44:54","00:28:16","0.47","0.00","0.00"
"gitoxide","Byron","merge https://github.com/Byron/gitoxide/pull/1203","","Byron","","[email protected]","","No","2023/12/21","12:30:13","2023/12/21","12:31:39","00:01:26","0.02","0.00","0.00"
"gitoxide","Byron","fix CI","","Byron","","[email protected]","","No","2023/12/21","11:14:26","2023/12/21","11:17:19","00:02:53","0.05","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1203","","Byron","","[email protected]","","No","2023/12/21","10:20:37","2023/12/21","10:55:30","00:34:53","0.58","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1777","","Byron","","[email protected]","","No","2023/12/21","10:06:16","2023/12/21","10:12:49","00:06:33","0.11","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1776","","Byron","","[email protected]","review PR","No","2023/12/21","09:58:20","2023/12/21","10:06:16","00:07:56","0.13","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1770#discussion_r1433724967","","Byron","","[email protected]","","No","2023/12/21","09:18:34","2023/12/21","09:31:11","00:12:37","0.21","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1775#issuecomment-1865839307","","Byron","","[email protected]","","No","2023/12/21","09:11:56","2023/12/21","09:18:33","00:06:37","0.11","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1194#issuecomment-1865761533","","Byron","","[email protected]","community","No","2023/12/21","08:27:02","2023/12/21","08:32:15","00:05:13","0.09","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/703#issuecomment-1865747779","","Byron","","[email protected]","community","No","2023/12/21","08:01:51","2023/12/21","08:27:01","00:25:10","0.42","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/703#issuecomment-1865683558","","Byron","","[email protected]","community","No","2023/12/21","07:55:18","2023/12/21","08:01:49","00:06:31","0.11","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1199","","Byron","","[email protected]","review PR","No","2023/12/21","07:53:48","2023/12/21","07:55:17","00:01:29","0.02","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1200#issuecomment-1865663541","","Byron","","[email protected]","","No","2023/12/21","07:43:58","2023/12/21","07:53:37","00:09:39","0.16","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/202#issuecomment-1865640505","","Byron","","[email protected]","","No","2023/12/21","07:41:09","2023/12/21","07:43:57","00:02:48","0.05","0.00","0.00"
"gitoxide","GitHub Sponsors","finish most of (if not all) of the montly report","","Byron","","[email protected]","","No","2023/12/20","20:35:10","2023/12/20","21:21:43","00:46:33","0.78","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1192","","Byron","","[email protected]","review PR","No","2023/12/20","19:22:54","2023/12/20","19:29:37","00:06:43","0.11","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1198","","Byron","","[email protected]","review PR","No","2023/12/20","19:01:46","2023/12/20","19:21:26","00:19:40","0.33","0.00","0.00"
"gitoxide","GitHub Sponsors","write next report (partially done, distracted)","","Byron","","[email protected]","","No","2023/12/20","16:20:51","2023/12/20","17:34:06","01:13:15","1.22","0.00","0.00"
"gitoxide","GitHub Sponsors","proof read existing report, publish it: https://github.com/Byron/gitoxide/discussions/1197","","Byron","","[email protected]","","No","2023/12/20","15:50:20","2023/12/20","16:20:50","00:30:30","0.51","0.00","0.00"
"gitoxide","Byron","fix https://github.com/Byron/gitoxide/pull/1196","","Byron","","[email protected]","","No","2023/12/20","15:45:52","2023/12/20","15:50:19","00:04:27","0.07","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1196 (distracted)","","Byron","","[email protected]","","No","2023/12/20","14:04:41","2023/12/20","15:23:41","01:19:00","1.32","0.00","0.00"
"gitoxide","Byron","finish precious files parsing and handling","","Byron","","[email protected]","","No","2023/12/20","09:58:30","2023/12/20","10:58:38","01:00:08","1.00","0.00","0.00"
"gitoxide","Byron","merge branch; prep continuing with precious files","","Byron","","[email protected]","","No","2023/12/20","09:35:18","2023/12/20","09:39:59","00:04:41","0.08","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/202#issuecomment-1864036397","","Byron","","[email protected]","","No","2023/12/20","09:05:24","2023/12/20","09:10:08","00:04:44","0.08","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1188#pullrequestreview-1790364270","","Byron","","[email protected]","review PR","No","2023/12/20","08:41:53","2023/12/20","09:04:58","00:23:05","0.38","0.00","0.00"
"gitoxide","Byron","First look at https://github.com/Byron/gitoxide/pull/1192","","Byron","","[email protected]","review PR","No","2023/12/20","08:36:12","2023/12/20","08:41:20","00:05:08","0.09","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1193#pullrequestreview-1790325757","","Byron","","[email protected]","review PR","No","2023/12/20","08:22:03","2023/12/20","08:36:10","00:14:07","0.24","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1194","","Byron","","[email protected]","","No","2023/12/20","08:17:03","2023/12/20","08:22:02","00:04:59","0.08","0.00","0.00"
"gitoxide","Byron","basic precious parsing (or all of it)","","Byron","","[email protected]","","No","2023/12/19","21:42:31","2023/12/19","22:19:49","00:37:18","0.62","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1188#pullrequestreview-1789669791","","Byron","","[email protected]","review PR","No","2023/12/19","21:28:24","2023/12/19","21:32:22","00:03:58","0.07","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1188#discussion_r1431775410; https://github.com/Byron/gitoxide/issues/703#issuecomment-1863266777","","Byron","","[email protected]","community","No","2023/12/19","19:07:29","2023/12/19","19:17:23","00:09:54","0.17","0.00","0.00"
"gitoxide","Byron","prep the additional pattern class and make existing tests work","","Byron","","[email protected]","","No","2023/12/19","17:06:38","2023/12/19","17:42:53","00:36:15","0.60","0.00","0.00"
"maintenance","Byron","look at cargo-instruments","","Byron","","[email protected]","","No","2023/12/19","16:55:00","2023/12/19","17:06:37","00:11:37","0.19","0.00","0.00"
"maintenance","Byron","Some more comments on https://github.com/Byron/dua-cli/pull/202#discussion_r1431486509","","Byron","","[email protected]","review PR","No","2023/12/19","15:24:17","2023/12/19","15:34:40","00:10:23","0.17","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1774#issuecomment-1862823430","","Byron","","[email protected]","","No","2023/12/19","15:20:27","2023/12/19","15:24:12","00:03:45","0.06","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1180#issuecomment-1862831326","","Byron","","[email protected]","community","No","2023/12/19","15:07:35","2023/12/19","15:12:10","00:04:35","0.08","0.00","0.00"
"maintenance","Byron","First basic review of https://github.com/Byron/dua-cli/pull/202#pullrequestreview-1788362675","","Byron","","[email protected]","review PR","No","2023/12/19","09:34:10","2023/12/19","10:18:15","00:44:05","0.73","0.00","0.00"
"maintenance","team rust-lang","look into solution and update comments in https://github.com/rust-lang/libz-sys/pull/163 PRs","","Byron","","[email protected]","","No","2023/12/19","09:20:29","2023/12/19","09:25:29","00:05:00","0.08","0.00","0.00"
"maintenance","team rust-lang","fill in Rust survey","","Byron","","[email protected]","","No","2023/12/19","09:08:06","2023/12/19","09:20:20","00:12:14","0.20","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1774","","Byron","","[email protected]","","No","2023/12/19","09:04:17","2023/12/19","09:08:05","00:03:48","0.06","0.00","0.00"
"maintenance","Byron","first look at https://github.com/Byron/dua-cli/pull/202","","Byron","","[email protected]","","No","2023/12/19","07:23:54","2023/12/19","07:27:49","00:03:55","0.07","0.00","0.00"
"gitoxide","Byron","finish upstream/push integration","","Byron","","[email protected]","","No","2023/12/18","20:09:27","2023/12/18","21:20:40","01:11:13","1.19","0.00","0.00"
"gitoxide","Byron","get start with hooking in upstream and push branch handling","","Byron","","[email protected]","","No","2023/12/18","18:34:02","2023/12/18","19:02:21","00:28:19","0.47","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/12/18","18:24:18","2023/12/18","18:27:40","00:03:22","0.06","0.00","0.00"
"gitoxide","Byron","wrap up gix-glob hang: https://github.com/Byron/gitoxide/issues/703#issuecomment-1861108709","","Byron","","[email protected]","","No","2023/12/18","18:15:21","2023/12/18","18:19:25","00:04:04","0.07","0.00","0.00"
"maintenance","team rust-lang","update comments with latest findings","","Byron","","[email protected]","","No","2023/12/18","18:14:27","2023/12/18","18:15:20","00:00:53","0.01","0.00","0.00"
"gitoxide","Byron","fix https://github.com/Byron/gitoxide/pull/1190 (pending)","","Byron","","[email protected]","","No","2023/12/18","15:14:54","2023/12/18","17:25:00","02:10:06","2.17","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1191#pullrequestreview-1786971291","","Byron","","[email protected]","review PR","No","2023/12/18","14:50:42","2023/12/18","15:14:53","00:24:11","0.40","0.00","0.00"
"gitoxide","Byron","reproduce haning issue: https://github.com/Byron/gitoxide/pull/1190 (distracted)","","Byron","","[email protected]","","No","2023/12/18","12:29:12","2023/12/18","13:14:23","00:45:11","0.75","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/libz-sys/pull/163; https://github.com/rust-lang/libz-sys/pull/164; https://github.com/cross-rs/cross/discussions/1387","","Byron","","[email protected]","","No","2023/12/18","10:52:58","2023/12/18","11:06:17","00:13:19","0.22","0.00","0.00"
"gitoxide","Byron","review https://github.com/Byron/gitoxide/pull/1189, see what CI.","","Byron","","[email protected]","review PR","No","2023/12/18","09:40:19","2023/12/18","10:52:53","01:12:34","1.21","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1188#pullrequestreview-1785978280","","Byron","","[email protected]","","No","2023/12/18","08:11:08","2023/12/18","08:18:34","00:07:26","0.12","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/703#issuecomment-1859669288","","Byron","","[email protected]","community","No","2023/12/18","08:07:26","2023/12/18","08:11:08","00:03:42","0.06","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1187#pullrequestreview-1785968536","","Byron","","[email protected]","review PR","No","2023/12/18","07:51:21","2023/12/18","08:07:25","00:16:04","0.27","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/703#issuecomment-1859643133","","Byron","","[email protected]","community","No","2023/12/18","07:32:54","2023/12/18","07:42:24","00:09:30","0.16","0.00","0.00"
"gitoxide","Byron","Finsih https://github.com/Byron/gitoxide/pull/1181 , just one item left","","Byron","","[email protected]","","No","2023/12/17","20:15:05","2023/12/17","21:15:21","01:00:16","1.00","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1187#pullrequestreview-1785497586","","Byron","","[email protected]","review PR","No","2023/12/17","20:07:38","2023/12/17","20:15:04","00:07:26","0.12","0.00","0.00"
"gitoxide","Byron","most tests are there; all but two are working","","Byron","","[email protected]","","No","2023/12/17","18:10:39","2023/12/17","18:59:29","00:48:50","0.81","0.00","0.00"
"gitoxide","Byron","research; write tests","","Byron","","[email protected]","","No","2023/12/17","16:14:15","2023/12/17","17:34:39","01:20:24","1.34","0.00","0.00"
"gitoxide","Byron","All tests for remote_ref pass; prep for remote tracking ref","","Byron","","[email protected]","","No","2023/12/17","14:20:00","2023/12/17","14:55:55","00:35:55","0.60","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/libz-sys/pull/162","","Byron","","[email protected]","","No","2023/12/17","14:00:40","2023/12/17","14:06:07","00:05:27","0.09","0.00","0.00"
"gitoxide","Byron","start getting into push-spec matching; relalize it's a whole big thing","","Byron","","[email protected]","","No","2023/12/17","09:34:40","2023/12/17","10:59:28","01:24:48","1.41","0.00","0.00"
"gitoxide","Byron","merge PR; cleanup and fixes before contiuning with branch handling","","Byron","","[email protected]","","No","2023/12/17","08:29:45","2023/12/17","09:24:59","00:55:14","0.92","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1185#pullrequestreview-1785350666","","Byron","","[email protected]","review PR","No","2023/12/17","07:55:49","2023/12/17","08:05:20","00:09:31","0.16","0.00","0.00"
"gitoxide","Byron","first look athttps://github.com/Byron/gitoxide/pull/1185","","Byron","","[email protected]","review PR","No","2023/12/17","07:29:22","2023/12/17","07:35:54","00:06:32","0.11","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1186","","Byron","","[email protected]","","No","2023/12/17","07:27:07","2023/12/17","07:29:21","00:02:14","0.04","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/154#issuecomment-1858931117","","Byron","","[email protected]","","No","2023/12/16","22:01:48","2023/12/16","22:11:28","00:09:40","0.16","0.00","0.00"
"gitoxide","Byron","get CI green hopefully; prep for finishing it the day after: https://github.com/Byron/gitoxide/pull/1181","","Byron","","[email protected]","","No","2023/12/16","21:43:25","2023/12/16","22:01:48","00:18:23","0.31","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/154#issuecomment-1858909022","","Byron","","[email protected]","","No","2023/12/16","20:03:25","2023/12/16","20:07:15","00:03:50","0.06","0.00","0.00"
"helix-gitoxide","Byron","reply","","Byron","","[email protected]","","No","2023/12/16","19:44:05","2023/12/16","19:51:34","00:07:29","0.12","0.00","0.00"
"radicle-gitoxide","Byron","answer Drips question","","Byron","","[email protected]","community","No","2023/12/16","19:17:15","2023/12/16","19:44:04","00:26:49","0.45","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/154#issuecomment-1858896076","","Byron","","[email protected]","","No","2023/12/16","18:59:35","2023/12/16","19:17:10","00:17:35","0.29","0.00","0.00"
"helix-gitoxide","Byron","Talk to PK","","Byron","","[email protected]","","No","2023/12/16","18:53:39","2023/12/16","18:59:35","00:05:56","0.10","0.00","0.00"
"gitoxide","Byron","finish new tests and close in on being able to implement it. Find other shortcomings of the current impl and fix them.","","Byron","","[email protected]","","No","2023/12/16","15:25:54","2023/12/16","17:29:30","02:03:36","2.06","0.00","0.00"
"gitoxide","Byron","finally understand how `push.default` works","","Byron","","[email protected]","","No","2023/12/16","14:25:56","2023/12/16","15:07:08","00:41:12","0.69","0.00","0.00"
"gitoxide","Byron","prepare test (but needs to be validated)","","Byron","","[email protected]","","No","2023/12/16","10:55:26","2023/12/16","11:26:11","00:30:45","0.51","0.00","0.00"
"gitoxide","Byron","cleanup and implementation of branch remotes","","Byron","","[email protected]","","No","2023/12/16","08:25:19","2023/12/16","10:35:55","02:10:36","2.18","0.00","0.00"
"gitoxide","Byron","prepare a new function and document a lot,","","Byron","","[email protected]","","No","2023/12/15","21:13:21","2023/12/15","21:47:15","00:33:54","0.57","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1183#issuecomment-1857724088","","Byron","","[email protected]","","No","2023/12/15","12:25:34","2023/12/15","12:28:16","00:02:42","0.05","0.00","0.00"
"gitoxide","Byron","wrap up https://github.com/Byron/gitoxide/pull/1184 and create a new patch release","","Byron","","[email protected]","community","No","2023/12/15","10:26:40","2023/12/15","10:41:41","00:15:01","0.25","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1184 (relaxed)","","Byron","","[email protected]","community","No","2023/12/15","08:43:58","2023/12/15","10:02:59","01:19:01","1.32","0.00","0.00"
"GitPython","Byron","Take a look at https://github.com/gitpython-developers/GitPython/issues/1771#issuecomment-1854622953","","Byron","","[email protected]","","No","2023/12/14","07:39:44","2023/12/14","07:41:54","00:02:10","0.04","0.00","0.00"
"gitoxide","Byron","finish branch handling docs improvements; finsih research;","","Byron","","[email protected]","","No","2023/12/13","21:57:12","2023/12/13","22:45:48","00:48:36","0.81","0.00","0.00"
"gitoxide","Byron","more research and start refactoring","","Byron","","[email protected]","","No","2023/12/13","21:05:17","2023/12/13","21:41:23","00:36:06","0.60","0.00","0.00"
"gitoxide","Byron","basics for https://github.com/Byron/gitoxide/pull/1181; research/understand the topic better","","Byron","","[email protected]","","No","2023/12/13","18:59:56","2023/12/13","19:37:36","00:37:40","0.63","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1772","","Byron","","[email protected]","","No","2023/12/13","14:36:35","2023/12/13","14:50:00","00:13:25","0.22","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1771#issuecomment-1853639445","","Byron","","[email protected]","","No","2023/12/13","11:13:23","2023/12/13","11:20:10","00:06:47","0.11","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/smmap/pull/56#pullrequestreview-1779290026","","Byron","","[email protected]","review PR","No","2023/12/13","11:11:41","2023/12/13","11:13:23","00:01:42","0.03","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1770","","Byron","","[email protected]","","No","2023/12/13","10:55:20","2023/12/13","11:11:38","00:16:18","0.27","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1769","","Byron","","[email protected]","","No","2023/12/13","10:23:23","2023/12/13","10:42:56","00:19:33","0.33","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1766#issuecomment-1853547041","","Byron","","[email protected]","","No","2023/12/13","10:16:05","2023/12/13","10:23:22","00:07:17","0.12","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1767#issuecomment-1853536638","","Byron","","[email protected]","","No","2023/12/13","10:12:48","2023/12/13","10:16:04","00:03:16","0.05","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1669#issuecomment-1853531749","","Byron","","[email protected]","","No","2023/12/13","10:02:33","2023/12/13","10:12:47","00:10:14","0.17","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1173#discussioncomment-7839804","","Byron","","[email protected]","community","No","2023/12/13","09:55:00","2023/12/13","10:02:26","00:07:26","0.12","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/200 (distracted)","","Byron","","[email protected]","review PR","No","2023/12/13","08:51:23","2023/12/13","09:25:48","00:34:25","0.57","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/196#issuecomment-1853421359","","Byron","","[email protected]","","No","2023/12/13","08:44:14","2023/12/13","08:51:22","00:07:08","0.12","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/199#issuecomment-1853413399","","Byron","","[email protected]","","No","2023/12/13","08:29:21","2023/12/13","08:44:12","00:14:51","0.25","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1179","","Byron","","[email protected]","","No","2023/12/12","18:16:26","2023/12/12","18:17:58","00:01:32","0.03","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1768; https://github.com/gitpython-developers/GitPython/pull/1767","","Byron","","[email protected]","","No","2023/12/12","18:04:11","2023/12/12","18:16:26","00:12:15","0.20","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1179","","Byron","","[email protected]","","No","2023/12/12","15:10:03","2023/12/12","15:25:05","00:15:02","0.25","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1765","","Byron","","[email protected]","","No","2023/12/12","14:57:19","2023/12/12","14:58:48","00:01:29","0.02","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1766","","Byron","","[email protected]","","No","2023/12/12","14:54:18","2023/12/12","14:57:18","00:03:00","0.05","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1178","","Byron","","[email protected]","","No","2023/12/12","14:12:24","2023/12/12","14:54:16","00:41:52","0.70","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1765#pullrequestreview-1777397946","","Byron","","[email protected]","","No","2023/12/12","13:45:15","2023/12/12","13:52:05","00:06:50","0.11","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/o2sh/onefetch/pull/1229#issuecomment-1851738313","","Byron","","[email protected]","","No","2023/12/12","11:11:19","2023/12/12","11:15:30","00:04:11","0.07","0.00","0.00"
"gitoxide","Byron","Take a look at https://github.com/abathur/lilgit/commit/fec61d63f628cf5e4d6beb44fc79ce6add882cde#diff-0d38d1e1503421fbfddac213c09243d5eec6a47822631b22458c804c7005694a via https://github.com/Byron/gitoxide/discussions/1173","","Byron","","[email protected]","community","No","2023/12/12","09:59:10","2023/12/12","10:37:23","00:38:13","0.64","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1760#issuecomment-1851567025","","Byron","","[email protected]","","No","2023/12/12","09:54:22","2023/12/12","09:59:09","00:04:47","0.08","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1762#issuecomment-1851559927","","Byron","","[email protected]","","No","2023/12/12","09:49:00","2023/12/12","09:54:21","00:05:21","0.09","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1176; https://github.com/Byron/gitoxide/pull/1147#issuecomment-1851535656","","Byron","","[email protected]","","No","2023/12/12","09:03:00","2023/12/12","09:49:00","00:46:00","0.77","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1175","","Byron","","[email protected]","review PR","No","2023/12/12","09:01:45","2023/12/12","09:03:00","00:01:15","0.02","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1174#issuecomment-1851426013; https://github.com/Byron/gitoxide/issues/1167#issuecomment-1851427863","","Byron","","[email protected]","review PR","No","2023/12/12","08:13:43","2023/12/12","08:18:48","00:05:05","0.08","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/198","","Byron","","[email protected]","review PR","No","2023/12/11","21:58:05","2023/12/11","22:00:24","00:02:19","0.04","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/197","","Byron","","[email protected]","","No","2023/12/11","19:32:30","2023/12/11","19:34:00","00:01:30","0.03","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/spenserblack/gengo/pull/261#issuecomment-1850655131","","Byron","","[email protected]","","No","2023/12/11","19:30:38","2023/12/11","19:32:29","00:01:51","0.03","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/196#issuecomment-1850347342","","Byron","","[email protected]","","No","2023/12/11","16:37:53","2023/12/11","16:47:47","00:09:54","0.17","0.00","0.00"
"gitoxide","Byron","add `gix-dir` empty crate, plan features a little more","","Byron","","[email protected]","","No","2023/12/11","13:45:36","2023/12/11","14:08:46","00:23:10","0.39","0.00","0.00"
"gitoxide","Byron","merge https://github.com/Byron/gitoxide/pull/1172#pullrequestreview-1774986643; https://github.com/Byron/gitoxide/issues/1161#issuecomment-1850008083","","Byron","","[email protected]","community","No","2023/12/11","13:40:55","2023/12/11","13:45:20","00:04:25","0.07","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/194#issuecomment-1849943940","","Byron","","[email protected]","","No","2023/12/11","13:04:22","2023/12/11","13:05:53","00:01:31","0.03","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1172#pullrequestreview-1774986643","","Byron","","[email protected]","review PR","No","2023/12/11","12:35:11","2023/12/11","13:04:22","00:29:11","0.49","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/195","","Byron","","[email protected]","","No","2023/12/11","12:27:05","2023/12/11","12:35:11","00:08:06","0.14","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1172","","Byron","","[email protected]","review PR","No","2023/12/11","10:47:46","2023/12/11","10:57:40","00:09:54","0.17","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1762#issuecomment-1849418928","","Byron","","[email protected]","","No","2023/12/11","07:20:57","2023/12/11","07:45:08","00:24:11","0.40","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/smmap/pull/55","","Byron","","[email protected]","","No","2023/12/11","07:19:51","2023/12/11","07:20:57","00:01:06","0.02","0.00","0.00"
"gitoxide","Byron","start with `gix-dir`","","Byron","","[email protected]","","No","2023/12/10","21:08:33","2023/12/10","21:23:51","00:15:18","0.26","0.00","0.00"
"gitoxide","Byron","remove git-lfs","","Byron","","[email protected]","","No","2023/12/10","20:35:52","2023/12/10","21:08:33","00:32:41","0.54","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/154#issuecomment-1849060631","","Byron","","[email protected]","","No","2023/12/10","20:19:58","2023/12/10","20:35:51","00:15:53","0.26","0.00","0.00"
"gitoxide","Byron","keep trying to fix lfs-related failures by checking in the archives in question.","","Byron","","[email protected]","","No","2023/12/10","18:27:18","2023/12/10","18:57:39","00:30:21","0.51","0.00","0.00"
"gitoxide","Byron","fix git-lfs (distracted)","","Byron","","[email protected]","","No","2023/12/10","16:56:38","2023/12/10","17:39:50","00:43:12","0.72","0.00","0.00"
"gitoxide","Byron","keep filling in tests; experiment (sometimes distracted)","","Byron","","[email protected]","","No","2023/12/10","15:12:39","2023/12/10","16:39:18","01:26:39","1.44","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/154#issuecomment-1848976942","","Byron","","[email protected]","","No","2023/12/10","14:50:07","2023/12/10","15:12:38","00:22:31","0.38","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1161#issuecomment-1848971030","","Byron","","[email protected]","community","No","2023/12/10","14:42:53","2023/12/10","14:50:07","00:07:14","0.12","0.00","0.00"
"gitoxide","Byron","investigate embedded repositories that aren't submodules","","Byron","","[email protected]","","No","2023/12/10","10:59:11","2023/12/10","11:10:58","00:11:47","0.20","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1761","","Byron","","[email protected]","review PR","No","2023/12/10","10:08:14","2023/12/10","10:14:45","00:06:31","0.11","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1762#issuecomment-1848900900","","Byron","","[email protected]","","No","2023/12/10","09:50:00","2023/12/10","10:01:50","00:11:50","0.20","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/154#issuecomment-1848898042","","Byron","","[email protected]","","No","2023/12/10","09:26:10","2023/12/10","09:49:59","00:23:49","0.40","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/192#pullrequestreview-1773989057","","Byron","","[email protected]","","No","2023/12/10","09:14:34","2023/12/10","09:26:02","00:11:28","0.19","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/193#pullrequestreview-1773985693","","Byron","","[email protected]","","No","2023/12/10","09:04:34","2023/12/10","09:14:33","00:09:59","0.17","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1170","","Byron","","[email protected]","","No","2023/12/10","08:52:40","2023/12/10","09:03:55","00:11:15","0.19","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1169#pullrequestreview-1773976325","","Byron","","[email protected]","review PR","No","2023/12/10","07:35:15","2023/12/10","08:08:12","00:32:57","0.55","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/154#issuecomment-1848668852","","Byron","","[email protected]","","No","2023/12/09","20:53:44","2023/12/09","21:14:16","00:20:32","0.34","0.00","0.00"
"gitoxide","Byron","merge https://github.com/Byron/gitoxide/pull/1168","","Byron","","[email protected]","","No","2023/12/09","20:52:31","2023/12/09","20:53:44","00:01:13","0.02","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/168","","Byron","","[email protected]","","No","2023/12/09","20:51:58","2023/12/09","20:52:30","00:00:32","0.01","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1168; https://github.com/Byron/gitoxide/issues/1167#issuecomment-1848605846","","Byron","","[email protected]","community","No","2023/12/09","19:15:00","2023/12/09","19:27:03","00:12:03","0.20","0.00","0.00"
"maintenance","Byron","Update dependencies https://github.com/Byron/dua-cli/pull/191","","Byron","","[email protected]","review PR","No","2023/12/09","19:05:26","2023/12/09","19:15:09","00:09:43","0.16","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/190","","Byron","","[email protected]","","No","2023/12/09","18:30:02","2023/12/09","18:38:05","00:08:03","0.13","0.00","0.00"
"gitoxide","Byron","declare signature of new directory-kind function; see how to integrate this into first tests.","","Byron","","[email protected]","","No","2023/12/09","11:05:58","2023/12/09","11:45:07","00:39:09","0.65","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1760","","Byron","","[email protected]","","No","2023/12/09","10:42:41","2023/12/09","10:47:24","00:04:43","0.08","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1756#issuecomment-1848350451","","Byron","","[email protected]","","No","2023/12/09","10:28:43","2023/12/09","10:42:40","00:13:57","0.23","0.00","0.00"
"maintenance","Byron","Finish PR and cut new release. https://github.com/Byron/dua-cli/pull/188#pullrequestreview-1773551980","","Byron","","[email protected]","","No","2023/12/09","09:19:39","2023/12/09","10:21:18","01:01:39","1.03","0.00","0.00"
"maintenance","Byron","first review of https://github.com/Byron/dua-cli/pull/188/files (distracted)","","Byron","","[email protected]","","No","2023/12/09","07:44:48","2023/12/09","08:46:58","01:02:10","1.04","0.00","0.00"
"gitoxide","Byron","research more about directory walk","","Byron","","[email protected]","","No","2023/12/08","21:08:31","2023/12/08","21:34:09","00:25:38","0.43","0.00","0.00"
"gitoxide","Byron","prefixed range icase; understand directory lookups","","Byron","","[email protected]","","No","2023/12/08","18:55:32","2023/12/08","19:32:44","00:37:12","0.62","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/gitdb/pull/109","","Byron","","[email protected]","review PR","No","2023/12/08","17:22:21","2023/12/08","17:23:21","00:01:00","0.02","0.00","0.00"
"maintenance","Byron","merge https://github.com/Byron/dua-cli/pull/187","","Byron","","[email protected]","","No","2023/12/08","16:08:29","2023/12/08","16:52:15","00:43:46","0.73","0.00","0.00"
"gitoxide","Byron","fix clippy","","Byron","","[email protected]","","No","2023/12/08","16:06:21","2023/12/08","16:08:29","00:02:08","0.04","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1141#pullrequestreview-1772315863","","Byron","","[email protected]","review PR","No","2023/12/08","13:49:25","2023/12/08","14:11:56","00:22:31","0.38","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1759#issuecomment-1847111803","","Byron","","[email protected]","","No","2023/12/08","13:46:31","2023/12/08","13:49:24","00:02:53","0.05","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1756#issuecomment-1847108632","","Byron","","[email protected]","","No","2023/12/08","13:37:33","2023/12/08","13:46:30","00:08:57","0.15","0.00","0.00"
"maintenance","Byron","first look at https://github.com/Byron/dua-cli/pull/187#pullrequestreview-1772200343","","Byron","","[email protected]","review PR","No","2023/12/08","12:48:00","2023/12/08","13:04:12","00:16:12","0.27","0.00","0.00"
"gitoxide","Byron","more case-insensitive entry-lookup","","Byron","","[email protected]","","No","2023/12/08","12:39:26","2023/12/08","12:47:57","00:08:31","0.14","0.00","0.00"
"gitoxide","Byron","research what's needed for `gix-dir`; start with case-insensitive index access","","Byron","","[email protected]","","No","2023/12/08","09:33:34","2023/12/08","11:31:56","01:58:22","1.97","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1759","","Byron","","[email protected]","","No","2023/12/08","09:09:22","2023/12/08","09:29:27","00:20:05","0.33","0.00","0.00"
"gitoxide","Byron","wrap up https://github.com/Byron/gitoxide/pull/1163","","Byron","","[email protected]","","No","2023/12/08","08:57:47","2023/12/08","09:02:28","00:04:41","0.08","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1746#pullrequestreview-1771646600","","Byron","","[email protected]","review PR","No","2023/12/08","07:54:46","2023/12/08","07:59:08","00:04:22","0.07","0.00","0.00"
"gitoxide","Byron","finish more issues","","Byron","","[email protected]","","No","2023/12/08","07:48:18","2023/12/08","07:54:46","00:06:28","0.11","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1163#pullrequestreview-1771631660","","Byron","","[email protected]","review PR","No","2023/12/08","07:33:57","2023/12/08","07:48:17","00:14:20","0.24","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1160#discussioncomment-7796644","","Byron","","[email protected]","community","No","2023/12/08","07:30:03","2023/12/08","07:33:00","00:02:57","0.05","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/discussions/182#discussioncomment-7794024","","Byron","","[email protected]","","No","2023/12/08","07:28:47","2023/12/08","07:30:03","00:01:16","0.02","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/89","","Byron","","[email protected]","","No","2023/12/08","07:27:39","2023/12/08","07:28:46","00:01:07","0.02","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1161#issuecomment-1846050006","","Byron","","[email protected]","community","No","2023/12/07","21:13:42","2023/12/07","21:19:34","00:05:52","0.10","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1162","","Byron","","[email protected]","","No","2023/12/07","21:12:41","2023/12/07","21:13:42","00:01:01","0.02","0.00","0.00"
"cargo-gitoxide","Byron","gix-config fix","","Byron","","[email protected]","","No","2023/12/07","20:41:43","2023/12/07","20:53:20","00:11:37","0.19","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/gitoxide/pull/1162 - nearly done - just needs CI to pass","","Byron","","[email protected]","","No","2023/12/07","18:20:57","2023/12/07","19:12:57","00:52:00","0.87","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/tui-crates/pull/4","","Byron","","[email protected]","","No","2023/12/07","15:26:14","2023/12/07","17:27:00","02:00:46","2.01","0.00","0.00"
"gitoxide","Byron","research untracked/ignored files","","Byron","","[email protected]","","No","2023/12/07","11:03:49","2023/12/07","11:35:12","00:31:23","0.52","0.00","0.00"
"cargo-gitoxide","Byron","submit actual fix: https://github.com/rust-lang/cargo/pull/13130","","Byron","","[email protected]","","No","2023/12/07","10:11:09","2023/12/07","10:23:58","00:12:49","0.21","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1141#issuecomment-1844963169","","Byron","","[email protected]","community","No","2023/12/07","10:08:17","2023/12/07","10:11:09","00:02:52","0.05","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1153#issuecomment-1844958994","","Byron","","[email protected]","community","No","2023/12/07","09:57:54","2023/12/07","10:08:16","00:10:22","0.17","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/commit/2dced34aef9b7beba3201e6a8b24d9a10a7b9a16#commitcomment-134406356","","Byron","","[email protected]","","No","2023/12/07","09:50:33","2023/12/07","09:57:53","00:07:20","0.12","0.00","0.00"
"cargo-gitoxide","Byron","first version of fix with: https://github.com/Byron/gitoxide/pull/1159","","Byron","","[email protected]","","No","2023/12/07","09:04:52","2023/12/07","09:50:12","00:45:20","0.76","0.00","0.00"
"cargo-gitoxide","Byron","work on reproduction of credentials issue","","Byron","","[email protected]","","No","2023/12/07","07:40:43","2023/12/07","08:17:51","00:37:08","0.62","0.00","0.00"
"gitoxide","Byron","Prep for retrying the fix: https://github.com/rust-lang/cargo/issues/11821#issuecomment-1844726817","","Byron","","[email protected]","","No","2023/12/07","07:17:52","2023/12/07","07:33:24","00:15:32","0.26","0.00","0.00"
"cargo-gitoxide","Byron","work through emails","","Byron","","[email protected]","","No","2023/12/06","21:16:31","2023/12/06","21:18:13","00:01:42","0.03","0.00","0.00"
"cargo-gitoxide","Byron","https://github.com/rust-lang/cargo/pull/13117#issuecomment-1843362118","","Byron","","[email protected]","","No","2023/12/06","18:36:41","2023/12/06","18:38:27","00:01:46","0.03","0.00","0.00"
"cargo-gitoxide","Byron","try to publish gix; run into a lot of rate limits; run into strange locking issues that required selective cargo.lock update. Finalize https://github.com/rust-lang/cargo/pull/13117","","Byron","","[email protected]","","No","2023/12/06","16:00:49","2023/12/06","17:09:55","01:09:06","1.15","0.00","0.00"
"cargo-gitoxide","Byron","leave `stderr` visible by default, and adjust cargo accordingly.","","Byron","","[email protected]","","No","2023/12/06","15:37:55","2023/12/06","15:48:27","00:10:32","0.18","0.00","0.00"
"cargo-gitoxide","Byron","frst test-run of fixed `gix`","","Byron","","[email protected]","","No","2023/12/06","15:10:26","2023/12/06","15:37:54","00:27:28","0.46","0.00","0.00"
"cargo-gitoxide","Byron","basically finish the stderr controls, which now do the opposite if what happened before. Not sure what's right here, maybe being more like git is better?","","Byron","","[email protected]","","No","2023/12/06","13:28:02","2023/12/06","14:21:03","00:53:01","0.88","0.00","0.00"
"cargo-gitoxide","Byron","prep wiring of stderr controls (distracted)","","Byron","","[email protected]","","No","2023/12/06","12:41:04","2023/12/06","13:16:41","00:35:37","0.59","0.00","0.00"
"cargo-gitoxide","Byron","get started with https://github.com/Byron/gitoxide/pull/1156","","Byron","","[email protected]","","No","2023/12/06","11:10:18","2023/12/06","11:26:15","00:15:57","0.27","0.00","0.00"
"maintenance","Byron","try to fix CI","","Byron","","[email protected]","","No","2023/12/06","11:03:07","2023/12/06","11:10:08","00:07:01","0.12","0.00","0.00"
"maintenance","Byron","prepare https://github.com/frewsxcv/rust-crates-index/pull/156","","Byron","","[email protected]","","No","2023/12/06","10:43:25","2023/12/06","11:03:06","00:19:41","0.33","0.00","0.00"
"gitoxide","Byron","prep new PR: https://github.com/Byron/gitoxide/pull/1155","","Byron","","[email protected]","","No","2023/12/06","09:30:10","2023/12/06","09:32:54","00:02:44","0.05","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1154","","Byron","","[email protected]","review PR","No","2023/12/06","09:19:16","2023/12/06","09:30:08","00:10:52","0.18","0.00","0.00"
"gitoxide","Byron","try to fix release build","","Byron","","[email protected]","review PR","No","2023/12/06","08:06:00","2023/12/06","08:16:28","00:10:28","0.17","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/releases/tag/v2.21.0","","Byron","","[email protected]","","No","2023/12/06","07:56:50","2023/12/06","08:03:39","00:06:49","0.11","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/186#pullrequestreview-1766782084","","Byron","","[email protected]","","No","2023/12/06","07:42:23","2023/12/06","07:56:49","00:14:26","0.24","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/185#pullrequestreview-1766747701","","Byron","","[email protected]","","No","2023/12/06","07:23:35","2023/12/06","07:33:31","00:09:56","0.17","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1150#discussioncomment-7772296","","Byron","","[email protected]","community","No","2023/12/06","07:19:56","2023/12/06","07:22:58","00:03:02","0.05","0.00","0.00"
"gitoxide","Byron","First look at https://github.com/Byron/gitoxide/pull/1153#issuecomment-1841604328","","Byron","","[email protected]","review PR","No","2023/12/05","21:48:14","2023/12/05","22:01:00","00:12:46","0.21","0.00","0.00"
"cargo-gitoxide","Byron","https://github.com/rust-lang/cargo/issues/11821#issuecomment-1841588646","","Byron","","[email protected]","","No","2023/12/05","21:37:54","2023/12/05","21:48:12","00:10:18","0.17","0.00","0.00"
"cargo-gitoxide","Byron","Get https://github.com/rust-lang/cargo/pull/13117 going","","Byron","","[email protected]","","No","2023/12/05","21:03:59","2023/12/05","21:24:22","00:20:23","0.34","0.00","0.00"
"gitoxide","Byron","merge PR, rebase","","Byron","","[email protected]","","No","2023/12/05","19:25:13","2023/12/05","19:26:57","00:01:44","0.03","0.00","0.00"
"cargo-gitoxide","Byron","https://github.com/rust-lang/cargo/issues/11821#issuecomment-1841364448","","Byron","","[email protected]","","No","2023/12/05","19:17:00","2023/12/05","19:24:36","00:07:36","0.13","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1756#issuecomment-1840718152","","Byron","","[email protected]","","No","2023/12/05","13:19:33","2023/12/05","13:40:43","00:21:10","0.35","0.00","0.00"
"gitoxide","Byron","Update winnow","","Byron","","[email protected]","","No","2023/12/05","13:10:43","2023/12/05","13:19:33","00:08:50","0.15","0.00","0.00"
"gitoxide","Byron","Wrap up fun `gix rev parse` conversions, and fix some bugs.","","Byron","","[email protected]","","No","2023/12/05","12:36:25","2023/12/05","13:10:41","00:34:16","0.57","0.00","0.00"
"gitoxide","Byron","feature planning; impl fun-feature for obtaining objects via rev-parse (nearly done)","","Byron","","[email protected]","","No","2023/12/05","08:57:21","2023/12/05","11:33:00","02:35:39","2.59","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1758","","Byron","","[email protected]","","No","2023/12/05","07:40:02","2023/12/05","07:45:39","00:05:37","0.09","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1150","","Byron","","[email protected]","community","No","2023/12/05","07:38:44","2023/12/05","07:40:02","00:01:18","0.02","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1757#issuecomment-1839184060","","Byron","","[email protected]","","No","2023/12/04","18:55:13","2023/12/04","19:00:47","00:05:34","0.09","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1109#issuecomment-1838942846","","Byron","","[email protected]","community","No","2023/12/04","16:54:20","2023/12/04","16:56:22","00:02:02","0.03","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/12/04","09:58:23","2023/12/04","10:07:56","00:09:33","0.16","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1756#issuecomment-1838101270","","Byron","","[email protected]","","No","2023/12/04","09:00:31","2023/12/04","09:58:13","00:57:42","0.96","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1745#issuecomment-1838018193","","Byron","","[email protected]","","No","2023/12/04","08:54:04","2023/12/04","09:00:30","00:06:26","0.11","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1125#issuecomment-1837585775","","Byron","","[email protected]","community","No","2023/12/03","21:00:55","2023/12/03","21:06:52","00:05:57","0.10","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1147","","Byron","","[email protected]","review PR","No","2023/12/03","12:25:43","2023/12/03","12:37:29","00:11:46","0.20","0.00","0.00"
"cargo-gitoxide","Byron","finish update: https://rust-lang.zulipchat.com/#narrow/stream/246057-t-cargo/topic/.60gitoxide.60.20integration.20updates/near/405640182","","Byron","","[email protected]","","No","2023/12/03","11:45:42","2023/12/03","11:49:07","00:03:25","0.06","0.00","0.00"
"cargo-gitoxide","Byron","progress update (interrupted)","","Byron","","[email protected]","","No","2023/12/03","11:04:23","2023/12/03","11:23:56","00:19:33","0.33","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1755#issuecomment-1837422458","","Byron","","[email protected]","","No","2023/12/03","10:22:38","2023/12/03","10:28:26","00:05:48","0.10","0.00","0.00"
"gitoxide","Byron","Read git mailing list about Git Summit https://lore.kernel.org/git/[email protected]/","","Byron","","[email protected]","","No","2023/12/03","09:25:00","2023/12/03","10:22:37","00:57:37","0.96","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1755","","Byron","","[email protected]","","No","2023/12/03","08:22:27","2023/12/03","08:29:01","00:06:34","0.11","0.00","0.00"
"cargo-gitoxide","Byron","https://github.com/rust-lang/cargo/issues/8407#issuecomment-1837391559","","Byron","","[email protected]","","No","2023/12/03","07:43:31","2023/12/03","08:08:00","00:24:29","0.41","0.00","0.00"
"gitoxide","Byron","fix tests on windows","","Byron","","[email protected]","","No","2023/12/02","19:40:23","2023/12/02","20:01:13","00:20:50","0.35","0.00","0.00"
"gitoxide","Byron","finish `diff.external`; integate with blob-diff platform","","Byron","","[email protected]","","No","2023/12/02","14:57:39","2023/12/02","17:24:19","02:26:40","2.44","0.00","0.00"
"gitoxide","Byron","finish external command preparation and tests","","Byron","","[email protected]","","No","2023/12/02","09:59:59","2023/12/02","11:26:38","01:26:39","1.44","0.00","0.00"
"gitoxide","Byron","CLI invocation and testing preps","","Byron","","[email protected]","","No","2023/12/02","08:40:59","2023/12/02","09:47:07","01:06:08","1.10","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1125#issuecomment-1837064676","","Byron","","[email protected]","community","No","2023/12/02","07:44:40","2023/12/02","07:57:26","00:12:46","0.21","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1754","","Byron","","[email protected]","","No","2023/12/02","07:32:55","2023/12/02","07:44:38","00:11:43","0.20","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/discussions/387?converting=1","","Byron","","[email protected]","","No","2023/12/02","07:27:29","2023/12/02","07:32:54","00:05:25","0.09","0.00","0.00"
"gitoxide","Byron","double-check logic, wrap up conversion mode","","Byron","","[email protected]","","No","2023/12/01","20:38:24","2023/12/01","20:48:41","00:10:17","0.17","0.00","0.00"
"gitoxide","Byron","implement conversion mode","","Byron","","[email protected]","","No","2023/12/01","18:33:38","2023/12/01","19:34:31","01:00:53","1.01","0.00","0.00"
"gitoxide","Byron","on Zulip","","Byron","","[email protected]","Mentorship","No","2023/12/01","18:27:38","2023/12/01","18:33:37","00:05:59","0.10","0.00","0.00"
"gitoxide","Byron","quick & dirty (and to be refined) impl of ToGit conversion mode","","Byron","","[email protected]","","No","2023/12/01","13:38:33","2023/12/01","14:15:53","00:37:20","0.62","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1143#issuecomment-1836051540","","Byron","","[email protected]","community","No","2023/12/01","13:23:50","2023/12/01","13:38:02","00:14:12","0.24","0.00","0.00"
"cargo-gitoxide","Byron","https://github.com/rust-lang/cargo/issues/8407#issuecomment-1835826822","","Byron","","[email protected]","","No","2023/12/01","11:05:00","2023/12/01","11:15:03","00:10:03","0.17","0.00","0.00"
"gitoxide","Byron","Merge https://github.com/Byron/gitoxide/pull/1142","","Byron","","[email protected]","review PR","No","2023/12/01","11:03:14","2023/12/01","11:05:54","00:02:40","0.04","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1745#issuecomment-1835808959","","Byron","","[email protected]","","No","2023/12/01","10:50:53","2023/12/01","11:03:02","00:12:09","0.20","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1751","","Byron","","[email protected]","","No","2023/12/01","10:26:56","2023/12/01","10:50:52","00:23:56","0.40","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1753","","Byron","","[email protected]","","No","2023/12/01","10:18:16","2023/12/01","10:26:56","00:08:40","0.14","0.00","0.00"
"GitPython","Byron","catch up with everything; https://github.com/gitpython-developers/GitPython/pull/1752","","Byron","","[email protected]","","No","2023/12/01","10:08:56","2023/12/01","10:18:16","00:09:20","0.16","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1135","","Byron","","[email protected]","review PR","No","2023/12/01","09:21:52","2023/12/01","10:08:52","00:47:00","0.78","0.00","0.00"
"maintenance","team rust-lang","checkup on https://github.com/rust-lang/flate2-rs/discussions/385#discussioncomment-7722644","","Byron","","[email protected]","","No","2023/12/01","08:10:30","2023/12/01","08:16:00","00:05:30","0.09","0.00","0.00"
"gitoxide","Byron","First look at https://github.com/Byron/gitoxide/pull/1141","","Byron","","[email protected]","review PR, community","No","2023/11/30","20:50:47","2023/11/30","21:03:38","00:12:51","0.21","0.00","0.00"
"gitoxide","Byron","prepare some of the tests for conversion mode","","Byron","","[email protected]","","No","2023/11/30","16:06:24","2023/11/30","17:32:05","01:25:41","1.43","0.00","0.00"
"gitoxide","Byron","get started with conversion modes","","Byron","","[email protected]","","No","2023/11/30","13:56:19","2023/11/30","14:17:59","00:21:40","0.36","0.00","0.00"
"gitoxide","Byron","research how diff-processing works to see what conversions should be supported","","Byron","","[email protected]","","No","2023/11/30","12:22:22","2023/11/30","13:11:27","00:49:05","0.82","0.00","0.00"
"gitoxide","Byron","try textconv execution","","Byron","","[email protected]","","No","2023/11/30","11:15:04","2023/11/30","11:28:24","00:13:20","0.22","0.00","0.00"
"gitoxide","Byron","finish usage of driver config keys and tests","","Byron","","[email protected]","","No","2023/11/30","11:01:07","2023/11/30","11:15:03","00:13:56","0.23","0.00","0.00"
"gitoxide","Byron","tests for drivers and keys for it (nearly done)","","Byron","","[email protected]","","No","2023/11/30","09:24:11","2023/11/30","10:44:26","01:20:15","1.34","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1135#pullrequestreview-1756747298","","Byron","","[email protected]","review PR","No","2023/11/30","07:27:23","2023/11/30","07:50:39","00:23:16","0.39","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1746#discussion_r1410209043","","Byron","","[email protected]","","No","2023/11/30","07:21:28","2023/11/30","07:27:22","00:05:54","0.10","0.00","0.00"
"gitoxide","Byron","Try to fix performance bottleneck by re-using the diff-cache","","Byron","","[email protected]","","No","2023/11/29","20:32:15","2023/11/29","21:02:40","00:30:25","0.51","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/discussions/184?converting=1#discussioncomment-7709102","","Byron","","[email protected]","","No","2023/11/29","20:29:56","2023/11/29","20:32:09","00:02:13","0.04","0.00","0.00"
"gitoxide","Byron","finish integrating the new diff-cache up to `gix`; some perf testing","","Byron","","[email protected]","","No","2023/11/29","15:58:05","2023/11/29","17:29:05","01:31:00","1.52","0.00","0.00"
"helix-gitoxide","Byron","take a look at https://github.com/helix-editor/helix/issues/6867#issuecomment-1832048412 but decide not to engage","","Byron","","[email protected]","","No","2023/11/29","15:55:56","2023/11/29","15:58:04","00:02:08","0.04","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1745","","Byron","","[email protected]","","No","2023/11/29","13:26:18","2023/11/29","14:14:22","00:48:04","0.80","0.00","0.00"
"GitPython","Byron","prep review of windows CI PR (somewhat distracted)","","Byron","","[email protected]","","No","2023/11/29","10:49:21","2023/11/29","11:38:48","00:49:27","0.82","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1748","","Byron","","[email protected]","","No","2023/11/29","10:01:10","2023/11/29","10:07:00","00:05:50","0.10","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1749","","Byron","","[email protected]","","No","2023/11/29","09:53:03","2023/11/29","10:01:09","00:08:06","0.14","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1738#issuecomment-1831472547","","Byron","","[email protected]","","No","2023/11/29","09:48:54","2023/11/29","09:53:03","00:04:09","0.07","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1135#pullrequestreview-1754676174","","Byron","","[email protected]","review PR","No","2023/11/29","09:16:42","2023/11/29","09:48:54","00:32:12","0.54","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/181","","Byron","","[email protected]","","No","2023/11/29","09:15:23","2023/11/29","09:16:26","00:01:03","0.02","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/pull/458;","","Byron","","[email protected]","","No","2023/11/29","09:13:28","2023/11/29","09:15:22","00:01:54","0.03","0.00","0.00"
"Google APIs","Byron","Have a look at https://github.com/Byron/google-apis-rs/issues/290#issuecomment-1831127189","","Byron","","[email protected]","","No","2023/11/29","08:17:35","2023/11/29","08:18:07","00:00:32","0.01","0.00","0.00"
"GitPython","Byron","review https://github.com/gitpython-developers/GitPython/pull/1746","","Byron","","[email protected]","review PR","No","2023/11/29","07:59:32","2023/11/29","08:16:41","00:17:09","0.29","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1137","","Byron","","[email protected]","community","No","2023/11/29","07:32:55","2023/11/29","07:44:20","00:11:25","0.19","0.00","0.00"
"gitoxide","Byron","finish part of diff driver configuration parsing","","Byron","","[email protected]","","No","2023/11/28","21:36:10","2023/11/28","22:23:18","00:47:08","0.79","0.00","0.00"
"gitoxide","Byron","try tri-state binary flag and adjusted logic","","Byron","","[email protected]","","No","2023/11/28","21:01:11","2023/11/28","21:23:18","00:22:07","0.37","0.00","0.00"
"gitoxide","Byron","continue parsing all data for passing to plumbing","","Byron","","[email protected]","","No","2023/11/28","19:17:13","2023/11/28","19:59:04","00:41:51","0.70","0.00","0.00"
"gitoxide","Byron","Reply to alvenix","","Byron","","[email protected]","community","No","2023/11/28","18:50:33","2023/11/28","19:08:53","00:18:20","0.31","0.00","0.00"
"gitoxide","Byron","finalize tracker interagration with blob platform; start integrating it into gix","","Byron","","[email protected]","","No","2023/11/28","15:08:05","2023/11/28","16:17:46","01:09:41","1.16","0.00","0.00"
"gitoxide","Byron","rename tracker uses diff platform","","Byron","","[email protected]","community","No","2023/11/28","13:53:33","2023/11/28","14:15:51","00:22:18","0.37","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/discussions/457","","Byron","","[email protected]","","No","2023/11/28","13:49:10","2023/11/28","13:53:21","00:04:11","0.07","0.00","0.00"
"gitoxide","Byron","https://rust-lang.zulipchat.com/#narrow/dm/256770,452253-dm/near/404628276","","Byron","","[email protected]","community","No","2023/11/28","13:31:08","2023/11/28","13:48:33","00:17:25","0.29","0.00","0.00"
"gitoxide","Byron","get tracker to (nearly) use the diff platform","","Byron","","[email protected]","","No","2023/11/28","10:16:22","2023/11/28","11:34:57","01:18:35","1.31","0.00","0.00"
"gitoxide","Byron","wrap-up the diff platform (without external command generation)","","Byron","","[email protected]","","No","2023/11/28","09:12:29","2023/11/28","09:42:17","00:29:48","0.50","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1744#issuecomment-1829304938","","Byron","","[email protected]","","No","2023/11/28","08:59:20","2023/11/28","09:12:27","00:13:07","0.22","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/issues/455#issuecomment-1829238813","","Byron","","[email protected]","","No","2023/11/28","08:05:11","2023/11/28","08:14:51","00:09:40","0.16","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1744#issuecomment-1829203015","","Byron","","[email protected]","","No","2023/11/28","07:33:44","2023/11/28","07:37:07","00:03:23","0.06","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1743#issuecomment-1828643613","","Byron","","[email protected]","","No","2023/11/27","22:12:20","2023/11/27","22:26:57","00:14:37","0.24","0.00","0.00"
"gitoxide","Byron","finish the API of hte diff platform, but some tests still missing","","Byron","","[email protected]","","No","2023/11/27","21:42:26","2023/11/27","22:12:20","00:29:54","0.50","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1134/commits","","Byron","","[email protected]","review PR","No","2023/11/27","21:41:14","2023/11/27","21:42:18","00:01:04","0.02","0.00","0.00"
"gitoxide","Byron","try to solve the 'sink' problem, but probably can't be done like that.","","Byron","","[email protected]","","No","2023/11/27","20:49:33","2023/11/27","21:16:36","00:27:03","0.45","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1134#discussion_r1406607357","","Byron","","[email protected]","review PR, community","No","2023/11/27","19:47:15","2023/11/27","19:50:27","00:03:12","0.05","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1744#issuecomment-1828351128","","Byron","","[email protected]","","No","2023/11/27","18:53:01","2023/11/27","19:02:17","00:09:16","0.15","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1743#issuecomment-1828337273","","Byron","","[email protected]","","No","2023/11/27","18:42:23","2023/11/27","18:53:01","00:10:38","0.18","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1134#pullrequestreview-1750996954","","Byron","","[email protected]","review PR","No","2023/11/27","18:33:39","2023/11/27","18:38:43","00:05:04","0.08","0.00","0.00"
"gitoxide","Byron","primary diff method nearly done, despite some tests still missing","","Byron","","[email protected]","","No","2023/11/27","16:49:00","2023/11/27","17:31:44","00:42:44","0.71","0.00","0.00"
"gitoxide","Byron","more API tweaking, it seems to settle","","Byron","","[email protected]","","No","2023/11/27","15:01:23","2023/11/27","16:36:31","01:35:08","1.59","0.00","0.00"
"gitoxide","Byron","more fiddeling with the API of the diff platform, to make it play well with","","Byron","","[email protected]","","No","2023/11/27","13:40:20","2023/11/27","14:20:58","00:40:38","0.68","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1743#issuecomment-1827755014","","Byron","","[email protected]","","No","2023/11/27","13:24:16","2023/11/27","13:39:31","00:15:15","0.25","0.00","0.00"
"gitoxide","Byron","more tests; prepare API to deal with complexity of external diff programs.","","Byron","","[email protected]","","No","2023/11/27","10:15:13","2023/11/27","11:33:01","01:17:48","1.30","0.00","0.00"
"gitoxide","Byron","improve platform and start diff platform testing","","Byron","","[email protected]","community","No","2023/11/27","08:56:36","2023/11/27","10:11:05","01:14:29","1.24","0.00","0.00"
"gitoxide","Byron","https://github.com/AmrDeveloper/GQL/pull/43#pullrequestreview-1749410553","","Byron","","[email protected]","community","No","2023/11/26","21:13:59","2023/11/26","21:25:27","00:11:28","0.19","0.00","0.00"
"gitoxide","Byron","prep for platform tests and implementation; fix windows tests","","Byron","","[email protected]","","No","2023/11/26","18:26:05","2023/11/26","19:20:21","00:54:16","0.90","0.00","0.00"
"gitoxide","Byron","more tests; think about binary buffer checks","","Byron","","[email protected]","","No","2023/11/26","16:25:13","2023/11/26","17:41:13","01:16:00","1.27","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1743#issuecomment-1826812598","","Byron","","[email protected]","","No","2023/11/26","16:22:07","2023/11/26","16:24:09","00:02:02","0.03","0.00","0.00"
"gitoxide","Byron","https://github.com/AmrDeveloper/GQL/pull/23#issuecomment-1826722423","","Byron","","[email protected]","outreach","No","2023/11/26","09:29:00","2023/11/26","09:32:59","00:03:59","0.07","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/26","09:23:50","2023/11/26","09:29:00","00:05:10","0.09","0.00","0.00"
"gitoxide","Byron","merge PR; rebase gix-status","","Byron","","[email protected]","","No","2023/11/26","08:52:59","2023/11/26","09:11:08","00:18:09","0.30","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/discussions/385#discussioncomment-7668556","","Byron","","[email protected]","","No","2023/11/25","22:35:00","2023/11/25","22:37:16","00:02:16","0.04","0.00","0.00"
"gitoxide","Byron","finish https://github.com/Byron/gitoxide/pull/1130, make it work on windows","","Byron","","[email protected]","community","No","2023/11/25","22:15:00","2023/11/25","22:35:00","00:20:00","0.33","0.00","0.00"
"gitoxide","Byron","finish https://github.com/Byron/gitoxide/pull/1130 (slightly distracted)","","Byron","","[email protected]","","No","2023/11/25","18:35:20","2023/11/25","21:24:50","02:49:30","2.83","0.00","0.00"
"gitoxide","Byron","expose a lot of additional context to spawned commands (distracted)","","Byron","","[email protected]","","No","2023/11/25","15:15:48","2023/11/25","17:33:52","02:18:04","2.30","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1129#issuecomment-1826333332","","Byron","","[email protected]","community","No","2023/11/25","15:04:15","2023/11/25","15:07:36","00:03:21","0.06","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/discussions/180#discussioncomment-7666336","","Byron","","[email protected]","","No","2023/11/25","15:01:50","2023/11/25","15:04:15","00:02:25","0.04","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/179#issuecomment-1826325698","","Byron","","[email protected]","","No","2023/11/25","14:33:42","2023/11/25","15:01:32","00:27:50","0.46","0.00","0.00"
"gitoxide","Byron","Figure out how to best invoke commands, turns out it's alos more complicated to be 100% compatible","","Byron","","[email protected]","","No","2023/11/25","10:57:33","2023/11/25","11:38:35","00:41:02","0.68","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1130;https://github.com/Byron/gitoxide/issues/1129#issuecomment-1826251929","","Byron","","[email protected]","community","No","2023/11/25","08:54:09","2023/11/25","09:19:41","00:25:32","0.43","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/179#pullrequestreview-1748798298","","Byron","","[email protected]","","No","2023/11/25","08:45:51","2023/11/25","08:54:08","00:08:17","0.14","0.00","0.00"
"gitoxide","Byron","test all relevant worktree attributes, binary, external filter","","Byron","","[email protected]","","No","2023/11/24","20:15:53","2023/11/24","20:45:00","00:29:07","0.49","0.00","0.00"
"gitoxide","Byron","fixup test, get its partial form nearly to work.","","Byron","","[email protected]","","No","2023/11/24","17:19:48","2023/11/24","17:44:09","00:24:21","0.41","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/pulldown-cmark-to-cmark/issues/63#issuecomment-1825875672","","Byron","","[email protected]","","No","2023/11/24","17:12:46","2023/11/24","17:19:36","00:06:50","0.11","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/pulldown-cmark-to-cmark/pull/62","","Byron","","[email protected]","","No","2023/11/24","16:52:45","2023/11/24","17:00:54","00:08:09","0.14","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1125#issuecomment-1825590223","","Byron","","[email protected]","","No","2023/11/24","12:06:42","2023/11/24","13:14:34","01:07:52","1.13","0.00","0.00"
"gitoxide","Byron","start addressing https://github.com/Byron/gitoxide/issues/1125","","Byron","","[email protected]","community","No","2023/11/24","11:13:03","2023/11/24","11:33:46","00:20:43","0.35","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/24","10:47:34","2023/11/24","10:48:38","00:01:04","0.02","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/179#pullrequestreview-1747412562","","Byron","","[email protected]","","No","2023/11/24","07:52:15","2023/11/24","08:13:04","00:20:49","0.35","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/pulldown-cmark-to-cmark/pull/62#pullrequestreview-1747393880","","Byron","","[email protected]","","No","2023/11/24","07:44:38","2023/11/24","07:52:14","00:07:36","0.13","0.00","0.00"
"gitoxide","Byron","nearly done with running textconf filters","","Byron","","[email protected]","","No","2023/11/23","20:25:36","2023/11/23","21:07:51","00:42:15","0.70","0.00","0.00"
"gitoxide","Byron","prepare test for attributes","","Byron","","[email protected]","","No","2023/11/23","18:40:31","2023/11/23","19:23:55","00:43:24","0.72","0.00","0.00"
"gitoxide","Byron","try to fill in tests for worktree filters (somewhat distracted)","","Byron","","[email protected]","","No","2023/11/23","15:49:18","2023/11/23","17:26:51","01:37:33","1.63","0.00","0.00"
"gitoxide","Byron","prep next test for size limit","","Byron","","[email protected]","","No","2023/11/23","14:52:13","2023/11/23","15:10:00","00:17:47","0.30","0.00","0.00"
"gitoxide","Byron","First basic implementation, with size check","","Byron","","[email protected]","","No","2023/11/23","12:41:18","2023/11/23","13:16:45","00:35:27","0.59","0.00","0.00"
"gitoxide","Byron","continue implementation and test, no filters, no conversions; with big-object check (distracted)","","Byron","","[email protected]","","No","2023/11/23","10:31:18","2023/11/23","11:52:50","01:21:32","1.36","0.00","0.00"
"gitoxide","Byron","","","Byron","","[email protected]","community","No","2023/11/23","09:31:27","2023/11/23","09:34:34","00:03:07","0.05","0.00","0.00"
"gitoxide","Byron","improve safety (distracted)","","Byron","","[email protected]","community","No","2023/11/23","09:14:29","2023/11/23","09:31:26","00:16:57","0.28","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/open-rs/pull/86#issuecomment-1823429440","","Byron","","[email protected]","","No","2023/11/22","20:50:18","2023/11/22","20:56:22","00:06:04","0.10","0.00","0.00"
"gitoxide","Byron","continue with blob-diffing","","Byron","","[email protected]","","No","2023/11/22","11:57:58","2023/11/22","13:15:16","01:17:18","1.29","0.00","0.00"
"gitoxide","Byron","get back into diff-impl","","Byron","","[email protected]","","No","2023/11/22","11:11:45","2023/11/22","11:18:16","00:06:31","0.11","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1822470353","","Byron","","[email protected]","community","No","2023/11/22","11:07:38","2023/11/22","11:11:44","00:04:06","0.07","0.00","0.00"
"gitoxide","GitHub Sponsors","send report to sponsors; post on reddit","","Byron","","[email protected]","","No","2023/11/22","08:41:00","2023/11/22","08:57:29","00:16:29","0.27","0.00","0.00"
"gitoxide","GitHub Sponsors","finish report","","Byron","","[email protected]","","No","2023/11/22","08:10:22","2023/11/22","08:41:07","00:30:45","0.51","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/open-rs/issues/85#issuecomment-1822205140","","Byron","","[email protected]","","No","2023/11/22","07:48:32","2023/11/22","07:49:53","00:01:21","0.02","0.00","0.00"
"gitoxide","GitHub Sponsors","keep writing report (somewhat distracted)","","Byron","","[email protected]","","No","2023/11/21","20:45:23","2023/11/21","21:26:47","00:41:24","0.69","0.00","0.00"
"gitoxide","GitHub Sponsors","first proof read; start outline","","Byron","","[email protected]","","No","2023/11/21","19:54:41","2023/11/21","20:32:35","00:37:54","0.63","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/21","19:52:57","2023/11/21","19:54:39","00:01:42","0.03","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/178#issuecomment-1820780913","","Byron","","[email protected]","","No","2023/11/21","12:54:18","2023/11/21","12:58:12","00:03:54","0.07","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/178#issuecomment-1820419140","","Byron","","[email protected]","","No","2023/11/21","08:54:15","2023/11/21","09:07:39","00:13:24","0.22","0.00","0.00"
"maintenance","Byron","check failing build","","Byron","","[email protected]","","No","2023/11/20","10:46:15","2023/11/20","10:47:51","00:01:36","0.03","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/pull/177#issuecomment-1818355590","","Byron","","[email protected]","","No","2023/11/20","07:58:14","2023/11/20","08:12:26","00:14:12","0.24","0.00","0.00"
"gitoxide","Byron","merge pending PR","","Byron","","[email protected]","","No","2023/11/19","18:41:27","2023/11/19","18:42:41","00:01:14","0.02","0.00","0.00"
"gitoxide","Byron","get https://github.com/Byron/gitoxide/pull/1123 to be mergable","","Byron","","[email protected]","","No","2023/11/19","18:13:41","2023/11/19","18:32:45","00:19:04","0.32","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1123","","Byron","","[email protected]","review PR","No","2023/11/19","16:39:33","2023/11/19","16:50:30","00:10:57","0.18","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/19","16:35:42","2023/11/19","16:39:32","00:03:50","0.06","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1121#issuecomment-1817889885","","Byron","","[email protected]","","No","2023/11/19","16:27:48","2023/11/19","16:35:41","00:07:53","0.13","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/issues/422#issuecomment-1817887862","","Byron","","[email protected]","","No","2023/11/19","16:23:56","2023/11/19","16:27:47","00:03:51","0.06","0.00","0.00"
"gitoxide","Byron","start with tests","","Byron","","[email protected]","","No","2023/11/18","19:14:32","2023/11/18","19:25:52","00:11:20","0.19","0.00","0.00"
"gitoxide","Byron","get to the point where 'only' the filter pipeline needs implementing (before being able to diff)","","Byron","","[email protected]","","No","2023/11/18","18:27:22","2023/11/18","18:44:32","00:17:10","0.29","0.00","0.00"
"gitoxide","Byron","Zulip message about new check-cfg feature","","Byron","","[email protected]","community","No","2023/11/18","18:08:07","2023/11/18","18:17:51","00:09:44","0.16","0.00","0.00"
"gitoxide","Byron","keep working on the datamodel that allows efficient diffing with a cache","","Byron","","[email protected]","","No","2023/11/18","15:44:26","2023/11/18","17:24:46","01:40:20","1.67","0.00","0.00"
"gitoxide","Byron","keep digging into diffing; easy object header access via gix-object to support avoiding diffing big objects.","","Byron","","[email protected]","","No","2023/11/18","13:01:38","2023/11/18","15:13:34","02:11:56","2.20","0.00","0.00"
"gitoxide","Byron","Start sketching impl","","Byron","","[email protected]","","No","2023/11/18","12:30:00","2023/11/18","12:48:22","00:18:22","0.31","0.00","0.00"
"gitoxide","Byron","continue figuring out the data structures needed to deal with diff-processing","","Byron","","[email protected]","","No","2023/11/18","08:58:43","2023/11/18","11:09:02","02:10:19","2.17","0.00","0.00"
"gitoxide","Byron","wrap up for the day","","Byron","","[email protected]","","No","2023/11/17","21:31:48","2023/11/17","21:49:36","00:17:48","0.30","0.00","0.00"
"gitoxide","Byron","keep putting the diff engine together","","Byron","","[email protected]","","No","2023/11/17","20:41:32","2023/11/17","21:21:58","00:40:26","0.67","0.00","0.00"
"gitoxide","Byron","try to get the data model right for textconv","","Byron","","[email protected]","","No","2023/11/17","18:17:46","2023/11/17","19:50:18","01:32:32","1.54","0.00","0.00"
"gitoxide","Byron","research what it would take to reuse as much state as possible when dealing with diffs","","Byron","","[email protected]","","No","2023/11/17","16:49:53","2023/11/17","17:44:31","00:54:38","0.91","0.00","0.00"
"gitoxide","Byron","finsh Buffers refactoring to allow reuse","","Byron","","[email protected]","","No","2023/11/17","13:49:58","2023/11/17","14:16:04","00:26:06","0.44","0.00","0.00"
"radicle-gitoxide","Byron","check discord updates","","Byron","","[email protected]","","No","2023/11/17","13:47:44","2023/11/17","13:49:57","00:02:13","0.04","0.00","0.00"
"gitoxide","Byron","make use of worktree filter in diffs","","Byron","","[email protected]","","No","2023/11/17","10:47:14","2023/11/17","11:35:05","00:47:51","0.80","0.00","0.00"
"gitoxide","Byron","test for limit and improvement to limit-computation","","Byron","","[email protected]","","No","2023/11/17","09:21:16","2023/11/17","10:47:14","01:25:58","1.43","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/17","09:02:17","2023/11/17","09:05:54","00:03:37","0.06","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1119","","Byron","","[email protected]","","No","2023/11/17","07:56:01","2023/11/17","08:20:36","00:24:35","0.41","0.00","0.00"
"gitoxide","Byron","the last missing test - next is filters","","Byron","","[email protected]","","No","2023/11/16","21:06:09","2023/11/16","21:21:48","00:15:39","0.26","0.00","0.00"
"maintenance","Byron","catchup on https://github.com/rustsec/rustsec/issues/1029#issuecomment-1814843858 and unsubscribe - it's sorted","","Byron","","[email protected]","","No","2023/11/16","20:35:59","2023/11/16","20:43:27","00:07:28","0.12","0.00","0.00"
"gitoxide","Byron","fix clippy that was unhappy due to a Rust update that just so happened; readup on what's new https://github.com/Byron/gitoxide/pull/1117","","Byron","","[email protected]","","No","2023/11/16","16:31:00","2023/11/16","17:06:54","00:35:54","0.60","0.00","0.00"
"gitoxide","Byron","fix CI one more time: https://github.com/Byron/gitoxide/pull/1117","","Byron","","[email protected]","","No","2023/11/16","16:27:24","2023/11/16","16:30:13","00:02:49","0.05","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1116#issuecomment-1814679463","","Byron","","[email protected]","community","No","2023/11/16","16:15:59","2023/11/16","16:27:23","00:11:24","0.19","0.00","0.00"
"gitoxide","Byron","hopefully fix CI on https://github.com/Byron/gitoxide/pull/1117 (distracted)","","Byron","","[email protected]","","No","2023/11/16","16:00:34","2023/11/16","16:15:58","00:15:24","0.26","0.00","0.00"
"radicle-gitoxide","Byron","https://github.com/radicle-dev/heartwood/pull/556#issuecomment-1814527796","","Byron","","[email protected]","","No","2023/11/16","15:09:09","2023/11/16","15:21:56","00:12:47","0.21","0.00","0.00"
"gitoxide","Byron","Try to wrap up https://github.com/Byron/gitoxide/pull/1117","","Byron","","[email protected]","","No","2023/11/16","13:41:58","2023/11/16","13:56:15","00:14:17","0.24","0.00","0.00"
"radicle-gitoxide","Byron","https://github.com/radicle-dev/heartwood/pull/556#issuecomment-1814358406;","","Byron","","[email protected]","","No","2023/11/16","13:06:44","2023/11/16","13:41:57","00:35:13","0.59","0.00","0.00"
"radicle-gitoxide","Byron","https://github.com/radicle-dev/heartwood/pull/556#issuecomment-1814291079; ;try radicle setup and kind of fail","","Byron","","[email protected]","","No","2023/11/16","12:36:22","2023/11/16","12:59:48","00:23:26","0.39","0.00","0.00"
"gitoxide","Byron","more tests","","Byron","","[email protected]","","No","2023/11/16","11:15:19","2023/11/16","11:48:11","00:32:52","0.55","0.00","0.00"
"radicle-gitoxide","Byron","https://github.com/radicle-dev/heartwood/pull/556#issuecomment-1814150784","","Byron","","[email protected]","","No","2023/11/16","11:05:39","2023/11/16","11:14:53","00:09:14","0.15","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1117 - start foundation (interrupted)","","Byron","","[email protected]","","No","2023/11/16","10:37:46","2023/11/16","11:05:38","00:27:52","0.46","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/16","10:37:09","2023/11/16","10:37:45","00:00:36","0.01","0.00","0.00"
"gitoxide","Byron","impove error message on spurious CI failure; think about next level of handling shells on windows that would be better than what git does.","","Byron","","[email protected]","","No","2023/11/16","09:57:18","2023/11/16","10:12:20","00:15:02","0.25","0.00","0.00"
"radicle-gitoxide","Byron","suggest UX improvement (1174633995405885562)","","Byron","","[email protected]","","No","2023/11/16","09:29:26","2023/11/16","09:57:15","00:27:49","0.46","0.00","0.00"
"gitoxide","Byron","merge PRs, look into unsafe","","Byron","","[email protected]","review PR","No","2023/11/16","09:03:00","2023/11/16","09:29:24","00:26:24","0.44","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1115","","Byron","","[email protected]","review PR","No","2023/11/16","08:12:58","2023/11/16","08:22:26","00:09:28","0.16","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/discussions/176?converting=1#discussioncomment-7584740","","Byron","","[email protected]","","No","2023/11/16","07:51:00","2023/11/16","08:02:11","00:11:11","0.19","0.00","0.00"
"gitoxide","Byron","fix CI","","Byron","","[email protected]","","No","2023/11/16","07:48:32","2023/11/16","07:51:24","00:02:52","0.05","0.00","0.00"
"gitoxide","Byron","more copy tests","","Byron","","[email protected]","","No","2023/11/15","20:31:05","2023/11/15","21:02:40","00:31:35","0.53","0.00","0.00"
"gitoxide","Byron","prepare next test","","Byron","","[email protected]","","No","2023/11/15","19:23:02","2023/11/15","19:41:37","00:18:35","0.31","0.00","0.00"
"radicle-gitoxide","Byron","https://github.com/radicle-dev/heartwood/pull/556#issuecomment-1813036350","","Byron","","[email protected]","","No","2023/11/15","19:05:35","2023/11/15","19:23:01","00:17:26","0.29","0.00","0.00"
"gitoxide","Byron","some progress for tests","","Byron","","[email protected]","","No","2023/11/15","15:01:39","2023/11/15","17:41:21","02:39:42","2.66","0.00","0.00"
"gitoxide","Byron","continue with testing (crazily distracted)","","Byron","","[email protected]","","No","2023/11/15","13:16:06","2023/11/15","14:16:46","01:00:40","1.01","0.00","0.00"
"radicle-gitoxide","Byron","https://github.com/radicle-dev/heartwood/pull/556#issuecomment-1812345217","","Byron","","[email protected]","","No","2023/11/15","12:19:45","2023/11/15","12:27:36","00:07:51","0.13","0.00","0.00"
"radicle-gitoxide","Byron","https://github.com/radicle-dev/heartwood/pull/556#issuecomment-1812323585","","Byron","","[email protected]","","No","2023/11/15","12:15:00","2023/11/15","12:17:29","00:02:29","0.04","0.00","0.00"
"gitoxide","Byron","start tests for tracker to get this going","","Byron","","[email protected]","community","No","2023/11/15","10:56:19","2023/11/15","11:35:34","00:39:15","0.65","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/discussions/1742?converting=1#discussioncomment-7574761","","Byron","","[email protected]","","No","2023/11/15","10:21:31","2023/11/15","10:23:41","00:02:10","0.04","0.00","0.00"
"radicle-gitoxide","Byron","https://github.com/radicle-dev/heartwood/pull/556#issuecomment-1812080719","","Byron","","[email protected]","","No","2023/11/15","09:59:50","2023/11/15","10:21:01","00:21:11","0.35","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1740","","Byron","","[email protected]","","No","2023/11/15","08:10:31","2023/11/15","08:16:31","00:06:00","0.10","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1739#pullrequestreview-1731366965","","Byron","","[email protected]","","No","2023/11/15","07:44:16","2023/11/15","08:10:29","00:26:13","0.44","0.00","0.00"
"GitPython","Byron","start on https://github.com/gitpython-developers/GitPython/issues/1738","","Byron","","[email protected]","","No","2023/11/14","21:16:30","2023/11/14","21:25:00","00:08:30","0.14","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/14","21:12:54","2023/11/14","21:16:30","00:03:36","0.06","0.00","0.00"
"gitoxide","Byron","read https://github.com/Byron/gitoxide/issues/1046#issuecomment-1809509438","","Byron","","[email protected]","community","No","2023/11/14","20:04:25","2023/11/14","20:05:37","00:01:12","0.02","0.00","0.00"
"radicle-gitoxide","Byron","https://github.com/radicle-dev/heartwood/pull/556#issuecomment-1810981222","","Byron","","[email protected]","","No","2023/11/14","19:26:30","2023/11/14","20:03:48","00:37:18","0.62","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1112#discussioncomment-7568568 (distracted)","","Byron","","[email protected]","community","No","2023/11/14","18:58:19","2023/11/14","19:26:29","00:28:10","0.47","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1109#issuecomment-1810832202","","Byron","","[email protected]","","No","2023/11/14","18:55:14","2023/11/14","18:57:41","00:02:27","0.04","0.00","0.00"
"gitoxide","Byron","fix CI of https://github.com/Byron/gitoxide/pull/1111","","Byron","","[email protected]","","No","2023/11/14","18:52:58","2023/11/14","18:54:50","00:01:52","0.03","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1103#issuecomment-1810447722","","Byron","","[email protected]","","No","2023/11/14","15:21:37","2023/11/14","16:24:20","01:02:43","1.05","0.00","0.00"
"gitoxide","Byron","figure out how to do shell splitting, windows only.","","Byron","","[email protected]","","No","2023/11/14","09:35:05","2023/11/14","11:15:37","01:40:32","1.68","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1103#issuecomment-1809651635","","Byron","","[email protected]","","No","2023/11/14","07:08:57","2023/11/14","08:11:37","01:02:40","1.04","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/13","21:12:00","2023/11/13","21:13:19","00:01:19","0.02","0.00","0.00"
"gitoxide","Byron","TBD","","Byron","","[email protected]","","No","2023/11/13","17:46:27","2023/11/13","19:04:10","01:17:43","1.30","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1103#issuecomment-1808456039","","Byron","","[email protected]","community","No","2023/11/13","16:28:30","2023/11/13","17:03:11","00:34:41","0.58","0.00","0.00"
"radicle-gitoxide","Byron","https://github.com/radicle-dev/heartwood/pull/556#discussion_r1391228283; https://github.com/radicle-dev/heartwood/pull/556#issuecomment-1808367887","","Byron","","[email protected]","","No","2023/11/13","15:55:40","2023/11/13","16:21:20","00:25:40","0.43","0.00","0.00"
"gitoxide","Byron","first steps towards filter support in `gix-diff` rename tracking.","","Byron","","[email protected]","","No","2023/11/13","13:53:00","2023/11/13","14:15:54","00:22:54","0.38","0.00","0.00"
"radicle-gitoxide","Byron","sign commits","","Byron","","[email protected]","","No","2023/11/13","13:50:35","2023/11/13","13:53:31","00:02:56","0.05","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/libz-sys/issues/108#issuecomment-1808030304","","Byron","","[email protected]","","No","2023/11/13","13:41:35","2023/11/13","13:45:22","00:03:47","0.06","0.00","0.00"
"radicle-gitoxide","Byron","https://github.com/radicle-dev/heartwood/pull/556#issuecomment-1807806736","","Byron","","[email protected]","","No","2023/11/13","10:33:28","2023/11/13","10:54:26","00:20:58","0.35","0.00","0.00"
"helix-gitoxide","Byron","practize and finish wezterm setup","","Byron","","[email protected]","","No","2023/11/13","08:55:56","2023/11/13","10:33:13","01:37:17","1.62","0.00","0.00"
"helix-gitoxide","Byron","switch to wezterm","","Byron","","[email protected]","","No","2023/11/12","21:40:06","2023/11/12","22:09:20","00:29:14","0.49","0.00","0.00"
"helix-gitoxide","Byron","still try to find a shell that works","","Byron","","[email protected]","","No","2023/11/12","20:19:23","2023/11/12","21:26:50","01:07:27","1.12","0.00","0.00"
"helix-gitoxide","Byron","practice ; try to fix alacritty","","Byron","","[email protected]","","No","2023/11/12","18:36:53","2023/11/12","19:25:40","00:48:47","0.81","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/12","18:14:50","2023/11/12","18:17:57","00:03:07","0.05","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/libz-sys/issues/108#issuecomment-1807170316","","Byron","","[email protected]","","No","2023/11/12","16:59:47","2023/11/12","17:08:51","00:09:04","0.15","0.00","0.00"
"gitoxide","Byron","Wrap up https://github.com/Byron/gitoxide/pull/1107","","Byron","","[email protected]","","No","2023/11/12","16:49:57","2023/11/12","16:59:46","00:09:49","0.16","0.00","0.00"
"gitoxide","Byron","https://github.com/radicle-dev/heartwood/pull/556","","Byron","","[email protected]","","No","2023/11/12","13:04:38","2023/11/12","13:21:40","00:17:02","0.28","0.00","0.00"
"radicle-gitoxide","Byron","Debug and fix 972; apply same fix in `gix`","","Byron","","[email protected]","","No","2023/11/12","09:08:41","2023/11/12","11:17:44","02:09:03","2.15","0.00","0.00"
"maintenance","Byron","merge small PRs","","Byron","","[email protected]","","No","2023/11/11","21:31:49","2023/11/11","21:42:41","00:10:52","0.18","0.00","0.00"
"gitoxide","Byron","create follow up: https://github.com/Byron/gitoxide/pull/1106","","Byron","","[email protected]","","No","2023/11/11","20:11:34","2023/11/11","20:23:06","00:11:32","0.19","0.00","0.00"
"gitoxide","Byron","https://rust-lang.zulipchat.com/#narrow/stream/246057-t-cargo/topic/.60gitoxide.60.20integration.20updates/near/401534103; make https://github.com/Byron/gitoxide/pull/1049 mergable","","Byron","","[email protected]","","No","2023/11/11","18:13:06","2023/11/11","19:24:39","01:11:33","1.19","0.00","0.00"
"gitoxide","Byron","bring rename tracking to `gix-diff`","","Byron","","[email protected]","","No","2023/11/11","16:16:45","2023/11/11","17:38:10","01:21:25","1.36","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1103#issuecomment-1806839646","","Byron","","[email protected]","community","No","2023/11/11","16:03:43","2023/11/11","16:07:37","00:03:54","0.07","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1103#issuecomment-1806793434","","Byron","","[email protected]","","No","2023/11/11","12:33:00","2023/11/11","12:41:22","00:08:22","0.14","0.00","0.00"
"gitoxide","Byron","finish https://github.com/Byron/gitoxide/pull/1104","","Byron","","[email protected]","review PR","No","2023/11/11","12:31:22","2023/11/11","12:33:21","00:01:59","0.03","0.00","0.00"
"gitoxide","Byron","get https://github.com/Byron/gitoxide/pull/1104 mergable","","Byron","","[email protected]","review PR","No","2023/11/11","10:35:48","2023/11/11","11:27:42","00:51:54","0.87","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1103","","Byron","","[email protected]","community","No","2023/11/11","10:27:05","2023/11/11","10:35:45","00:08:40","0.14","0.00","0.00"
"gitoxide","Byron","finish https://github.com/Byron/gitoxide/pull/1102 refactoring","","Byron","","[email protected]","","No","2023/11/10","21:26:32","2023/11/10","22:07:56","00:41:24","0.69","0.00","0.00"
"gitoxide","Byron","lossless entry mode","","Byron","","[email protected]","","No","2023/11/10","18:37:57","2023/11/10","19:39:24","01:01:27","1.02","0.00","0.00"
"gitoxide","Byron","refactor tree (interrupted)","","Byron","","[email protected]","","No","2023/11/10","17:20:43","2023/11/10","17:54:18","00:33:35","0.56","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1102; try to fix CI (or where the new error is coming from)","","Byron","","[email protected]","","No","2023/11/10","10:46:03","2023/11/10","11:32:15","00:46:12","0.77","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1096#issuecomment-1805369961","","Byron","","[email protected]","community","No","2023/11/10","10:10:33","2023/11/10","10:23:52","00:13:19","0.22","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1099#issuecomment-1805352416","","Byron","","[email protected]","community","No","2023/11/10","09:53:02","2023/11/10","10:10:32","00:17:30","0.29","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1081#pullrequestreview-1724302789","","Byron","","[email protected]","review PR","No","2023/11/10","08:13:17","2023/11/10","09:53:02","01:39:45","1.66","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/10","07:57:08","2023/11/10","07:58:19","00:01:11","0.02","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/09","17:58:41","2023/11/09","17:59:38","00:00:57","0.02","0.00","0.00"
"gitoxide","Byron","meeet Lucas","","Byron","","[email protected]","community","No","2023/11/09","16:57:51","2023/11/09","17:58:40","01:00:49","1.01","0.00","0.00"
"gitoxide","Byron","refactor PR","","Byron","","[email protected]","review PR","No","2023/11/09","15:50:33","2023/11/09","16:57:51","01:07:18","1.12","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/972#issuecomment-1803922813","","Byron","","[email protected]","community","No","2023/11/09","15:13:35","2023/11/09","15:20:32","00:06:57","0.12","0.00","0.00"
"gitoxide","Byron","review and merge https://github.com/Byron/gitoxide/pull/1100","","Byron","","[email protected]","","No","2023/11/09","15:01:36","2023/11/09","15:10:15","00:08:39","0.14","0.00","0.00"
"gitoxide","Byron","Get started with review of https://github.com/Byron/gitoxide/pull/1081 ; https://github.com/Byron/gitoxide/pull/1100#pullrequestreview-1722211747","","Byron","","[email protected]","review PR","No","2023/11/09","10:49:50","2023/11/09","11:25:47","00:35:57","0.60","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1098","","Byron","","[email protected]","","No","2023/11/09","08:52:19","2023/11/09","10:31:26","01:39:07","1.65","0.00","0.00"
"gitoxide","Byron","repro https://github.com/Byron/gitoxide/issues/1096 and ack; get started with PR: https://github.com/Byron/gitoxide/pull/1098","","Byron","","[email protected]","community","No","2023/11/09","08:04:13","2023/11/09","08:17:05","00:12:52","0.21","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/09","07:12:42","2023/11/09","07:14:21","00:01:39","0.03","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1097","","Byron","","[email protected]","review PR","No","2023/11/09","07:06:46","2023/11/09","07:12:00","00:05:14","0.09","0.00","0.00"
"gitoxide","Byron","Reply git2 maintainer about new funding source.","","Byron","","[email protected]","community","No","2023/11/09","07:00:43","2023/11/09","07:06:34","00:05:51","0.10","0.00","0.00"
"gitoxide","Byron","Reply Ratatui maintainer","","Byron","","[email protected]","community","No","2023/11/08","22:35:11","2023/11/08","22:57:49","00:22:38","0.38","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/issues/383","","Byron","","[email protected]","","No","2023/11/08","13:19:35","2023/11/08","13:22:50","00:03:15","0.05","0.00","0.00"
"maintenance","team docs.rs","https://github.com/rust-lang/docs.rs/pull/2302#pullrequestreview-1720197576","","Byron","","[email protected]","","No","2023/11/08","13:17:03","2023/11/08","13:19:29","00:02:26","0.04","0.00","0.00"
"gitoxide","Byron","read-up on https://github.com/Byron/gitoxide/pull/1081#issuecomment-1797836131","","Byron","","[email protected]","review PR","No","2023/11/07","21:12:56","2023/11/07","21:18:21","00:05:25","0.09","0.00","0.00"
"Practice Moonlander","Byron","finish packaging, fail","","Byron","","[email protected]","","No","2023/11/07","20:12:25","2023/11/07","20:31:48","00:19:23","0.32","0.00","0.00"
"Practice Moonlander","Byron","Prepare to send it back","","Byron","","[email protected]","","No","2023/11/07","17:22:59","2023/11/07","17:47:00","00:24:01","0.40","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1090","","Byron","","[email protected]","community","No","2023/11/07","15:37:45","2023/11/07","16:06:12","00:28:27","0.47","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/07","13:47:27","2023/11/07","13:52:07","00:04:40","0.08","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1090#issuecomment-1797894975","","Byron","","[email protected]","","No","2023/11/07","07:26:48","2023/11/07","07:29:26","00:02:38","0.04","0.00","0.00"
"GitPython","Byron","","","Byron","","[email protected]","","No","2023/11/07","07:25:15","2023/11/07","07:26:47","00:01:32","0.03","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1735","","Byron","","[email protected]","","No","2023/11/06","22:01:30","2023/11/06","22:13:20","00:11:50","0.20","0.00","0.00"
"maintenance","Byron","https://github.com/frewsxcv/rust-crates-index/pull/153","","Byron","","[email protected]","","No","2023/11/06","21:58:22","2023/11/06","22:01:29","00:03:07","0.05","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/972#issuecomment-1794763843","","Byron","","[email protected]","community","No","2023/11/06","13:55:03","2023/11/06","14:01:12","00:06:09","0.10","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/06","13:42:58","2023/11/06","13:46:31","00:03:33","0.06","0.00","0.00"
"maintenance","team docs.rs","https://github.com/Byron/crates-index-diff-rs/pull/42; https://github.com/rust-lang/docs.rs/issues/2295#issuecomment-1794344392; https://github.com/frewsxcv/rust-crates-index/pull/152; https://github.com/Byron/crates-index-diff-rs/pull/42 ; https://github.com/rust-lang/docs.rs/issues/2295#issuecomment-1794516296","","Byron","","[email protected]","","No","2023/11/06","09:03:24","2023/11/06","11:30:47","02:27:23","2.46","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/discussions/1734","","Byron","","[email protected]","","No","2023/11/06","08:10:47","2023/11/06","08:14:49","00:04:02","0.07","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1733","","Byron","","[email protected]","","No","2023/11/06","08:08:21","2023/11/06","08:10:46","00:02:25","0.04","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1732#pullrequestreview-1714385180","","Byron","","[email protected]","review PR","No","2023/11/06","07:55:29","2023/11/06","08:08:00","00:12:31","0.21","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/discussions/454?converting=1","","Byron","","[email protected]","","No","2023/11/06","07:53:47","2023/11/06","07:55:29","00:01:42","0.03","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1091","","Byron","","[email protected]","review PR","No","2023/11/06","07:51:56","2023/11/06","07:53:47","00:01:51","0.03","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1090#issuecomment-1794184050","","Byron","","[email protected]","community","No","2023/11/06","07:42:27","2023/11/06","07:51:56","00:09:29","0.16","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1729#issuecomment-1794175652","","Byron","","[email protected]","","No","2023/11/06","07:27:40","2023/11/06","07:42:26","00:14:46","0.25","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/discussions/1708#discussioncomment-7474149; https://github.com/gitpython-developers/GitPython/issues/1728#issuecomment-1793839344;","","Byron","","[email protected]","","No","2023/11/05","21:19:32","2023/11/05","21:39:19","00:19:47","0.33","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1730","","Byron","","[email protected]","","No","2023/11/05","21:01:11","2023/11/05","21:19:29","00:18:18","0.31","0.00","0.00"
"gitoxide","Byron","https://github.com/rust-lang/docs.rs/issues/2295#issuecomment-1793831221","","Byron","","[email protected]","community","No","2023/11/05","20:58:10","2023/11/05","21:01:11","00:03:01","0.05","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1090#issuecomment-1793830590","","Byron","","[email protected]","community","No","2023/11/05","20:54:29","2023/11/05","20:58:09","00:03:40","0.06","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/discussions/452?converting=1","","Byron","","[email protected]","","No","2023/11/05","20:51:48","2023/11/05","20:53:42","00:01:54","0.03","0.00","0.00"
"catchup","team docs.rs","Also write some messages about Drips","","Byron","","[email protected]","","No","2023/11/05","20:31:41","2023/11/05","20:51:00","00:19:19","0.32","0.00","0.00"
"gitoxide","Byron","read up on paid runners; read up on teams/enterprise accounts to get access to faster hosted runnners.","","Byron","","[email protected]","","No","2023/11/05","08:20:47","2023/11/05","08:31:55","00:11:08","0.19","0.00","0.00"
"gitoxide","Byron","merge PR; look into custom runners; rebase status-PR","","Byron","","[email protected]","","No","2023/11/05","07:37:00","2023/11/05","08:20:46","00:43:46","0.73","0.00","0.00"
"gitoxide","Byron","nearly finish PR","","Byron","","[email protected]","","No","2023/11/05","06:43:38","2023/11/05","07:27:29","00:43:51","0.73","0.00","0.00"
"gitoxide","Byron","find small bug to fix test; improve error reporting for object lookup.","","Byron","","[email protected]","","No","2023/11/04","19:42:34","2023/11/04","21:36:33","01:53:59","1.90","0.00","0.00"
"gitoxide","Byron","nearly get it all to conmpile again","","Byron","","[email protected]","","No","2023/11/04","18:05:38","2023/11/04","19:14:11","01:08:33","1.14","0.00","0.00"
"gitoxide","Byron","more progress towards `Find` trait","","Byron","","[email protected]","","No","2023/11/04","16:09:09","2023/11/04","17:18:42","01:09:33","1.16","0.00","0.00"
"gitoxide","Byron","keep working through the Find trait; lot's of changes","","Byron","","[email protected]","","No","2023/11/04","12:47:18","2023/11/04","16:00:00","03:12:42","3.21","0.00","0.00"
"gitoxide","Byron","greatly improve handling of ODB in crates: https://github.com/Byron/gitoxide/pull/1088 (WIP)","","Byron","","[email protected]","","No","2023/11/04","09:11:21","2023/11/04","11:50:15","02:38:54","2.65","0.00","0.00"
"gitoxide","Byron","another review on https://github.com/Byron/gitoxide/pull/1081","","Byron","","[email protected]","review PR","No","2023/11/04","08:35:44","2023/11/04","09:11:17","00:35:33","0.59","0.00","0.00"
"Practice Moonlander","Byron","","","Byron","","[email protected]","","No","2023/11/03","22:01:43","2023/11/03","23:05:59","01:04:16","1.07","0.00","0.00"
"Practice Moonlander","Byron","try replacing the keys and cover","","Byron","","[email protected]","","No","2023/11/03","20:46:14","2023/11/03","21:19:47","00:33:33","0.56","0.00","0.00"
"Practice Moonlander","Byron","reply support email","","Byron","","[email protected]","","No","2023/11/03","20:15:37","2023/11/03","20:46:13","00:30:36","0.51","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1728#issuecomment-1792965271","","Byron","","[email protected]","","No","2023/11/03","20:05:52","2023/11/03","20:09:43","00:03:51","0.06","0.00","0.00"
"GitPython","Byron","tried a review of https://github.com/gitpython-developers/GitPython/issues/1728 on moonlander, and it was very painful, just as expected :D.","","Byron","","[email protected]","","No","2023/11/03","18:55:01","2023/11/03","19:25:32","00:30:31","0.51","0.00","0.00"
"gitoxide","Byron","share some thoughts with Eric","","Byron","","[email protected]","community","No","2023/11/03","18:25:22","2023/11/03","18:31:31","00:06:09","0.10","0.00","0.00"
"gitoxide","Byron","check how to claim funds on drips.","","Byron","","[email protected]","","No","2023/11/03","16:13:37","2023/11/03","16:30:15","00:16:38","0.28","0.00","0.00"
"Practice Moonlander","Byron","try it out, play around a little","","Byron","","[email protected]","","No","2023/11/03","15:38:53","2023/11/03","16:13:37","00:34:44","0.58","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1727","","Byron","","[email protected]","","No","2023/11/03","14:07:02","2023/11/03","14:12:24","00:05:22","0.09","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1086","","Byron","","[email protected]","community","No","2023/11/03","14:01:54","2023/11/03","14:06:56","00:05:02","0.08","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1726#issuecomment-1792042761","","Byron","","[email protected]","","No","2023/11/03","09:27:21","2023/11/03","09:31:23","00:04:02","0.07","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1725#issuecomment-1792036081","","Byron","","[email protected]","","No","2023/11/03","09:17:28","2023/11/03","09:27:20","00:09:52","0.16","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1725#issuecomment-1791493125","","Byron","","[email protected]","","No","2023/11/02","20:39:02","2023/11/02","21:27:45","00:48:43","0.81","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1726","","Byron","","[email protected]","","No","2023/11/02","20:15:00","2023/11/02","20:39:02","00:24:02","0.40","0.00","0.00"
"gitoxide","Byron","check clusterfuzz issue, again https://github.com/Byron/gitoxide/issues/1085#issuecomment-1791394452","","Byron","","[email protected]","","No","2023/11/02","19:59:48","2023/11/02","20:09:23","00:09:35","0.16","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/92","","Byron","","[email protected]","review PR","No","2023/11/02","12:36:54","2023/11/02","12:49:02","00:12:08","0.20","0.00","0.00"
"gitoxide","Byron","continue on generalization","","Byron","","[email protected]","","No","2023/11/02","10:47:00","2023/11/02","11:20:43","00:33:43","0.56","0.00","0.00"
"gitoxide","Byron","research advanced diff engine features to realize they can certainly all go into `gix-diff`","","Byron","","[email protected]","","No","2023/11/02","10:30:06","2023/11/02","10:40:12","00:10:06","0.17","0.00","0.00"
"gitoxide","Byron","https://github.com/servo/rust-url/issues/870#issuecomment-1790275933 - another URL example","","Byron","","[email protected]","","No","2023/11/02","09:18:26","2023/11/02","09:29:13","00:10:47","0.18","0.00","0.00"
"gitoxide","Byron","check https://github.com/Byron/gitoxide/pull/1081 once more","","Byron","","[email protected]","review PR","No","2023/11/02","09:07:38","2023/11/02","09:18:26","00:10:48","0.18","0.00","0.00"
"gitoxide","Byron","https://github.com/martinvonz/jj/pull/2478#discussion_r1379639393; https://github.com/martinvonz/jj/pull/2478#discussion_r1379642312","","Byron","","[email protected]","community","No","2023/11/02","07:11:55","2023/11/02","07:22:00","00:10:05","0.17","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/11/01","21:11:46","2023/11/01","21:16:47","00:05:01","0.08","0.00","0.00"
"gitoxide","Byron","nearly fully decouple the tracker, now it 'only' needs change type parameterization","","Byron","","[email protected]","","No","2023/11/01","20:03:48","2023/11/01","20:59:41","00:55:53","0.93","0.00","0.00"
"gitoxide","Byron","decouple repository from tracker, as well as `src_tree` (interrupted)","","Byron","","[email protected]","","No","2023/11/01","18:22:02","2023/11/01","19:05:46","00:43:44","0.73","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/open-rs/pull/84","","Byron","","[email protected]","","No","2023/11/01","18:03:32","2023/11/01","18:04:49","00:01:17","0.02","0.00","0.00"
"gitoxide","Byron","more towards a standalone rename tracker","","Byron","","[email protected]","","No","2023/11/01","12:25:49","2023/11/01","14:12:58","01:47:09","1.79","0.00","0.00"
"gitoxide","Byron","continue with rename tracking generalization","","Byron","","[email protected]","","No","2023/11/01","11:13:17","2023/11/01","11:26:34","00:13:17","0.22","0.00","0.00"
"gitoxide","Byron","start on generalizing the rename tracking engine.","","Byron","","[email protected]","","No","2023/11/01","10:04:38","2023/11/01","10:37:59","00:33:21","0.56","0.00","0.00"
"gitoxide","Byron","look into API of gix/status and see how rename tracking could work.","","Byron","","[email protected]","","No","2023/11/01","08:52:33","2023/11/01","09:56:00","01:03:27","1.06","0.00","0.00"
"maintenance","Byron","therror fixup","","Byron","","[email protected]","","No","2023/11/01","07:15:33","2023/11/01","07:21:06","00:05:33","0.09","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/10/31","18:23:40","2023/10/31","18:24:08","00:00:28","0.01","0.00","0.00"
"gitoxide","Byron","https://github.com/martinvonz/jj/pull/2478#issuecomment-1787533108","","Byron","","[email protected]","community","No","2023/10/31","17:04:43","2023/10/31","17:09:33","00:04:50","0.08","0.00","0.00"
"gitoxide","Byron","https://github.com/martinvonz/jj/pull/2478#issuecomment-1787433435","","Byron","","[email protected]","community","No","2023/10/31","15:59:56","2023/10/31","16:18:54","00:18:58","0.32","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/92#issuecomment-1786575718","","Byron","","[email protected]","","No","2023/10/31","08:02:45","2023/10/31","08:07:00","00:04:15","0.07","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/10/30","20:40:03","2023/10/30","20:53:58","00:13:55","0.23","0.00","0.00"
"GitPython","Byron","merge https://github.com/gitpython-developers/GitPython/pull/1725","","Byron","","[email protected]","","No","2023/10/30","19:54:18","2023/10/30","20:22:48","00:28:30","0.48","0.00","0.00"
"GitPython","Byron","first part of review: https://github.com/gitpython-developers/GitPython/pull/1725/files","","Byron","","[email protected]","","No","2023/10/30","18:35:03","2023/10/30","19:22:27","00:47:24","0.79","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/92#discussion_r1376590499","","Byron","","[email protected]","","No","2023/10/30","18:31:06","2023/10/30","18:35:01","00:03:55","0.07","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/92#pullrequestreview-1704451905","","Byron","","[email protected]","","No","2023/10/30","16:23:29","2023/10/30","16:29:07","00:05:38","0.09","0.00","0.00"
"gitoxide","Byron","quick cleanup of PR","","Byron","","[email protected]","","No","2023/10/30","16:20:30","2023/10/30","16:23:29","00:02:59","0.05","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/10/30","13:35:36","2023/10/30","13:37:07","00:01:31","0.03","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1082#issuecomment-1785089101","","Byron","","[email protected]","","No","2023/10/30","13:16:29","2023/10/30","13:32:49","00:16:20","0.27","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/92#issuecomment-1784535759","","Byron","","[email protected]","","No","2023/10/30","07:00:37","2023/10/30","07:03:25","00:02:48","0.05","0.00","0.00"
"GitPython","Byron","","","Byron","","[email protected]","","No","2023/10/29","07:40:57","2023/10/29","07:41:25","00:00:28","0.01","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1081#pullrequestreview-1702730912","","Byron","","[email protected]","review PR","No","2023/10/28","09:47:38","2023/10/28","10:07:31","00:19:53","0.33","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/92","","Byron","","[email protected]","","No","2023/10/27","20:17:44","2023/10/27","20:30:33","00:12:49","0.21","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/gitdb/discussions/108?converting=1","","Byron","","[email protected]","","No","2023/10/27","07:47:13","2023/10/27","07:51:36","00:04:23","0.07","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/gitdb/issues/106","","Byron","","[email protected]","","No","2023/10/27","07:42:38","2023/10/27","07:47:12","00:04:34","0.08","0.00","0.00"
"gitoxide","Byron","compare performance results with VM","","Byron","","[email protected]","","No","2023/10/26","22:08:56","2023/10/26","22:30:03","00:21:07","0.35","0.00","0.00"
"gitoxide","Byron","prepare actual windows machine for testing (gently) - it works, but would be nice if symlinks would work as well","","Byron","","[email protected]","","No","2023/10/26","20:28:17","2023/10/26","22:00:29","01:32:12","1.54","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1080","","Byron","","[email protected]","","No","2023/10/26","19:21:55","2023/10/26","19:32:55","00:11:00","0.18","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1080","","Byron","","[email protected]","community","No","2023/10/26","18:29:05","2023/10/26","18:54:05","00:25:00","0.42","0.00","0.00"
"maintenance","Byron","try to build helix, still","","Byron","","[email protected]","","No","2023/10/26","09:55:26","2023/10/26","10:00:39","00:05:13","0.09","0.00","0.00"
"maintenance","Byron","try to get helix installation going","","Byron","","[email protected]","","No","2023/10/26","09:36:32","2023/10/26","09:40:48","00:04:16","0.07","0.00","0.00"
"gitoxide","Byron","https://github.com/extrawurst/gitui/discussions/1709#discussioncomment-7388800","","Byron","","[email protected]","community","No","2023/10/26","07:51:00","2023/10/26","08:17:22","00:26:22","0.44","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/pulldown-cmark-to-cmark/issues/60#issuecomment-1780456042","","Byron","","[email protected]","","No","2023/10/26","07:46:23","2023/10/26","07:50:56","00:04:33","0.08","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/10/25","20:44:20","2023/10/25","20:45:32","00:01:12","0.02","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/cargo-smart-release/discussions/10#discussioncomment-7384437","","Byron","","[email protected]","community","No","2023/10/25","20:18:00","2023/10/25","20:26:05","00:08:05","0.13","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/cargo-smart-release/discussions/10","","Byron","","[email protected]","community","No","2023/10/25","19:09:44","2023/10/25","19:11:50","00:02:06","0.04","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1076","","Byron","","[email protected]","review PR","No","2023/10/25","18:46:40","2023/10/25","19:07:12","00:20:32","0.34","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1046#issuecomment-1778676678","","Byron","","[email protected]","","No","2023/10/25","08:52:58","2023/10/25","09:39:12","00:46:14","0.77","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/discussions/1724?converting=1","","Byron","","[email protected]","","No","2023/10/25","07:29:36","2023/10/25","07:33:31","00:03:55","0.07","0.00","0.00"
"gitoxide","Byron","share news about index-fix; finish using it everywhere.","","Byron","","[email protected]","community","No","2023/10/24","20:35:38","2023/10/24","20:46:33","00:10:55","0.18","0.00","0.00"
"gitoxide","Byron","finish propagating the ctime fix for all existing consumers.","","Byron","","[email protected]","","No","2023/10/24","20:20:33","2023/10/24","20:29:31","00:08:58","0.15","0.00","0.00"
"gitoxide","Byron","on the way to generalize proper lstat","","Byron","","[email protected]","","No","2023/10/24","18:31:12","2023/10/24","19:33:22","01:02:10","1.04","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/prodash/pull/26","","Byron","","[email protected]","","No","2023/10/24","18:15:16","2023/10/24","18:31:06","00:15:50","0.26","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1075","","Byron","","[email protected]","community","No","2023/10/24","16:31:12","2023/10/24","17:29:48","00:58:36","0.98","0.00","0.00"
"gitoxide","Byron","fix lints to finally get CI green.","","Byron","","[email protected]","","No","2023/10/24","16:24:59","2023/10/24","16:31:11","00:06:12","0.10","0.00","0.00"
"gitoxide","Byron","fix windows test failures and prepare port of new metadata type.","","Byron","","[email protected]","","No","2023/10/24","13:57:31","2023/10/24","14:11:49","00:14:18","0.24","0.00","0.00"
"gitoxide","Byron","get windows-repro going","","Byron","","[email protected]","","No","2023/10/24","12:48:41","2023/10/24","13:02:59","00:14:18","0.24","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1046#issuecomment-1776666538","","Byron","","[email protected]","community","No","2023/10/24","08:35:29","2023/10/24","09:26:11","00:50:42","0.85","0.00","0.00"
"maintenance","Byron","","","Byron","","[email protected]","","No","2023/10/24","07:53:02","2023/10/24","07:57:26","00:04:24","0.07","0.00","0.00"
"maintenance","Byron","try fix therror again","","Byron","","[email protected]","","No","2023/10/24","07:31:06","2023/10/24","07:32:53","00:01:47","0.03","0.00","0.00"
"maintenance","Byron","fix therror builds by bringing it up to date with","","Byron","","[email protected]","","No","2023/10/24","07:15:38","2023/10/24","07:27:19","00:11:41","0.19","0.00","0.00"
"gitoxide","Byron","get our own version of lstat going to do what git does. Still doesn't fix MacOS strangeness regarding max thread count","","Byron","","[email protected]","","No","2023/10/23","19:03:59","2023/10/23","19:55:19","00:51:20","0.86","0.00","0.00"
"gitoxide","Byron","hunt a phantom; get trapped by the order of items in the index and how it's written in C; figure out why ctime is different and what needs to be done; start implementing it.","","Byron","","[email protected]","","No","2023/10/23","15:03:54","2023/10/23","17:31:57","02:28:03","2.47","0.00","0.00"
"gitoxide","Byron","get started again with gix-status (interrupted)","","Byron","","[email protected]","","No","2023/10/23","09:29:11","2023/10/23","09:48:49","00:19:38","0.33","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/libz-sys/pull/161","","Byron","","[email protected]","","No","2023/10/23","09:27:52","2023/10/23","09:29:11","00:01:19","0.02","0.00","0.00"
"gitoxide","Byron","https://www.reddit.com/r/rust/comments/17dp2l9/comment/k5zfez2/?utm_source=share&utm_medium=web2x&context=3","","Byron","","[email protected]","community","No","2023/10/22","18:30:28","2023/10/22","18:35:39","00:05:11","0.09","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/10/22","15:43:39","2023/10/22","15:47:35","00:03:56","0.07","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/pull/450","","Byron","","[email protected]","","No","2023/10/22","15:30:59","2023/10/22","15:36:30","00:05:31","0.09","0.00","0.00"
"gitoxide","Byron","","","Byron","","[email protected]","community","No","2023/10/22","15:27:07","2023/10/22","15:30:58","00:03:51","0.06","0.00","0.00"
"gitoxide","GitHub Sponsors","update timesheets; send sponsor report; post previous month's report on reddit","","Byron","","[email protected]","","No","2023/10/22","10:46:31","2023/10/22","11:01:52","00:15:21","0.26","0.00","0.00"
"gitoxide","GitHub Sponsors","prepare new montly report","","Byron","","[email protected]","","No","2023/10/22","09:37:14","2023/10/22","10:46:31","01:09:17","1.15","0.00","0.00"
"gitoxide","GitHub Sponsors","proof read (sloppily) the last month report: https://github.com/Byron/gitoxide/discussions/1074","","Byron","","[email protected]","","No","2023/10/22","09:17:02","2023/10/22","09:37:14","00:20:12","0.34","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/crates-io-cli/issues/11#issuecomment-1774014394","","Byron","","[email protected]","","No","2023/10/22","08:45:57","2023/10/22","09:01:59","00:16:02","0.27","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/pull/450#issuecomment-1774011577","","Byron","","[email protected]","","No","2023/10/22","08:42:05","2023/10/22","08:45:56","00:03:51","0.06","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1716#issuecomment-1773746757","","Byron","","[email protected]","","No","2023/10/21","12:18:43","2023/10/21","12:32:25","00:13:42","0.23","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1040#discussioncomment-7345218","","Byron","","[email protected]","community","No","2023/10/21","09:14:29","2023/10/21","09:25:31","00:11:02","0.18","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1040#discussioncomment-7345029","","Byron","","[email protected]","community","No","2023/10/21","08:05:22","2023/10/21","08:19:17","00:13:55","0.23","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/pull/450#pullrequestreview-1691193307","","Byron","","[email protected]","","No","2023/10/21","07:58:11","2023/10/21","08:05:21","00:07:10","0.12","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1040#discussioncomment-7342286","","Byron","","[email protected]","community","No","2023/10/20","20:29:24","2023/10/20","20:33:07","00:03:43","0.06","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1073","","Byron","","[email protected]","","No","2023/10/20","19:27:26","2023/10/20","19:54:15","00:26:49","0.45","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1072#issuecomment-1773122393","","Byron","","[email protected]","community","No","2023/10/20","19:16:21","2023/10/20","19:27:25","00:11:04","0.18","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1720#discussion_r1367158350","","Byron","","[email protected]","","No","2023/10/20","17:43:37","2023/10/20","17:44:13","00:00:36","0.01","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1072","","Byron","","[email protected]","review PR","No","2023/10/20","17:34:16","2023/10/20","17:43:35","00:09:19","0.16","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/gitdb/pull/104; https://github.com/gitpython-developers/GitPython/pull/1721; https://github.com/gitpython-developers/GitPython/pull/1720","","Byron","","[email protected]","","No","2023/10/20","17:25:40","2023/10/20","17:34:15","00:08:35","0.14","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/gitdb/pull/103","","Byron","","[email protected]","","No","2023/10/20","17:19:01","2023/10/20","17:25:39","00:06:38","0.11","0.00","0.00"
"gitoxide","Byron","figure out https://github.com/Byron/gitoxide/pull/1071 to make all tests pass https://github.com/Byron/gitoxide/issues/1061#issuecomment-1772935675","","Byron","","[email protected]","","No","2023/10/20","16:09:09","2023/10/20","17:19:00","01:09:51","1.16","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1772791020; https://github.com/Byron/gitoxide/pull/1071","","Byron","","[email protected]","community","No","2023/10/20","15:38:44","2023/10/20","15:58:40","00:19:56","0.33","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1772726249","","Byron","","[email protected]","","No","2023/10/20","14:49:14","2023/10/20","15:18:27","00:29:13","0.49","0.00","0.00"
"maintenance","Byron","merge https://github.com/Byron/trash-rs/pull/90","","Byron","","[email protected]","","No","2023/10/20","14:43:31","2023/10/20","14:47:39","00:04:08","0.07","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1719","","Byron","","[email protected]","","No","2023/10/20","14:18:01","2023/10/20","14:43:09","00:25:08","0.42","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1772633757","","Byron","","[email protected]","community","No","2023/10/20","13:56:50","2023/10/20","14:17:15","00:20:25","0.34","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/90#pullrequestreview-1689873127","","Byron","","[email protected]","review PR","No","2023/10/20","13:51:17","2023/10/20","13:56:34","00:05:17","0.09","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1772525972","","Byron","","[email protected]","community","No","2023/10/20","12:47:37","2023/10/20","12:56:26","00:08:49","0.15","0.00","0.00"
"maintenance","Byron","first look at https://github.com/Byron/trash-rs/pull/90","","Byron","","[email protected]","","No","2023/10/20","12:43:14","2023/10/20","12:47:36","00:04:22","0.07","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1716#issuecomment-1772276522","","Byron","","[email protected]","","No","2023/10/20","10:07:16","2023/10/20","10:08:46","00:01:30","0.03","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1772273788","","Byron","","[email protected]","","No","2023/10/20","09:45:47","2023/10/20","10:06:49","00:21:02","0.35","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1716#issuecomment-1772224870; https://github.com/gitpython-developers/GitPython/issues/1716#issuecomment-1772246339","","Byron","","[email protected]","","No","2023/10/20","09:13:46","2023/10/20","09:45:46","00:32:00","0.53","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1717#issuecomment-1772205968","","Byron","","[email protected]","","No","2023/10/20","08:56:14","2023/10/20","09:13:34","00:17:20","0.29","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/173#issuecomment-1772144477","","Byron","","[email protected]","","No","2023/10/20","08:09:10","2023/10/20","08:14:51","00:05:41","0.09","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1040#discussioncomment-7335200 and study keyword generics","","Byron","","[email protected]","","No","2023/10/20","08:01:00","2023/10/20","08:09:09","00:08:09","0.14","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1772131748","","Byron","","[email protected]","community","No","2023/10/20","07:33:08","2023/10/20","08:00:57","00:27:49","0.46","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/10/19","19:44:13","2023/10/19","19:46:59","00:02:46","0.05","0.00","0.00"
"catchup","team docs.rs","https://github.com/rust-lang/docs.rs/pull/2283","","Byron","","[email protected]","","No","2023/10/19","18:50:29","2023/10/19","18:57:30","00:07:01","0.12","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1771368898","","Byron","","[email protected]","community","No","2023/10/19","18:37:47","2023/10/19","18:50:28","00:12:41","0.21","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/173#issuecomment-1771348574","","Byron","","[email protected]","","No","2023/10/19","18:35:47","2023/10/19","18:37:46","00:01:59","0.03","0.00","0.00"
"maintenance","Byron","update dua dependencies and hopefully resolve a windows build issue","","Byron","","[email protected]","","No","2023/10/19","07:55:13","2023/10/19","08:01:38","00:06:25","0.11","0.00","0.00"
"gitoxide","Byron","try again to see any issue with V1 handling and fail","","Byron","","[email protected]","","No","2023/10/19","07:19:57","2023/10/19","07:42:17","00:22:20","0.37","0.00","0.00"
"gitoxide","Byron","keep looking into the hanging issue, https://github.com/Byron/gitoxide/issues/1061#issuecomment-1769195357","","Byron","","[email protected]","","No","2023/10/18","20:07:00","2023/10/18","21:34:35","01:27:35","1.46","0.00","0.00"
"gitoxide","Byron","look into logs: https://github.com/Byron/gitoxide/issues/1061#issuecomment-1768969447","","Byron","","[email protected]","community","No","2023/10/18","19:21:12","2023/10/18","19:49:39","00:28:27","0.47","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1716","","Byron","","[email protected]","","No","2023/10/18","18:52:09","2023/10/18","18:57:19","00:05:10","0.09","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1715#issuecomment-1768748596","","Byron","","[email protected]","","No","2023/10/18","17:12:54","2023/10/18","17:35:10","00:22:16","0.37","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/173","","Byron","","[email protected]","","No","2023/10/18","17:02:45","2023/10/18","17:12:52","00:10:07","0.17","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/89","","Byron","","[email protected]","","No","2023/10/18","16:55:23","2023/10/18","17:02:44","00:07:21","0.12","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1714;","","Byron","","[email protected]","","No","2023/10/18","16:47:54","2023/10/18","16:55:23","00:07:29","0.12","0.00","0.00"
"gitoxide","Byron","finish packetline tracing implementation; https://github.com/Byron/gitoxide/issues/1061#issuecomment-1768622178","","Byron","","[email protected]","","No","2023/10/18","15:05:54","2023/10/18","16:47:53","01:41:59","1.70","0.00","0.00"
"gitoxide","Byron","closer to integrating trace packetlines","","Byron","","[email protected]","","No","2023/10/18","13:24:45","2023/10/18","14:51:02","01:26:17","1.44","0.00","0.00"
"gitoxide","Byron","Take a long look and try to implement packetline tracing, which is doable but hard without using environment variables and globals","","Byron","","[email protected]","","No","2023/10/18","10:20:33","2023/10/18","11:37:21","01:16:48","1.28","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1767933459","","Byron","","[email protected]","community","No","2023/10/18","10:10:00","2023/10/18","10:20:31","00:10:31","0.18","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1767834932","","Byron","","[email protected]","","No","2023/10/18","09:19:32","2023/10/18","09:29:23","00:09:51","0.16","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/88#issuecomment-1767820771","","Byron","","[email protected]","","No","2023/10/18","09:17:51","2023/10/18","09:19:30","00:01:39","0.03","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/87#issuecomment-1767818551","","Byron","","[email protected]","","No","2023/10/18","09:12:19","2023/10/18","09:17:51","00:05:32","0.09","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1712#issuecomment-1767726237","","Byron","","[email protected]","","No","2023/10/18","08:09:49","2023/10/18","08:13:36","00:03:47","0.06","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1713#issuecomment-1767715972","","Byron","","[email protected]","","No","2023/10/18","08:07:34","2023/10/18","08:09:49","00:02:15","0.04","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/87#issuecomment-1767710499","","Byron","","[email protected]","","No","2023/10/18","08:01:05","2023/10/18","08:07:30","00:06:25","0.11","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/pull/446#issuecomment-1767700172","","Byron","","[email protected]","","No","2023/10/18","07:59:09","2023/10/18","08:01:05","00:01:56","0.03","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/releases/tag/v3.1.1; https://github.com/Byron/trash-rs/pull/88","","Byron","","[email protected]","","No","2023/10/18","07:41:24","2023/10/18","07:59:05","00:17:41","0.29","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/10/18","07:34:12","2023/10/18","07:39:07","00:04:55","0.08","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1766021575","","Byron","","[email protected]","community","No","2023/10/17","11:17:42","2023/10/17","11:23:43","00:06:01","0.10","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/gitdb/issues/101","","Byron","","[email protected]","","No","2023/10/17","10:13:14","2023/10/17","10:14:17","00:01:03","0.02","0.00","0.00"
"gitoxide","Byron","merge https://github.com/Byron/gitoxide/pull/1068 ;","","Byron","","[email protected]","","No","2023/10/17","10:04:18","2023/10/17","10:11:06","00:06:48","0.11","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1765883515","","Byron","","[email protected]","community","No","2023/10/17","09:57:21","2023/10/17","10:04:03","00:06:42","0.11","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/10/17","09:40:05","2023/10/17","09:42:18","00:02:13","0.04","0.00","0.00"
"gitoxide","Byron","finish impl of https://github.com/Byron/gitoxide/pull/1068","","Byron","","[email protected]","","No","2023/10/17","08:54:36","2023/10/17","09:40:04","00:45:28","0.76","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/releases/tag/3.1.38","","Byron","","[email protected]","","No","2023/10/17","08:05:20","2023/10/17","08:10:59","00:05:39","0.09","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/discussions/449#discussioncomment-7298069","","Byron","","[email protected]","","No","2023/10/17","08:00:56","2023/10/17","08:05:19","00:04:23","0.07","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1069","","Byron","","[email protected]","review PR","No","2023/10/17","07:51:36","2023/10/17","08:00:52","00:09:16","0.15","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1765712471","","Byron","","[email protected]","community","No","2023/10/17","07:48:16","2023/10/17","07:51:36","00:03:20","0.06","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1631#issuecomment-1765178131","","Byron","","[email protected]","","No","2023/10/16","21:52:54","2023/10/16","21:57:25","00:04:31","0.08","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/pull/382#issuecomment-1765171235","","Byron","","[email protected]","","No","2023/10/16","21:46:00","2023/10/16","21:52:18","00:06:18","0.11","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/issues/86","","Byron","","[email protected]","","No","2023/10/16","20:33:48","2023/10/16","20:39:25","00:05:37","0.09","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1710#issuecomment-1765065679","","Byron","","[email protected]","","No","2023/10/16","20:31:02","2023/10/16","20:33:48","00:02:46","0.05","0.00","0.00"
"gitoxide","Byron","finally make split-worktrees work","","Byron","","[email protected]","","No","2023/10/16","18:45:28","2023/10/16","19:34:59","00:49:31","0.83","0.00","0.00"
"gitoxide","Byron","improve the handling of configured worktrees to match the one of git. Nearly done, it's tricky for sure","","Byron","","[email protected]","","No","2023/10/16","15:37:57","2023/10/16","17:57:49","02:19:52","2.33","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1068 - research done, now needs impl","","Byron","","[email protected]","","No","2023/10/16","14:57:55","2023/10/16","15:22:57","00:25:02","0.42","0.00","0.00"
"gitoxide","Byron","look into repo with split worktree issue (which might be expensive to solve","","Byron","","[email protected]","","No","2023/10/16","13:29:50","2023/10/16","14:20:44","00:50:54","0.85","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1711#issuecomment-1764269760","","Byron","","[email protected]","","No","2023/10/16","13:26:43","2023/10/16","13:29:49","00:03:06","0.05","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1710#issuecomment-1764210721","","Byron","","[email protected]","","No","2023/10/16","12:42:46","2023/10/16","12:50:32","00:07:46","0.13","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/pull/382#issuecomment-1763767575","","Byron","","[email protected]","","No","2023/10/16","07:40:07","2023/10/16","07:43:46","00:03:39","0.06","0.00","0.00"
"maintenance","team rust-lang","first look at https://github.com/rust-lang/flate2-rs/pull/382#issuecomment-1763450646","","Byron","","[email protected]","","No","2023/10/16","07:13:41","2023/10/16","07:22:26","00:08:45","0.15","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/discussions/449?converting=1#discussioncomment-7288612","","Byron","","[email protected]","","No","2023/10/16","07:08:51","2023/10/16","07:13:39","00:04:48","0.08","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/issues/381#issuecomment-1763400510","","Byron","","[email protected]","","No","2023/10/15","16:05:40","2023/10/15","16:08:26","00:02:46","0.05","0.00","0.00"
"gitoxide","Byron","sort out https://github.com/Byron/gitoxide/issues/1013#issuecomment-1762871158; https://github.com/Byron/gitoxide/issues/1013#issuecomment-1763330894","","Byron","","[email protected]","","No","2023/10/15","10:24:46","2023/10/15","11:16:59","00:52:13","0.87","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1763310517","","Byron","","[email protected]","","No","2023/10/15","09:36:09","2023/10/15","09:53:26","00:17:17","0.29","0.00","0.00"
"starship-gitoxide","Byron","check https://github.com/starship/starship/issues/886, unsubscribe","","Byron","","[email protected]","","No","2023/10/15","09:33:34","2023/10/15","09:36:09","00:02:35","0.04","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1067; https://github.com/servo/rust-url/issues/870","","Byron","","[email protected]","","No","2023/10/15","08:25:56","2023/10/15","09:17:18","00:51:22","0.86","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1013#issuecomment-1762867880","","Byron","","[email protected]","community","No","2023/10/14","14:23:04","2023/10/14","14:28:13","00:05:09","0.09","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1709","","Byron","","[email protected]","","No","2023/10/14","12:51:44","2023/10/14","13:01:38","00:09:54","0.17","0.00","0.00"
"gitoxide","Byron","try to reproduce memory corruption; no luck so far, conclusion: https://github.com/Byron/gitoxide/issues/1013#issuecomment-1762776798","","Byron","","[email protected]","","No","2023/10/14","09:58:19","2023/10/14","11:37:05","01:38:46","1.65","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/discussions/1708#discussioncomment-7279093","","Byron","","[email protected]","","No","2023/10/14","09:03:18","2023/10/14","09:08:33","00:05:15","0.09","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1707","","Byron","","[email protected]","","No","2023/10/14","08:56:21","2023/10/14","09:03:18","00:06:57","0.12","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/smmap/pull/53#issuecomment-1762668234","","Byron","","[email protected]","","No","2023/10/14","08:33:27","2023/10/14","08:47:28","00:14:01","0.23","0.00","0.00"
"gitoxide","Byron","update deps; fix regression","","Byron","","[email protected]","","No","2023/10/14","07:40:00","2023/10/14","08:00:59","00:20:59","0.35","0.00","0.00"
"gitoxide","Byron","fix gix-url issue with regression protection","","Byron","","[email protected]","","No","2023/10/13","20:37:45","2023/10/13","21:15:57","00:38:12","0.64","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1064","","Byron","","[email protected]","","No","2023/10/13","18:33:17","2023/10/13","19:37:05","01:03:48","1.06","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1063#issuecomment-1761504838; improvements to head peeling","","Byron","","[email protected]","","No","2023/10/13","16:51:58","2023/10/13","17:48:46","00:56:48","0.95","0.00","0.00"
"gitoxide","Byron","get started with head-tests","","Byron","","[email protected]","","No","2023/10/13","13:24:07","2023/10/13","14:19:05","00:54:58","0.92","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1062","","Byron","","[email protected]","review PR","No","2023/10/13","13:14:48","2023/10/13","13:21:56","00:07:08","0.12","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/pull/378#issuecomment-1761196242","","Byron","","[email protected]","","No","2023/10/13","11:16:06","2023/10/13","11:20:39","00:04:33","0.08","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1702#issuecomment-1761182333; https://github.com/gitpython-developers/GitPython/discussions/1706#discussioncomment-7271957","","Byron","","[email protected]","","No","2023/10/13","11:10:04","2023/10/13","11:16:05","00:06:01","0.10","0.00","0.00"
"GitPython","Byron","dependabot setup and mailmate testing","","Byron","","[email protected]","","No","2023/10/13","09:48:40","2023/10/13","10:30:59","00:42:19","0.71","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1761063254","","Byron","","[email protected]","community","No","2023/10/13","09:41:13","2023/10/13","09:48:40","00:07:27","0.12","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1702","","Byron","","[email protected]","","No","2023/10/13","09:34:19","2023/10/13","09:41:11","00:06:52","0.11","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1703","","Byron","","[email protected]","","No","2023/10/13","09:29:03","2023/10/13","09:34:19","00:05:16","0.09","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1061#issuecomment-1761039159","","Byron","","[email protected]","community","No","2023/10/13","09:16:20","2023/10/13","09:28:41","00:12:21","0.21","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1060#issuecomment-1761024530","","Byron","","[email protected]","community","No","2023/10/13","09:13:38","2023/10/13","09:16:07","00:02:29","0.04","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/pull/380","","Byron","","[email protected]","","No","2023/10/13","08:31:17","2023/10/13","08:42:21","00:11:04","0.18","0.00","0.00"
"gitoxide","Byron","gix breakage due to version-interoperability","","Byron","","[email protected]","","No","2023/10/13","06:35:00","2023/10/13","06:50:16","00:15:16","0.25","0.00","0.00"
"gitoxide","Byron","another feature improvement","","Byron","","[email protected]","","No","2023/10/12","21:08:52","2023/10/12","21:20:20","00:11:28","0.19","0.00","0.00"
"gitoxide","Byron","release new version of gix; fix cargo-smart-release","","Byron","","[email protected]","","No","2023/10/12","18:57:54","2023/10/12","19:42:53","00:44:59","0.75","0.00","0.00"
"gitoxide","Byron","work on improvements; also play with mailmate; https://github.com/Byron/gitoxide/pull/1059","","Byron","","[email protected]","","No","2023/10/12","15:22:57","2023/10/12","17:30:39","02:07:42","2.13","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/spenserblack/gengo/pull/218#discussion_r1356816259","","Byron","","[email protected]","","No","2023/10/12","15:19:58","2023/10/12","15:22:57","00:02:59","0.05","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1701","","Byron","","[email protected]","","No","2023/10/12","09:58:08","2023/10/12","10:04:54","00:06:46","0.11","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/smmap/pull/53#issuecomment-1759080828; https://github.com/gitpython-developers/GitPython/pull/1697#discussion_r1356428138","","Byron","","[email protected]","","No","2023/10/12","09:21:36","2023/10/12","09:58:04","00:36:28","0.61","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/10/12","08:10:26","2023/10/12","08:15:05","00:04:39","0.08","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/spenserblack/gengo/pull/218#pullrequestreview-1673112391","","Byron","","[email protected]","","No","2023/10/12","08:01:55","2023/10/12","08:10:19","00:08:24","0.14","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/issues/379#issuecomment-1758959084","","Byron","","[email protected]","","No","2023/10/12","07:49:33","2023/10/12","08:01:55","00:12:22","0.21","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/pull/378#issuecomment-1758950300","","Byron","","[email protected]","","No","2023/10/12","07:47:36","2023/10/12","07:49:33","00:01:57","0.03","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1659#issuecomment-1756984419","","Byron","","[email protected]","","No","2023/10/11","08:59:47","2023/10/11","09:07:08","00:07:21","0.12","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1693#discussion_r1350796661;https://github.com/gitpython-developers/GitPython/pull/1661#issuecomment-1753964126; https://github.com/gitpython-developers/smmap/pull/53#issuecomment-1756964153; https://github.com/gitpython-developers/GitPython/pull/1700#issuecomment-1756968811;","","Byron","","[email protected]","","No","2023/10/11","08:44:40","2023/10/11","08:59:35","00:14:55","0.25","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1697#discussion_r1354247913","","Byron","","[email protected]","","No","2023/10/11","08:29:19","2023/10/11","08:44:39","00:15:20","0.26","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/pull/378","","Byron","","[email protected]","","No","2023/10/11","08:24:56","2023/10/11","08:29:01","00:04:05","0.07","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/flate2-rs/issues/220#issuecomment-1756871660 (interrupted)","","Byron","","[email protected]","","No","2023/10/11","08:11:09","2023/10/11","08:15:43","00:04:34","0.08","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1037#issuecomment-1756866739","","Byron","","[email protected]","review PR","No","2023/10/11","08:05:16","2023/10/11","08:11:01","00:05:45","0.10","0.00","0.00"
"gitoxide","Byron","catchup on another class of ignored files, i.e. precious, as per the mailing list","","Byron","","[email protected]","community","No","2023/10/10","20:22:59","2023/10/10","20:37:36","00:14:37","0.24","0.00","0.00"
"gitoxide","Byron","read up on release and changelog tooling","","Byron","","[email protected]","community","No","2023/10/10","18:39:13","2023/10/10","18:41:56","00:02:43","0.05","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1058","","Byron","","[email protected]","","No","2023/10/10","14:11:37","2023/10/10","14:52:10","00:40:33","0.68","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1057","","Byron","","[email protected]","","No","2023/10/10","10:01:00","2023/10/10","10:13:28","00:12:28","0.21","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1050#issuecomment-1754625214","","Byron","","[email protected]","review PR","No","2023/10/10","09:57:21","2023/10/10","10:00:47","00:03:26","0.06","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1700","","Byron","","[email protected]","","No","2023/10/10","09:18:21","2023/10/10","09:57:14","00:38:53","0.65","0.00","0.00"
"gitoxide","Byron","First investigation on https://github.com/Byron/gitoxide/issues/1055#issuecomment-1754557034","","Byron","","[email protected]","","No","2023/10/10","09:02:50","2023/10/10","09:13:28","00:10:38","0.18","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1056","","Byron","","[email protected]","","No","2023/10/10","08:56:43","2023/10/10","09:02:50","00:06:07","0.10","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1050#issuecomment-1754496215","","Byron","","[email protected]","community","No","2023/10/10","08:55:06","2023/10/10","08:56:41","00:01:35","0.03","0.00","0.00"
"gitoxide","Byron","Merge https://github.com/Byron/gitoxide/pull/1054","","Byron","","[email protected]","community","No","2023/10/10","08:50:20","2023/10/10","08:54:46","00:04:26","0.07","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1055","","Byron","","[email protected]","community","No","2023/10/10","08:09:41","2023/10/10","08:21:45","00:12:04","0.20","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1050#issuecomment-1754459781","","Byron","","[email protected]","community","No","2023/10/10","08:06:08","2023/10/10","08:09:39","00:03:31","0.06","0.00","0.00"
"gitoxide","Byron","review and refactor https://github.com/Byron/gitoxide/pull/1054","","Byron","","[email protected]","review PR","No","2023/10/10","07:43:27","2023/10/10","08:06:07","00:22:40","0.38","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1050#issuecomment-1753682966","","Byron","","[email protected]","community","No","2023/10/09","21:59:59","2023/10/09","22:10:14","00:10:15","0.17","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/spenserblack/gengo/issues/202#issuecomment-1753659539","","Byron","","[email protected]","","No","2023/10/09","21:53:24","2023/10/09","21:59:53","00:06:29","0.11","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/pull/446#issuecomment-1753391884","","Byron","","[email protected]","","No","2023/10/09","19:22:37","2023/10/09","19:26:56","00:04:19","0.07","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/spenserblack/gengo/issues/202#issuecomment-1753360807","","Byron","","[email protected]","","No","2023/10/09","18:56:58","2023/10/09","19:00:52","00:03:54","0.07","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1054#pullrequestreview-1664943320","","Byron","","[email protected]","community","No","2023/10/09","18:45:39","2023/10/09","18:56:47","00:11:08","0.19","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/issues/447#issuecomment-1752375340","","Byron","","[email protected]","","No","2023/10/09","07:39:14","2023/10/09","07:41:34","00:02:20","0.04","0.00","0.00"
"gitoxide","Byron","still try to fix CI (distracted)","","Byron","","[email protected]","","No","2023/10/08","21:52:33","2023/10/08","22:33:59","00:41:26","0.69","0.00","0.00"
"gitoxide","Byron","reproducible hard failure, maybe VM crash. Maybe this can just be avoided to run.","","Byron","","[email protected]","","No","2023/10/08","20:09:49","2023/10/08","21:15:58","01:06:09","1.10","0.00","0.00"
"gitoxide","Byron","try fix CI still","","Byron","","[email protected]","","No","2023/10/08","19:40:55","2023/10/08","19:42:42","00:01:47","0.03","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/issues/447","","Byron","","[email protected]","","No","2023/10/08","19:20:00","2023/10/08","19:25:27","00:05:27","0.09","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/open-rs/issues/83#issuecomment-1752024235","","Byron","","[email protected]","","No","2023/10/08","19:18:06","2023/10/08","19:20:03","00:01:57","0.03","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/issues/54#issuecomment-1751950386","","Byron","","[email protected]","","No","2023/10/08","19:15:39","2023/10/08","19:18:05","00:02:26","0.04","0.00","0.00"
"gitoxide","Byron","try to see why CI is failing still","","Byron","","[email protected]","","No","2023/10/08","19:13:12","2023/10/08","19:15:38","00:02:26","0.04","0.00","0.00"
"gitoxide","Byron","try to fix CI again","","Byron","","[email protected]","","No","2023/10/08","15:13:10","2023/10/08","15:16:30","00:03:20","0.06","0.00","0.00"
"maintenance","Byron","merge https://github.com/Byron/trash-rs/pull/84; merge https://github.com/Byron/trash-rs/pull/84; create https://github.com/Byron/trash-rs/releases/tag/v3.1.0","","Byron","","[email protected]","","No","2023/10/08","08:56:18","2023/10/08","09:06:48","00:10:30","0.18","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/pull/446#issuecomment-1751941090","","Byron","","[email protected]","","No","2023/10/08","08:48:59","2023/10/08","08:56:17","00:07:18","0.12","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1697","","Byron","","[email protected]","","No","2023/10/08","08:36:16","2023/10/08","08:48:53","00:12:37","0.21","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/open-rs/issues/83#issuecomment-1751937402","","Byron","","[email protected]","","No","2023/10/08","08:31:54","2023/10/08","08:36:15","00:04:21","0.07","0.00","0.00"
"gitoxide","Byron","fix CI","","Byron","","[email protected]","","No","2023/10/08","08:27:57","2023/10/08","08:31:51","00:03:54","0.07","0.00","0.00"
"gitoxide","Byron","try to fix CI; read up on byteyarn issue","","Byron","","[email protected]","","No","2023/10/07","20:32:01","2023/10/07","20:43:45","00:11:44","0.20","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/open-rs/issues/83#issuecomment-1751740178","","Byron","","[email protected]","","No","2023/10/07","17:28:28","2023/10/07","17:35:40","00:07:12","0.12","0.00","0.00"
"gitoxide","Byron","https://github.com/epage/epage.github.io/issues/23#issuecomment-1751738834","","Byron","","[email protected]","community","No","2023/10/07","17:12:13","2023/10/07","17:28:27","00:16:14","0.27","0.00","0.00"
"gitoxide","Byron","fix pathspec handling for attributes and excludes query; https://github.com/Byron/gitoxide/pull/1052","","Byron","","[email protected]","","No","2023/10/07","16:11:02","2023/10/07","17:12:12","01:01:10","1.02","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/84#issuecomment-1751699629","","Byron","","[email protected]","","No","2023/10/07","14:27:04","2023/10/07","14:28:52","00:01:48","0.03","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/pull/446#issuecomment-1751699274","","Byron","","[email protected]","","No","2023/10/07","14:22:43","2023/10/07","14:27:04","00:04:21","0.07","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/gitdb/pull/98; https://github.com/gitpython-developers/GitPython/pull/1659#issuecomment-1751698396","","Byron","","[email protected]","","No","2023/10/07","14:14:08","2023/10/07","14:22:42","00:08:34","0.14","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1050#issuecomment-1751696493","","Byron","","[email protected]","community","No","2023/10/07","14:09:32","2023/10/07","14:14:07","00:04:35","0.08","0.00","0.00"
"gitoxide","Byron","https://github.com/rustsec/rustsec/pull/1032#pullrequestreview-1663046677","","Byron","","[email protected]","community","No","2023/10/07","14:01:48","2023/10/07","14:09:31","00:07:43","0.13","0.00","0.00"
"gitoxide","Byron","More discussion around precious files; lay out how it would work in greater detail","","Byron","","[email protected]","","No","2023/10/07","10:40:13","2023/10/07","11:09:34","00:29:21","0.49","0.00","0.00"
"gitoxide","Byron","wrap up","","Byron","","[email protected]","","No","2023/10/06","21:09:32","2023/10/06","21:11:48","00:02:16","0.04","0.00","0.00"
"gitoxide","Byron","clippy for testshttps://github.com/Byron/gitoxide/pull/1051#issuecomment-1750518472","","Byron","","[email protected]","","No","2023/10/06","13:49:53","2023/10/06","13:58:01","00:08:08","0.14","0.00","0.00"
"gitoxide","Byron","fix clippy","","Byron","","[email protected]","","No","2023/10/06","13:26:48","2023/10/06","13:37:12","00:10:24","0.17","0.00","0.00"
"cargo-gitoxide","Byron","update on zulip","","Byron","","[email protected]","","No","2023/10/06","12:50:32","2023/10/06","13:02:21","00:11:49","0.20","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/10/06","12:46:32","2023/10/06","12:50:31","00:03:59","0.07","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/discussions/1696#discussioncomment-7198854","","Byron","","[email protected]","","No","2023/10/05","15:54:24","2023/10/05","16:04:19","00:09:55","0.17","0.00","0.00"
"gitoxide","Byron","create follow-up PR: https://github.com/Byron/gitoxide/pull/1049","","Byron","","[email protected]","","No","2023/10/05","15:25:16","2023/10/05","15:54:22","00:29:06","0.49","0.00","0.00"
"gitoxide","Byron","try to fix CI and wrap-up PR; fix gix-url failure, once again","","Byron","","[email protected]","","No","2023/10/05","13:20:54","2023/10/05","14:13:28","00:52:34","0.88","0.00","0.00"
"gitoxide","Byron","finish application of changes during status call","","Byron","","[email protected]","","No","2023/10/05","12:18:03","2023/10/05","12:48:31","00:30:28","0.51","0.00","0.00"
"gitoxide","Byron","finish status conflict handling across chunk boundaries","","Byron","","[email protected]","","No","2023/10/05","10:37:20","2023/10/05","11:31:27","00:54:07","0.90","0.00","0.00"
"gitoxide","Byron","realize that `built` can already benefit from `gix status`, and `onefetch` can use a part of it; first part of conflict improvements","","Byron","","[email protected]","","No","2023/10/05","09:13:22","2023/10/05","10:01:09","00:47:47","0.80","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/issues/445#issuecomment-1748222116","","Byron","","[email protected]","","No","2023/10/05","09:10:17","2023/10/05","09:12:34","00:02:17","0.04","0.00","0.00"
"GitPython","Byron","catch up on https://github.com/gitpython-developers/GitPython/pull/1693#discussion_r1346547551","","Byron","","[email protected]","","No","2023/10/05","07:53:59","2023/10/05","08:08:32","00:14:33","0.24","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1046#issuecomment-1748111125","","Byron","","[email protected]","","No","2023/10/05","07:40:43","2023/10/05","07:53:58","00:13:15","0.22","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/discussions/1695#discussioncomment-7194004","","Byron","","[email protected]","","No","2023/10/05","07:38:31","2023/10/05","07:40:43","00:02:12","0.04","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1046#issuecomment-1747459398","","Byron","","[email protected]","community","No","2023/10/04","20:33:27","2023/10/04","20:53:04","00:19:37","0.33","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1661#issuecomment-1747334269; https://github.com/gitpython-developers/GitPython/discussions/1695?converting=1#discussioncomment-7189723","","Byron","","[email protected]","","No","2023/10/04","19:08:55","2023/10/04","19:28:25","00:19:30","0.33","0.00","0.00"
"GitPython","Byron","merge https://github.com/gitpython-developers/GitPython/pull/1693","","Byron","","[email protected]","","No","2023/10/04","18:20:00","2023/10/04","19:08:55","00:48:55","0.82","0.00","0.00"
"GitPython","Byron","read https://github.com/gitpython-developers/GitPython/issues/1690; read https://github.com/gitpython-developers/GitPython/issues/1691; read https://github.com/gitpython-developers/GitPython/issues/1692; read up on #1693 (not done)","","Byron","","[email protected]","","No","2023/10/04","16:49:01","2023/10/04","17:28:47","00:39:46","0.66","0.00","0.00"
"gitoxide","Byron","continue with conflict tests and realize that it's really not working like that, but solutions are possible fortunately.","","Byron","","[email protected]","","No","2023/10/04","15:15:00","2023/10/04","16:49:01","01:34:01","1.57","0.00","0.00"
"gitoxide","Byron","work on reproducing all conflict states","","Byron","","[email protected]","","No","2023/10/04","14:21:17","2023/10/04","14:49:17","00:28:00","0.47","0.00","0.00"
"gitoxide","Byron","finish conflict implementation; needs test","","Byron","","[email protected]","","No","2023/10/04","13:22:27","2023/10/04","13:55:42","00:33:15","0.55","0.00","0.00"
"gitoxide","Byron","Fix tests to the point where only conflict markers need to be corrected, and tested in full","","Byron","","[email protected]","","No","2023/10/04","13:03:08","2023/10/04","13:16:00","00:12:52","0.21","0.00","0.00"
"gitoxide","Byron","figure out improvements to conflict markers; great refactor to better support rename tracking and conflicts in the future","","Byron","","[email protected]","","No","2023/10/04","08:33:01","2023/10/04","11:35:19","03:02:18","3.04","0.00","0.00"
"gitoxide","Byron","try to fix CI","","Byron","","[email protected]","","No","2023/10/04","07:23:29","2023/10/04","07:30:37","00:07:08","0.12","0.00","0.00"
"gitoxide","Byron","add index to each entry for changes (distracted)","","Byron","","[email protected]","","No","2023/10/03","20:46:42","2023/10/03","21:53:51","01:07:09","1.12","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/smmap/pull/54; https://github.com/gitpython-developers/gitdb/pull/97","","Byron","","[email protected]","","No","2023/10/03","19:15:08","2023/10/03","19:42:46","00:27:38","0.46","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1689; read up on https://github.com/gitpython-developers/GitPython/pull/1688","","Byron","","[email protected]","","No","2023/10/03","18:43:55","2023/10/03","19:04:05","00:20:10","0.34","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1046#issuecomment-1744369547","","Byron","","[email protected]","community","No","2023/10/03","09:08:14","2023/10/03","09:35:38","00:27:24","0.46","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1686#issuecomment-1743680758","","Byron","","[email protected]","","No","2023/10/02","21:59:31","2023/10/02","22:06:33","00:07:02","0.12","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1685#issuecomment-1743658265; https://github.com/gitpython-developers/GitPython/pull/1687","","Byron","","[email protected]","","No","2023/10/02","21:33:42","2023/10/02","21:59:29","00:25:47","0.43","0.00","0.00"
"GitPython","Byron","start reading https://github.com/gitpython-developers/GitPython/issues/1685","","Byron","","[email protected]","","No","2023/10/02","21:16:42","2023/10/02","21:22:37","00:05:55","0.10","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/issues/444#issuecomment-1743602784","","Byron","","[email protected]","","No","2023/10/02","21:03:42","2023/10/02","21:07:51","00:04:09","0.07","0.00","0.00"
"gitoxide","Byron","fix fuzz testcase","","Byron","","[email protected]","","No","2023/10/02","10:15:06","2023/10/02","10:36:56","00:21:50","0.36","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1684","","Byron","","[email protected]","","No","2023/10/02","10:08:23","2023/10/02","10:15:05","00:06:42","0.11","0.00","0.00"
"gitoxide","Byron","https://github.com/mcy/byteyarn/issues/1#issuecomment-1742573955","","Byron","","[email protected]","community","No","2023/10/02","10:00:06","2023/10/02","10:08:18","00:08:12","0.14","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/spenserblack/gengo/issues/202#issuecomment-1742556257; https://github.com/o2sh/onefetch/issues/628#issuecomment-1742562782","","Byron","","[email protected]","","No","2023/10/02","09:52:22","2023/10/02","10:00:01","00:07:39","0.13","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1025#issuecomment-1742552841","","Byron","","[email protected]","community","No","2023/10/02","09:44:57","2023/10/02","09:52:21","00:07:24","0.12","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1044#discussioncomment-7162046","","Byron","","[email protected]","community","No","2023/10/02","09:26:53","2023/10/02","09:44:56","00:18:03","0.30","0.00","0.00"
"gitoxide","Byron","https://github.com/rustsec/rustsec/pull/1032#issuecomment-1742519259","","Byron","","[email protected]","community","No","2023/10/02","09:18:08","2023/10/02","09:26:52","00:08:44","0.15","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1044#discussioncomment-7158923","","Byron","","[email protected]","community","No","2023/10/01","19:46:26","2023/10/01","20:07:49","00:21:23","0.36","0.00","0.00"
"gitoxide","Byron","https://github.com/rustsec/rustsec/pull/1032#issuecomment-1742150251; https://github.com/Byron/gitoxide/issues/1026#issuecomment-1742150853","","Byron","","[email protected]","community","No","2023/10/01","19:27:06","2023/10/01","19:46:25","00:19:19","0.32","0.00","0.00"
"gitoxide","Byron","https://github.com/mcy/byteyarn/issues/1#issuecomment-1742145931","","Byron","","[email protected]","","No","2023/10/01","18:55:36","2023/10/01","19:26:57","00:31:21","0.52","0.00","0.00"
"gitoxide","Byron","first look at https://github.com/mcy/byteyarn/issues/1#issuecomment-1741806364","","Byron","","[email protected]","community","No","2023/10/01","17:11:37","2023/10/01","17:35:35","00:23:58","0.40","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/84#issuecomment-1742110927","","Byron","","[email protected]","","No","2023/10/01","17:08:16","2023/10/01","17:11:36","00:03:20","0.06","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/o2sh/onefetch/issues/628#issuecomment-1741970571","","Byron","","[email protected]","","No","2023/10/01","07:29:16","2023/10/01","08:00:55","00:31:39","0.53","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/84#issuecomment-1741693800","","Byron","","[email protected]","","No","2023/09/30","08:27:32","2023/09/30","08:29:12","00:01:40","0.03","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1041#discussioncomment-7150037","","Byron","","[email protected]","community","No","2023/09/30","08:01:07","2023/09/30","08:27:23","00:26:16","0.44","0.00","0.00"
"gitoxide","Byron","try to get idna issue fixed","","Byron","","[email protected]","community","No","2023/09/30","07:58:04","2023/09/30","08:01:06","00:03:02","0.05","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1042#issuecomment-1741437954","","Byron","","[email protected]","review PR","No","2023/09/30","07:50:01","2023/09/30","07:58:03","00:08:02","0.13","0.00","0.00"
"gitoxide","Byron","fix CI, hopefully","","Byron","","[email protected]","","No","2023/09/29","21:42:16","2023/09/29","21:50:05","00:07:49","0.13","0.00","0.00"
"gitoxide","Byron","more testing (distracted)","","Byron","","[email protected]","","No","2023/09/29","18:54:28","2023/09/29","21:14:23","02:19:55","2.33","0.00","0.00"
"gitoxide","Byron","try performance optimization once again, but fail and now give up","","Byron","","[email protected]","","No","2023/09/29","13:57:01","2023/09/29","15:30:22","01:33:21","1.56","0.00","0.00"
"gitoxide","Byron","try to solve performance bottleneck, but kind of fail even though it now definitely does less work","","Byron","","[email protected]","","No","2023/09/29","12:47:13","2023/09/29","13:28:07","00:40:54","0.68","0.00","0.00"
"gitoxide","Byron","lots of fixes and improvements; figure out why git has a two-step process","","Byron","","[email protected]","","No","2023/09/29","10:42:13","2023/09/29","12:00:28","01:18:15","1.30","0.00","0.00"
"gitoxide","Byron","more work on gix-status; figure out what the refresh problem is; https://github.com/Byron/gitoxide/discussions/1041#discussioncomment-7141881","","Byron","","[email protected]","","No","2023/09/29","09:08:01","2023/09/29","09:54:35","00:46:34","0.78","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1041#discussioncomment-7141554","","Byron","","[email protected]","","No","2023/09/29","08:28:59","2023/09/29","09:07:51","00:38:52","0.65","0.00","0.00"
"gitoxide","Byron","reply to private email","","Byron","","[email protected]","community","No","2023/09/29","08:22:01","2023/09/29","08:28:59","00:06:58","0.12","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/issues/83#issuecomment-1738567151","","Byron","","[email protected]","","No","2023/09/29","08:20:52","2023/09/29","08:22:01","00:01:09","0.02","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/discussions/1683?converting=1","","Byron","","[email protected]","","No","2023/09/29","07:41:36","2023/09/29","07:43:53","00:02:17","0.04","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/spenserblack/gengo/issues/202#issuecomment-1740342073","","Byron","","[email protected]","","No","2023/09/29","07:37:54","2023/09/29","07:41:27","00:03:33","0.06","0.00","0.00"
"gitoxide","Byron","try to fix CI","","Byron","","[email protected]","","No","2023/09/29","07:13:10","2023/09/29","07:20:04","00:06:54","0.12","0.00","0.00"
"gitoxide","Byron","optimize File access for much better performance (8k buffers are a problem); lots of debugging, find bug in worktree pipeline","","Byron","","[email protected]","","No","2023/09/28","21:43:52","2023/09/28","23:00:32","01:16:40","1.28","0.00","0.00"
"gitoxide","Byron","wrap up filtering with streaming support; start on performance improvements for bare file reads","","Byron","","[email protected]","","No","2023/09/28","20:32:05","2023/09/28","21:33:48","01:01:43","1.03","0.00","0.00"
"gitoxide","Byron","streaming filters (but needs proper counting)","","Byron","","[email protected]","","No","2023/09/28","18:59:47","2023/09/28","19:42:04","00:42:17","0.70","0.00","0.00"
"gitoxide","Byron","filtering nearly done","","Byron","","[email protected]","","No","2023/09/28","16:01:06","2023/09/28","17:14:13","01:13:07","1.22","0.00","0.00"
"gitoxide","Byron","more towards filtering; try to figure out refresh-index issue and 'dirty' issue when filters are used. Maybe it's index timestamp related?","","Byron","","[email protected]","","No","2023/09/28","13:37:16","2023/09/28","15:16:21","01:39:05","1.65","0.00","0.00"
"gitoxide","Byron","get closer to filtering support","","Byron","","[email protected]","","No","2023/09/28","11:18:36","2023/09/28","11:32:41","00:14:05","0.23","0.00","0.00"
"gitoxide","Byron","worktree filtering, preparation and getting there","","Byron","","[email protected]","","No","2023/09/28","09:03:15","2023/09/28","11:08:14","02:04:59","2.08","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1040#discussioncomment-7130545","","Byron","","[email protected]","community","No","2023/09/28","08:38:47","2023/09/28","09:03:14","00:24:27","0.41","0.00","0.00"
"gitoxide","Byron","auto-write","","Byron","","[email protected]","","No","2023/09/28","07:59:29","2023/09/28","08:11:37","00:12:08","0.20","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/spenserblack/gengo/issues/202#issuecomment-1738509182","","Byron","","[email protected]","","No","2023/09/28","07:38:46","2023/09/28","07:43:14","00:04:28","0.07","0.00","0.00"
"gitoxide","Byron","finish interruptability and some testing of real-world performance in a worst case; research worktree filters a little","","Byron","","[email protected]","","No","2023/09/27","20:43:52","2023/09/27","21:17:56","00:34:04","0.57","0.00","0.00"
"gitoxide","Byron","refactor; allow early aborts, needs more work","","Byron","","[email protected]","","No","2023/09/27","19:10:39","2023/09/27","20:20:56","01:10:17","1.17","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/spenserblack/gengo/pull/200/files","","Byron","","[email protected]","","No","2023/09/27","18:59:32","2023/09/27","19:09:54","00:10:22","0.17","0.00","0.00"
"gitoxide","Byron","finish status statistics","","Byron","","[email protected]","","No","2023/09/27","16:59:10","2023/09/27","17:36:38","00:37:28","0.62","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/libz-sys/issues/160","","Byron","","[email protected]","","No","2023/09/27","16:52:11","2023/09/27","16:58:46","00:06:35","0.11","0.00","0.00"
"gitoxide","Byron","reproduce and fix URL parsing issue: https://github.com/Byron/gitoxide/pull/1039","","Byron","","[email protected]","","No","2023/09/27","15:50:01","2023/09/27","16:51:58","01:01:57","1.03","0.00","0.00"
"gitoxide","Byron","more statistics","","Byron","","[email protected]","","No","2023/09/27","13:48:26","2023/09/27","15:12:14","01:23:48","1.40","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1681","","Byron","","[email protected]","","No","2023/09/27","13:45:30","2023/09/27","13:48:22","00:02:52","0.05","0.00","0.00"
"gitoxide","Byron","various improvements","","Byron","","[email protected]","","No","2023/09/27","11:20:48","2023/09/27","11:46:22","00:25:34","0.43","0.00","0.00"
"gitoxide","Byron","submodule status (externalized)","","Byron","","[email protected]","","No","2023/09/27","10:26:16","2023/09/27","11:20:48","00:54:32","0.91","0.00","0.00"
"gitoxide","Byron","submodule basics for status","","Byron","","[email protected]","","No","2023/09/27","08:49:19","2023/09/27","10:16:44","01:27:25","1.46","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/prodash/pull/25#issuecomment-1736801364","","Byron","","[email protected]","","No","2023/09/27","08:38:39","2023/09/27","08:49:19","00:10:40","0.18","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1680; https://github.com/gitpython-developers/GitPython/pull/1667#issuecomment-1736741797","","Byron","","[email protected]","","No","2023/09/27","07:43:46","2023/09/27","07:48:11","00:04:25","0.07","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/prodash/pull/25#pullrequestreview-1645639509","","Byron","","[email protected]","","No","2023/09/27","07:33:19","2023/09/27","07:43:39","00:10:20","0.17","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1037#issuecomment-1736730327","","Byron","","[email protected]","review PR","No","2023/09/27","07:29:46","2023/09/27","07:33:19","00:03:33","0.06","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/issues/442#issuecomment-1736097873","","Byron","","[email protected]","","No","2023/09/26","21:10:20","2023/09/26","21:14:17","00:03:57","0.07","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/84#issuecomment-1736136511","","Byron","","[email protected]","","No","2023/09/26","21:01:58","2023/09/26","21:10:18","00:08:20","0.14","0.00","0.00"
"gitoxide","Byron","finish symlink handling, make tests pass on windows","","Byron","","[email protected]","","No","2023/09/26","18:41:18","2023/09/26","20:17:50","01:36:32","1.61","0.00","0.00"
"gitoxide","Byron","test for symlink check (nearly done)","","Byron","","[email protected]","","No","2023/09/26","16:46:25","2023/09/26","17:29:52","00:43:27","0.72","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1679#pullrequestreview-1644389896","","Byron","","[email protected]","","No","2023/09/26","15:20:06","2023/09/26","16:13:38","00:53:32","0.89","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/990#issuecomment-1735530144","","Byron","","[email protected]","review PR","No","2023/09/26","15:15:51","2023/09/26","15:20:06","00:04:15","0.07","0.00","0.00"
"GitPython","Byron","read up on https://github.com/gitpython-developers/GitPython/issues/1676#issuecomment-1735052752; start on https://github.com/gitpython-developers/GitPython/pull/1679","","Byron","","[email protected]","","No","2023/09/26","14:36:18","2023/09/26","14:48:09","00:11:51","0.20","0.00","0.00"
"gitoxide","Byron","review tests and add fuzzing: https://github.com/Byron/gitoxide/pull/990","","Byron","","[email protected]","review PR","No","2023/09/26","12:53:28","2023/09/26","14:36:18","01:42:50","1.71","0.00","0.00"
"gitoxide","Byron","first part of review: https://github.com/Byron/gitoxide/pull/990#pullrequestreview-1643779152","","Byron","","[email protected]","review PR","No","2023/09/26","08:56:25","2023/09/26","11:18:46","02:22:21","2.37","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/628#discussioncomment-7109038","","Byron","","[email protected]","community","No","2023/09/26","08:36:21","2023/09/26","08:56:22","00:20:01","0.33","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/spenserblack/gengo/pull/191#issuecomment-1734914634","","Byron","","[email protected]","","No","2023/09/26","08:25:07","2023/09/26","08:36:12","00:11:05","0.18","0.00","0.00"
"gitoxide","Byron","Finish https://github.com/Byron/gitoxide/issues/1036","","Byron","","[email protected]","outreach","No","2023/09/25","21:54:42","2023/09/25","22:06:49","00:12:07","0.20","0.00","0.00"
"gitoxide","Byron","analyse shadow-rs https://github.com/Byron/gitoxide/issues/1036","","Byron","","[email protected]","outreach","No","2023/09/25","21:23:42","2023/09/25","21:43:19","00:19:37","0.33","0.00","0.00"
"gitoxide","Byron","https://github.com/obi1kenobi/cargo-semver-checks/pull/531 - finished","","Byron","","[email protected]","outreach","No","2023/09/25","21:17:00","2023/09/25","21:23:42","00:06:42","0.11","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/990#issuecomment-1734325594","","Byron","","[email protected]","review PR","No","2023/09/25","21:03:00","2023/09/25","21:17:47","00:14:47","0.25","0.00","0.00"
"maintenance","team docs.rs","keep checking PRs","","Byron","","[email protected]","","No","2023/09/25","20:29:31","2023/09/25","20:35:43","00:06:12","0.10","0.00","0.00"
"maintenance","team docs.rs","https://github.com/rust-lang/docs.rs/pull/2233","","Byron","","[email protected]","","No","2023/09/25","19:21:40","2023/09/25","19:55:10","00:33:30","0.56","0.00","0.00"
"maintenance","team docs.rs","finish gix upgrade in crates-index-diff; some fixes","","Byron","","[email protected]","","No","2023/09/25","18:28:33","2023/09/25","19:08:26","00:39:53","0.66","0.00","0.00"
"maintenance","team docs.rs","https://github.com/Byron/crates-index-diff-rs/pull/41","","Byron","","[email protected]","","No","2023/09/25","16:36:20","2023/09/25","16:52:28","00:16:08","0.27","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1678","","Byron","","[email protected]","","No","2023/09/25","15:59:53","2023/09/25","16:01:43","00:01:50","0.03","0.00","0.00"
"gitoxide","Byron","https://github.com/rustsec/rustsec/pull/1017#issuecomment-1733770551","","Byron","","[email protected]","outreach","No","2023/09/25","15:54:18","2023/09/25","15:59:53","00:05:35","0.09","0.00","0.00"
"gitoxide","Byron","https://github.com/rustsec/rustsec/pull/1017","","Byron","","[email protected]","outreach","No","2023/09/25","14:02:00","2023/09/25","15:37:00","01:35:00","1.58","0.00","0.00"
"cargo-gitoxide","Byron","try to fix https://github.com/rust-lang/cargo/pull/12731; try to get https://github.com/rustsec/advisory-db/pull/1789 ready;","","Byron","","[email protected]","","No","2023/09/25","13:48:44","2023/09/25","14:02:55","00:14:11","0.24","0.00","0.00"
"cargo-gitoxide","Byron","figure out what the problem is and fix it: https://github.com/Byron/gitoxide/pull/1034","","Byron","","[email protected]","","No","2023/09/25","09:43:00","2023/09/25","11:40:28","01:57:28","1.96","0.00","0.00"
"gitoxide","Byron","https://github.com/obi1kenobi/cargo-semver-checks/pull/531#issuecomment-1733073608","","Byron","","[email protected]","community","No","2023/09/25","09:18:55","2023/09/25","09:31:30","00:12:35","0.21","0.00","0.00"
"gitoxide","Byron","finish advisory","","Byron","","[email protected]","","No","2023/09/25","09:05:02","2023/09/25","09:18:55","00:13:53","0.23","0.00","0.00"
"gitoxide","Byron","create vulnerability report: https://github.com/rustsec/advisory-db/pull/1789","","Byron","","[email protected]","community","No","2023/09/25","08:33:03","2023/09/25","08:56:53","00:23:50","0.40","0.00","0.00"
"gitoxide","Byron","gix-transport fix","","Byron","","[email protected]","","No","2023/09/25","07:55:59","2023/09/25","08:33:03","00:37:04","0.62","0.00","0.00"
"gitoxide","Byron","https://github.com/obi1kenobi/cargo-semver-checks/pull/531#issuecomment-1732967500","","Byron","","[email protected]","community","No","2023/09/25","07:40:05","2023/09/25","07:55:45","00:15:40","0.26","0.00","0.00"
"cargo-gitoxide","Byron","upgrade cargo to latest version of gix; upgrade cargo; inform rustsec","","Byron","","[email protected]","","No","2023/09/24","20:24:28","2023/09/24","21:06:34","00:42:06","0.70","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/09/24","20:22:15","2023/09/24","20:24:27","00:02:12","0.04","0.00","0.00"
"gitoxide","Byron","A new release to fix the security issue","","Byron","","[email protected]","","No","2023/09/24","19:26:40","2023/09/24","20:22:09","00:55:29","0.92","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/smmap/pull/53#issuecomment-1732622870","","Byron","","[email protected]","","No","2023/09/24","18:44:16","2023/09/24","19:13:19","00:29:03","0.48","0.00","0.00"
"gitoxide","Byron","fix journey tests","","Byron","","[email protected]","","No","2023/09/24","18:38:03","2023/09/24","18:44:15","00:06:12","0.10","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/pulldown-cmark-to-cmark/issues/59#issuecomment-1732596104","","Byron","","[email protected]","","No","2023/09/24","17:13:30","2023/09/24","17:22:32","00:09:02","0.15","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/dua-cli/issues/171#issuecomment-1732594296","","Byron","","[email protected]","","No","2023/09/24","17:08:23","2023/09/24","17:13:25","00:05:02","0.08","0.00","0.00"
"gitoxide","Byron","first stab at security fix : https://github.com/Byron/gitoxide/pull/1032","","Byron","","[email protected]","","No","2023/09/24","15:59:00","2023/09/24","17:08:22","01:09:22","1.16","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/990#issuecomment-1732576084; https://github.com/Byron/gitoxide/discussions/1031#discussioncomment-7093843","","Byron","","[email protected]","community","No","2023/09/24","15:55:19","2023/09/24","15:59:00","00:03:41","0.06","0.00","0.00"
"gitoxide","Byron","start looking into https://github.com/Byron/gitoxide/pull/1032","","Byron","","[email protected]","","No","2023/09/24","10:59:14","2023/09/24","11:31:25","00:32:11","0.54","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/990#issuecomment-1732521946","","Byron","","[email protected]","community","No","2023/09/24","10:13:44","2023/09/24","10:42:40","00:28:56","0.48","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/discussions/1031#discussioncomment-7092386","","Byron","","[email protected]","community","No","2023/09/24","10:06:30","2023/09/24","10:13:43","00:07:13","0.12","0.00","0.00"
"maintenance","team rust-lang","https://github.com/Byron/trash-rs/pull/84#issuecomment-1732515754","","Byron","","[email protected]","","No","2023/09/24","10:04:52","2023/09/24","10:06:29","00:01:37","0.03","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1672#issuecomment-1732515202","","Byron","","[email protected]","","No","2023/09/24","10:01:22","2023/09/24","10:04:45","00:03:23","0.06","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1677#discussion_r1335138452; https://github.com/gitpython-developers/GitPython/pull/1672#issuecomment-1732511789; https://github.com/gitpython-developers/smmap/pull/53#issuecomment-1732514103","","Byron","","[email protected]","","No","2023/09/24","09:29:07","2023/09/24","10:01:12","00:32:05","0.53","0.00","0.00"
"gitoxide","Byron","investigate release, decide against it; basics of synlink validation","","Byron","","[email protected]","","No","2023/09/23","10:55:27","2023/09/23","11:26:39","00:31:12","0.52","0.00","0.00"
"GitPython","Byron","","","Byron","","[email protected]","","No","2023/09/23","09:31:53","2023/09/23","09:37:36","00:05:43","0.10","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1677#discussion_r1334936095; https://github.com/gitpython-developers/smmap/pull/53#issuecomment-1732242413","","Byron","","[email protected]","","No","2023/09/23","09:17:12","2023/09/23","09:31:53","00:14:41","0.24","0.00","0.00"
"gitoxide","Byron","reply on reddit","","Byron","","[email protected]","community","No","2023/09/23","07:42:57","2023/09/23","07:47:12","00:04:15","0.07","0.00","0.00"
"gitoxide","GitHub Sponsors","finish report","","Byron","","[email protected]","","No","2023/09/22","19:10:06","2023/09/22","19:22:52","00:12:46","0.21","0.00","0.00"
"gitoxide","GitHub Sponsors","get https://github.com/obi1kenobi/cargo-semver-checks/pull/531 ready for review; finish report","","Byron","","[email protected]","community","No","2023/09/22","18:32:18","2023/09/22","19:10:05","00:37:47","0.63","0.00","0.00"
"gitoxide","GitHub Sponsors","write report","","Byron","","[email protected]","","No","2023/09/22","16:30:10","2023/09/22","17:36:25","01:06:15","1.10","0.00","0.00"
"gitoxide","Byron","E page feedback","","Byron","","[email protected]","community","No","2023/09/22","15:51:49","2023/09/22","15:54:49","00:03:00","0.05","0.00","0.00"
"gitoxide","GitHub Sponsors","re-read and publish previous month report: https://github.com/Byron/gitoxide/discussions/1029","","Byron","","[email protected]","","No","2023/09/22","10:43:46","2023/09/22","11:08:09","00:24:23","0.41","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1672#discussion_r1334083074","","Byron","","[email protected]","","No","2023/09/22","10:17:32","2023/09/22","10:43:42","00:26:10","0.44","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1644#issuecomment-1730983361; https://github.com/gitpython-developers/GitPython/pull/1672#issuecomment-1731007627","","Byron","","[email protected]","","No","2023/09/22","10:06:02","2023/09/22","10:17:10","00:11:08","0.19","0.00","0.00"
"gitoxide","Byron","take a look at https://github.com/epage/rfcs/blob/global/text/0000-global-features.md","","Byron","","[email protected]","community","No","2023/09/22","09:53:59","2023/09/22","10:06:02","00:12:03","0.20","0.00","0.00"
"maintenance","team rust-lang","https://github.com/rust-lang/libz-sys/issues/158#issuecomment-1730970086","","Byron","","[email protected]","","No","2023/09/22","09:51:08","2023/09/22","09:53:58","00:02:50","0.05","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/releases/tag/3.1.37","","Byron","","[email protected]","","No","2023/09/22","09:32:03","2023/09/22","09:45:00","00:12:57","0.22","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1672; https://github.com/gitpython-developers/smmap/pull/53#issuecomment-1730933933","","Byron","","[email protected]","","No","2023/09/22","08:54:14","2023/09/22","09:32:02","00:37:48","0.63","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1677","","Byron","","[email protected]","","No","2023/09/22","08:47:44","2023/09/22","08:54:13","00:06:29","0.11","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1669#issuecomment-1730891380","","Byron","","[email protected]","","No","2023/09/22","08:41:30","2023/09/22","08:47:43","00:06:13","0.10","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1028; read up on https://news.ycombinator.com/item?id=37598082","","Byron","","[email protected]","","No","2023/09/22","08:20:43","2023/09/22","08:41:30","00:20:47","0.35","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1026#issuecomment-1730096184","","Byron","","[email protected]","community","No","2023/09/21","18:30:57","2023/09/21","20:29:49","01:58:52","1.98","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1026#issuecomment-1729787783; https://github.com/Byron/gitoxide/issues/1026#issuecomment-1729810827","","Byron","","[email protected]","community","No","2023/09/21","16:55:04","2023/09/21","17:26:38","00:31:34","0.53","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1669#issuecomment-1729666676; https://github.com/gitpython-developers/GitPython/issues/1674#issuecomment-1729695248","","Byron","","[email protected]","","No","2023/09/21","16:04:24","2023/09/21","16:26:59","00:22:35","0.38","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1673","","Byron","","[email protected]","","No","2023/09/21","15:36:53","2023/09/21","16:04:24","00:27:31","0.46","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1672#pullrequestreview-1637840792","","Byron","","[email protected]","","No","2023/09/21","15:20:41","2023/09/21","15:36:52","00:16:11","0.27","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1026#issuecomment-1729575238","","Byron","","[email protected]","","No","2023/09/21","15:10:23","2023/09/21","15:20:40","00:10:17","0.17","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/09/21","15:08:15","2023/09/21","15:10:22","00:02:07","0.04","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1025#issuecomment-1729480387","","Byron","","[email protected]","community","No","2023/09/21","13:25:20","2023/09/21","14:40:34","01:15:14","1.25","0.00","0.00"
"gitoxide","Byron","investigate 1025 (interrupted)","","Byron","","[email protected]","community","No","2023/09/21","10:47:22","2023/09/21","11:33:16","00:45:54","0.77","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1670","","Byron","","[email protected]","","No","2023/09/21","10:44:55","2023/09/21","10:47:21","00:02:26","0.04","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/issues/1669#issuecomment-1729125356","","Byron","","[email protected]","","No","2023/09/21","10:35:05","2023/09/21","10:44:54","00:09:49","0.16","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/pull/1027","","Byron","","[email protected]","community","No","2023/09/21","10:00:51","2023/09/21","10:35:05","00:34:14","0.57","0.00","0.00"
"gitoxide","Byron","start of https://github.com/Byron/gitoxide/pull/1027","","Byron","","[email protected]","community","No","2023/09/21","08:29:52","2023/09/21","09:15:49","00:45:57","0.77","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1644#issuecomment-1728908720","","Byron","","[email protected]","","No","2023/09/21","07:54:56","2023/09/21","08:04:51","00:09:55","0.17","0.00","0.00"
"catchup","team docs.rs","","","Byron","","[email protected]","","No","2023/09/20","07:32:48","2023/09/20","07:34:51","00:02:03","0.03","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/commit/8b75434e2c8a082cdeb4971cc6f0ee2bafec45bc#r127829913; https://github.com/gitpython-developers/GitPython/pull/1644#issuecomment-1726999128","","Byron","","[email protected]","","No","2023/09/20","07:24:10","2023/09/20","07:32:40","00:08:30","0.14","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1668; https://github.com/gitpython-developers/GitPython/pull/1667#issuecomment-1726991164","","Byron","","[email protected]","","No","2023/09/20","07:16:40","2023/09/20","07:24:10","00:07:30","0.13","0.00","0.00"
"cargo-gitoxide","Byron","update tracking issue","","Byron","","[email protected]","","No","2023/09/20","07:13:52","2023/09/20","07:16:30","00:02:38","0.04","0.00","0.00"
"cargo-gitoxide","Byron","catchup on zulip","","Byron","","[email protected]","","No","2023/09/19","22:09:00","2023/09/19","22:16:45","00:07:45","0.13","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/issues/442#issuecomment-1725336621","","Byron","","[email protected]","","No","2023/09/19","13:36:28","2023/09/19","13:40:31","00:04:03","0.07","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/smmap/pull/53#issuecomment-1725008875","","Byron","","[email protected]","","No","2023/09/19","09:40:58","2023/09/19","09:57:21","00:16:23","0.27","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/therror/pull/1#issuecomment-1724987573","","Byron","","[email protected]","","No","2023/09/19","09:37:26","2023/09/19","09:40:50","00:03:24","0.06","0.00","0.00"
"gitoxide","Byron","https://github.com/Byron/gitoxide/issues/1025#issuecomment-1724982733","","Byron","","[email protected]","community","No","2023/09/19","09:25:59","2023/09/19","09:37:23","00:11:24","0.19","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1667#pullrequestreview-1632578048","","Byron","","[email protected]","","No","2023/09/19","09:06:01","2023/09/19","09:25:58","00:19:57","0.33","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/GitPython/pull/1666#issuecomment-1724942808","","Byron","","[email protected]","","No","2023/09/19","09:02:01","2023/09/19","09:06:00","00:03:59","0.07","0.00","0.00"
"GitPython","Byron","https://github.com/gitpython-developers/smmap/issues/28#issuecomment-1724919568; https://github.com/gitpython-developers/smmap/pull/53#issuecomment-1724938133;","","Byron","","[email protected]","","No","2023/09/19","08:42:08","2023/09/19","09:02:01","00:19:53","0.33","0.00","0.00"
"Google APIs","Byron","https://github.com/Byron/google-apis-rs/issues/442#issuecomment-1724916482","","Byron","","[email protected]","","No","2023/09/19","08:38:47","2023/09/19","08:42:07","00:03:20","0.06","0.00","0.00"
"onefetch-gitoxide","Byron","https://github.com/spenserblack/gengo/issues/174#issuecomment-1723657414;","","Byron","","[email protected]","","No","2023/09/18","17:06:57","2023/09/18","17:12:23","00:05:26","0.09","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/therror/pull/1#pullrequestreview-1631279879","","Byron","","[email protected]","community","No","2023/09/18","16:49:50","2023/09/18","17:06:38","00:16:48","0.28","0.00","0.00"
"maintenance","Byron","https://github.com/Byron/trash-rs/pull/84#issuecomment-1722890648`","","Byron","","[email protected]","","No","2023/09/18","16:48:05","2023/09/18","16:49:49","00:01:44","0.03","0.00","0.00"