-
Notifications
You must be signed in to change notification settings - Fork 1
/
Git.log
2486 lines (1922 loc) · 142 KB
/
Git.log
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
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\SearchRX.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "SearchRX.Dpr"
add 'SearchRX.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "25/Oct/2004 12:02:44" -m "Initial import into the version control system."
[Development 07c25b1] Initial import into the version control system.
Date: Mon Oct 25 12:02:44 2004 +0100
1 file changed, 451 insertions(+)
create mode 100644 SearchRX.Dpr
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\SearchRX.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "SearchRX.Dpr"
add 'SearchRX.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "29/Oct/2004 09:31:51" -m "Maked changes to the code to make it more efficient"
[Development 69516fe] Maked changes to the code to make it more efficient
Date: Fri Oct 29 09:31:51 2004 +0100
1 file changed, 62 insertions(+), 39 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\SearchRX.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "SearchRX.Dpr"
add 'SearchRX.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "30/Oct/2004 12:53:28" -m "Updated the code to use the standard FindFirst, FindNext and FindClose functions."
[Development 44c55e8] Updated the code to use the standard FindFirst, FindNext and FindClose functions.
Date: Sat Oct 30 12:53:28 2004 +0100
1 file changed, 823 insertions(+), 474 deletions(-)
rewrite SearchRX.Dpr (70%)
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe mv -v "SearchRX.Dpr" "Search.Dpr"
Renaming SearchRX.Dpr to Search.Dpr
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "30/Oct/2004 22:16:32" -m "Fixed bug with specifying file and type attributes and implemented the summarisation of directories."
[Development 4e129f2] Fixed bug with specifying file and type attributes and implemented the summarisation of directories.
Date: Sat Oct 30 22:16:32 2004 +0100
1 file changed, 207 insertions(+), 104 deletions(-)
rename SearchRX.Dpr => Search.Dpr (71%)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "30/Oct/2004 23:13:56" -m "Added indentation to the summary"
[Development fc97f38] Added indentation to the summary
Date: Sat Oct 30 23:13:56 2004 +0100
1 file changed, 3 insertions(+), 2 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "01/Nov/2004 17:53:47" -m "Updated for working with files larger than 2G."
[Development c2e71c4] Updated for working with files larger than 2G.
Date: Mon Nov 1 17:53:47 2004 +0000
1 file changed, 52 insertions(+), 16 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "05/Nov/2004 19:31:06" -m "Updated search output for search results."
[Development d9c7b4c] Updated search output for search results.
Date: Fri Nov 5 19:31:06 2004 +0000
1 file changed, 15 insertions(+), 8 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "05/Nov/2004 20:31:01" -m "Refactored the date convertion routines out into a new library file for use in all applications."
[Development ed46b66] Refactored the date convertion routines out into a new library file for use in all applications.
Date: Fri Nov 5 20:31:01 2004 +0000
1 file changed, 15 insertions(+), 277 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\DGHLibrary50.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\DGHLibrary50.pas"
add 'Externals/DGHLibrary50.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "06/Nov/2004 12:20:45" -m "Initial import into the version control system."
[Development 0dc6f1f] Initial import into the version control system.
Date: Sat Nov 6 12:20:45 2004 +0000
1 file changed, 740 insertions(+)
create mode 100644 Externals/DGHLibrary50.pas
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "06/Nov/2004 12:20:52" -m "Updated the search path display code to ellipsize the path."
[Development c447306] Updated the search path display code to ellipsize the path.
Date: Sat Nov 6 12:20:52 2004 +0000
1 file changed, 18 insertions(+), 3 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "06/Nov/2004 14:27:52" -m "Fixed bug where you must specify a criteria to get the help screen."
[Development a1f966b] Fixed bug where you must specify a criteria to get the help screen.
Date: Sat Nov 6 14:27:52 2004 +0000
1 file changed, 1 insertion(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\DGHLibrary50.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\DGHLibrary50.pas"
add 'Externals/DGHLibrary50.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "01/May/2005 12:01:11" -m "Moved all library functions and procedures into this one library file."
[Development c0ddf36] Moved all library functions and procedures into this one library file.
Date: Sun May 1 12:01:11 2005 +0100
1 file changed, 2850 insertions(+), 7 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\DGHLibrary50.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\DGHLibrary50.pas"
add 'Externals/DGHLibrary50.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "04/Jun/2005 17:56:34" -m "Updated this library file with new style Pascal Doc documentation."
[Development dd9a610] Updated this library file with new style Pascal Doc documentation.
Date: Sat Jun 4 17:56:34 2005 +0100
1 file changed, 1667 insertions(+), 349 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "04/Sep/2005 14:41:57" -m "Updated the Search tool to include for a Q (Quiet) switch which does not output the currently being searched path."
[Development edc321c] Updated the Search tool to include for a Q (Quiet) switch which does not output the currently being searched path.
Date: Sun Sep 4 14:41:57 2005 +0100
1 file changed, 10 insertions(+), 6 deletions(-)
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe mv -v "Externals\DGHLibrary50.pas" "Externals\dghlibrary.pas"
Renaming Externals/DGHLibrary50.pas to Externals/dghlibrary.pas
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "28/Dec/2005 17:42:50" -m "Changed the reference to the DGHLibrary."
[Development 93824a0] Changed the reference to the DGHLibrary.
Date: Wed Dec 28 17:42:50 2005 +0000
1 file changed, 1 insertion(+), 1 deletion(-)
rename Externals/{DGHLibrary50.pas => dghlibrary.pas} (99%)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "30/Dec/2005 17:07:39" -m "Updated reference that need a unit qualifier for BDS 2006."
[Development f411ec7] Updated reference that need a unit qualifier for BDS 2006.
Date: Fri Dec 30 17:07:39 2005 +0000
1 file changed, 4 insertions(+), 3 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "03/Jan/2006 19:25:06" -m "Added Windows to the uses clause."
[Development ae1841f] Added Windows to the uses clause.
Date: Tue Jan 3 19:25:06 2006 +0000
1 file changed, 1 insertion(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "08/Jan/2006 11:10:14" -m "Updated the document date for this module."
[Development 3387e94] Updated the document date for this module.
Date: Sun Jan 8 11:10:14 2006 +0000
1 file changed, 1 insertion(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.dof
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.dof"
add 'Search.dof'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.cfg
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.cfg"
add 'Search.cfg'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.bdsproj
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.bdsproj"
add 'Search.bdsproj'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "19/Jan/2006 22:36:51" -m "Implemented multiple file filter separated by a semi-colon for each search path."
[Development 07188b1] Implemented multiple file filter separated by a semi-colon for each search path.
Date: Thu Jan 19 22:36:51 2006 +0000
5 files changed, 837 insertions(+), 85 deletions(-)
create mode 100644 Search.bdsproj
create mode 100644 Search.cfg
create mode 100644 Search.dof
create mode 100644 search.res
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.dof
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.dof"
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.cfg
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.cfg"
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.bdsproj
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.bdsproj"
add 'Search.bdsproj'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "23/Jan/2006 17:32:38" -m "Fix the problem with the spaces to the edge of the console being written to files."
[Development 8670085] Fix the problem with the spaces to the edge of the console being written to files.
Date: Mon Jan 23 17:32:38 2006 +0000
3 files changed, 5 insertions(+), 5 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Source\FileHandling.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Source\FileHandling.pas"
add 'Source/FileHandling.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "03/Feb/2006 00:19:28" -m "Initial import into the version control system."
[Development 0eebbd9] Initial import into the version control system.
Date: Fri Feb 3 00:19:28 2006 +0000
1 file changed, 274 insertions(+)
create mode 100644 Source/FileHandling.pas
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.dof
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.dof"
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.bdsproj
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.bdsproj"
add 'Search.bdsproj'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.cfg
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.cfg"
add 'Search.cfg'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "05/Feb/2006 22:48:52" -m "Updated the command line switches."
[Development 3237cc4] Updated the command line switches.
Date: Sun Feb 5 22:48:52 2006 +0000
4 files changed, 625 insertions(+), 474 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\source\FileHandling.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Source\FileHandling.pas"
add 'Source/FileHandling.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "06/Feb/2006 22:31:13" -m "Added the GREP style functionallity to the TFiles class.\n"
[Development 6ac813c] Added the GREP style functionallity to the TFiles class.\n
Date: Mon Feb 6 22:31:13 2006 +0000
1 file changed, 150 insertions(+), 25 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.dof
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.dof"
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.cfg
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.cfg"
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.bdsproj
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.bdsproj"
add 'Search.bdsproj'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "08/Feb/2006 09:15:15" -m "Added another switch to formally display the parameter used for the specific search."
[Development 48bc80a] Added another switch to formally display the parameter used for the specific search.
Date: Wed Feb 8 09:15:15 2006 +0000
3 files changed, 249 insertions(+), 96 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\source\FileHandling.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Source\FileHandling.pas"
add 'Source/FileHandling.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "03/Apr/2006 17:40:01" -m "Made the searching for text within a file case insensitive."
[Development 9ad12dd] Made the searching for text within a file case insensitive.
Date: Mon Apr 3 17:40:01 2006 +0100
1 file changed, 3 insertions(+), 2 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.dof
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.dof"
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.cfg
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.cfg"
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.bdsproj
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.bdsproj"
add 'Search.bdsproj'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "03/Apr/2006 17:40:06" -m "Made the searching for text within a file case insensitive."
[Development b10fc39] Made the searching for text within a file case insensitive.
Date: Mon Apr 3 17:40:06 2006 +0100
2 files changed, 3 insertions(+), 3 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "13/Aug/2006 10:42:06" -m "Fix some problems with the library."
[Development 32cf4e2] Fix some problems with the library.
Date: Sun Aug 13 10:42:06 2006 +0100
1 file changed, 4 insertions(+), 4 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "13/Aug/2006 10:42:07" -m "Update the search tool to correctly display the help for the command line.\n"
[Development 2e3a287] Update the search tool to correctly display the help for the command line.\n
Date: Sun Aug 13 10:42:07 2006 +0100
2 files changed, 5 insertions(+), 5 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "13/Aug/2006 10:44:12" -m "Updated the documentation date."
[Development 68f255b] Updated the documentation date.
Date: Sun Aug 13 10:44:12 2006 +0100
1 file changed, 1 insertion(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "01/Oct/2006 16:28:00" -m "Corrected the TStringAlignment.Compare Result information to include originl eastings and northing."
[Development 60442b1] Corrected the TStringAlignment.Compare Result information to include originl eastings and northing.
Date: Sun Oct 1 16:28:00 2006 +0100
1 file changed, 3 insertions(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\source\FileHandling.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Source\FileHandling.pas"
add 'Source/FileHandling.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "07/Nov/2006 18:29:35" -m "Updated the property 'Name' to 'Filename' to not clash with a Delphi directive."
[Development 810ff8f] Updated the property 'Name' to 'Filename' to not clash with a Delphi directive.
Date: Tue Nov 7 18:29:35 2006 +0000
1 file changed, 3 insertions(+), 3 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "07/Nov/2006 18:31:39" -m "Added the ability to provide the search engine with a list of exclusion in either the path the filename or both."
[Development 33516ed] Added the ability to provide the search engine with a list of exclusion in either the path the filename or both.
Date: Tue Nov 7 18:31:39 2006 +0000
2 files changed, 136 insertions(+), 51 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "09/Dec/2006 10:02:11" -m "Updated the help with the new /X option."
[Development 479eebe] Updated the help with the new /X option.
Date: Sat Dec 9 10:02:11 2006 +0000
2 files changed, 2 insertions(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "09/Dec/2006 10:05:53" -m "Updated the help with the new /X option."
[Development ef01b2a] Updated the help with the new /X option.
Date: Sat Dec 9 10:05:53 2006 +0000
2 files changed, 2 insertions(+), 2 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "18/Feb/2007 14:05:42" -m "Refactored the Buld number function to the DLibrary so that it can be used in other applications."
[Development 653dbe5] Refactored the Buld number function to the DLibrary so that it can be used in other applications.
Date: Sun Feb 18 14:05:42 2007 +0000
1 file changed, 82 insertions(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "18/Feb/2007 14:06:09" -m "Refactored the Build number function to the DLibrary so that it can be used in other applications."
[Development d51b3c4] Refactored the Build number function to the DLibrary so that it can be used in other applications.
Date: Sun Feb 18 14:06:09 2007 +0000
2 files changed, 2 insertions(+), 59 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "03/Jul/2007 21:37:54" -m "Added the ability to search for file Owners."
[Development d791597] Added the ability to search for file Owners.
Date: Tue Jul 3 21:37:54 2007 +0100
1 file changed, 4 insertions(+)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "03/Jul/2007 21:37:58" -m "Added the ability to search for file Owners."
[Development 25ae11b] Added the ability to search for file Owners.
Date: Tue Jul 3 21:37:58 2007 +0100
2 files changed, 123 insertions(+), 11 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "22/Jul/2007 16:44:06" -m "Update the GetConsoleTitle method and introduce some new Console functions. Also added a new set of functions OutputToConsoel() and OutputToConsoleLn();\n"
[Development ada6bf0] Update the GetConsoleTitle method and introduce some new Console functions. Also added a new set of functions OutputToConsoel() and OutputToConsoleLn();\n
Date: Sun Jul 22 16:44:06 2007 +0100
1 file changed, 201 insertions(+), 3 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "24/Jul/2007 19:23:55" -m "Updated Get Build Number to take a iBuild number parameter."
[Development 619c3d6] Updated Get Build Number to take a iBuild number parameter.
Date: Tue Jul 24 19:23:55 2007 +0100
1 file changed, 8 insertions(+), 10 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\ConsoleCheckForUpdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\ConsoleCheckForUpdates.pas"
add 'Externals/ConsoleCheckForUpdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "24/Jul/2007 19:35:40" -m "Initial import in to the version control system."
[Development 9ad542d] Initial import in to the version control system.
Date: Tue Jul 24 19:35:40 2007 +0100
1 file changed, 346 insertions(+)
create mode 100644 Externals/ConsoleCheckForUpdates.pas
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "25/Jul/2007 22:19:58" -m "Fixed the adjustment for screen width in OutputToConsole()."
[Development 4f4ae9b] Fixed the adjustment for screen width in OutputToConsole().
Date: Wed Jul 25 22:19:58 2007 +0100
1 file changed, 3 insertions(+), 3 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\MSXML2_TLB.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\MSXML2_TLB.pas"
add 'Externals/MSXML2_TLB.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "26/Jul/2007 18:42:26" -m "Initial import in to the version control system."
[Development 9fa1179] Initial import in to the version control system.
Date: Thu Jul 26 18:42:26 2007 +0100
1 file changed, 4687 insertions(+)
create mode 100644 Externals/MSXML2_TLB.pas
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "26/Jul/2007 19:22:58" -m "Allowed the OutputToConsole() functions to take another parameter which determines whether the cursor is updated."
[Development 4026fb1] Allowed the OutputToConsole() functions to take another parameter which determines whether the cursor is updated.
Date: Thu Jul 26 19:22:58 2007 +0100
1 file changed, 25 insertions(+), 19 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\ConsoleCheckForUpdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\ConsoleCheckForUpdates.pas"
add 'Externals/ConsoleCheckForUpdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "29/Jul/2007 16:12:41" -m "Added a LF after the checking."
[Development 97bb71c] Added a LF after the checking.
Date: Sun Jul 29 16:12:41 2007 +0100
1 file changed, 2 insertions(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\source\FileHandling.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Source\FileHandling.pas"
add 'Source/FileHandling.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "29/Jul/2007 16:13:05" -m "Updated the GREP code to check for a file and exclude directories."
[Development 89c479d] Updated the GREP code to check for a file and exclude directories.
Date: Sun Jul 29 16:13:05 2007 +0100
1 file changed, 5 insertions(+), 4 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "29/Jul/2007 19:24:39" -m "Updated OutputToConsole() declarations."
[Development 196e4dd] Updated OutputToConsole() declarations.
Date: Sun Jul 29 19:24:39 2007 +0100
1 file changed, 7 insertions(+), 7 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "29/Jul/2007 19:24:49" -m "Updated to include checking of the internet for updates and use of the new OutputToConsole() procedures."
[Development 390dd6a] Updated to include checking of the internet for updates and use of the new OutputToConsole() procedures.
Date: Sun Jul 29 19:24:49 2007 +0100
2 files changed, 389 insertions(+), 228 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "30/Jul/2007 21:27:03" -m "Made OutputToConsole() replace #9 (TABS) with analternate character."
[Development 101307a] Made OutputToConsole() replace #9 (TABS) with analternate character.
Date: Mon Jul 30 21:27:03 2007 +0100
1 file changed, 7 insertions(+), 5 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\source\FileHandling.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Source\FileHandling.pas"
add 'Source/FileHandling.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "30/Jul/2007 21:27:11" -m "Update the GREP code to put the line number in the data pointer."
[Development 9b65d5b] Update the GREP code to put the line number in the data pointer.
Date: Mon Jul 30 21:27:11 2007 +0100
1 file changed, 37 insertions(+), 11 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "31/Jul/2007 20:00:33" -m "Updated OutputToConsoel to replace RABs with #175"
[Development bfe2aec] Updated OutputToConsoel to replace RABs with #175
Date: Tue Jul 31 20:00:33 2007 +0100
1 file changed, 2 insertions(+), 2 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\source\FileHandling.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Source\FileHandling.pas"
add 'Source/FileHandling.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "31/Jul/2007 20:00:56" -m "Fixed the GREP problem of output directories."
[Development 24bf403] Fixed the GREP problem of output directories.
Date: Tue Jul 31 20:00:56 2007 +0100
1 file changed, 19 insertions(+), 15 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "01/Aug/2007 18:52:46" -m "Updated the following routines:\n *) OutputToConoleLn() - replace WriteLN with SetConsoleCursorPosition\n *) Change the signature of ForegroundColour/BackgroundColour to take an iNone TColor instance of a screen buffer info structure."
[Development 52e51d3] Updated the following routines:\n *) OutputToConoleLn() - replace WriteLN with SetConsoleCursorPosition\n *) Change the signature of ForegroundColour/BackgroundColour to take an iNone TColor instance of a screen buffer info structure.
Date: Wed Aug 1 18:52:46 2007 +0100
1 file changed, 15 insertions(+), 12 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\ConsoleCheckForUpdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\ConsoleCheckForUpdates.pas"
add 'Externals/ConsoleCheckForUpdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "01/Aug/2007 22:11:39" -m "Updated the code so that if an update is available then Beep() and pause waiting confirmation."
[Development ce7e85e] Updated the code so that if an update is available then Beep() and pause waiting confirmation.
Date: Wed Aug 1 22:11:39 2007 +0100
1 file changed, 7 insertions(+), 2 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\ConsoleCheckForUpdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\ConsoleCheckForUpdates.pas"
add 'Externals/ConsoleCheckForUpdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "08/Aug/2007 19:14:56" -m "Made sure the can handle more than 1 URL just in case the first can not be found."
[Development 8e5f117] Made sure the can handle more than 1 URL just in case the first can not be found.
Date: Wed Aug 8 19:14:56 2007 +0100
1 file changed, 23 insertions(+), 10 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "08/Aug/2007 19:15:47" -m "Fixed the problem with %T not being found in .XER files and updated the software checker to take multple URLs."
[Development 4508ed9] Fixed the problem with %T not being found in .XER files and updated the software checker to take multple URLs.
Date: Wed Aug 8 19:15:47 2007 +0100
2 files changed, 117 insertions(+), 8 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\ConsoleCheckForUpdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\ConsoleCheckForUpdates.pas"
add 'Externals/ConsoleCheckForUpdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "08/Aug/2007 19:54:46" -m "Updated the software checking output to indent the 'update found' message"
[Development d6feeee] Updated the software checking output to indent the 'update found' message
Date: Wed Aug 8 19:54:46 2007 +0100
1 file changed, 3 insertions(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "08/Aug/2007 19:54:50" -m "Updated the software checking output to indent the 'update found' message"
[Development 87c0f0e] Updated the software checking output to indent the 'update found' message
Date: Wed Aug 8 19:54:50 2007 +0100
1 file changed, 0 insertions(+), 0 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\ConsoleCheckForUpdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\ConsoleCheckForUpdates.pas"
add 'Externals/ConsoleCheckForUpdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "08/Aug/2007 21:38:53" -m "Moved the 'Checking for Update' message"
[Development 63a4bea] Moved the 'Checking for Update' message
Date: Wed Aug 8 21:38:53 2007 +0100
1 file changed, 1 insertion(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "19/Sep/2007 19:23:58" -m "Updated the bearing format to add spaces."
[Development de083b2] Updated the bearing format to add spaces.
Date: Wed Sep 19 19:23:58 2007 +0100
1 file changed, 6 insertions(+), 2 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "19/Sep/2007 19:33:04" -m "Changed the name of the 'CreateFalse' constructors to stop C++ warnings."
[Development 807e018] Changed the name of the 'CreateFalse' constructors to stop C++ warnings.
Date: Wed Sep 19 19:33:04 2007 +0100
1 file changed, 8 insertions(+), 8 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "28/Nov/2007 16:19:11" -m "Updated the alignment exception messages."
[Development cd21a53] Updated the alignment exception messages.
Date: Wed Nov 28 16:19:11 2007 +0000
1 file changed, 7 insertions(+), 7 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "02/Dec/2007 14:21:19" -m "Updated DMSAsDecToDecimal()."
[Development 6c0e287] Updated DMSAsDecToDecimal().
Date: Sun Dec 2 14:21:19 2007 +0000
1 file changed, 10 insertions(+), 4 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "28/Dec/2007 02:04:03" -m "Allowed the update method of the Clothoid curve to re-create a false origined curve."
[Development 960eee3] Allowed the update method of the Clothoid curve to re-create a false origined curve.
Date: Fri Dec 28 02:04:03 2007 +0000
1 file changed, 10 insertions(+), 5 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "28/Dec/2007 23:12:23" -m "Updated the ISKeyWord to is Low() and High() for the binary search."
[Development 442c7cd] Updated the ISKeyWord to is Low() and High() for the binary search.
Date: Fri Dec 28 23:12:23 2007 +0000
1 file changed, 1 insertion(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "29/Dec/2007 15:15:41" -m "Raise Exceptions if the Clothoid Measure and Compare go beyond 1000 iterations.\nAlso fixed the signage of the distance returned from Clothoid.Compare."
[Development b2b85a7] Raise Exceptions if the Clothoid Measure and Compare go beyond 1000 iterations.\nAlso fixed the signage of the distance returned from Clothoid.Compare.
Date: Sat Dec 29 15:15:41 2007 +0000
1 file changed, 14 insertions(+), 9 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "02/Jan/2008 14:17:35" -m "Fixed problem in THCircularElement.Measure where the vector bearing can return a negative figure."
[Development 76b971c] Fixed problem in THCircularElement.Measure where the vector bearing can return a negative figure.
Date: Wed Jan 2 14:17:35 2008 +0000
1 file changed, 17 insertions(+), 29 deletions(-)
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe mv -v "Externals\ConsoleCheckForUpdates.pas" "Externals\checkforupdates.pas"
Renaming Externals/ConsoleCheckForUpdates.pas to Externals/checkforupdates.pas
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\checkforupdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\checkforupdates.pas"
add 'Externals/checkforupdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "02/Jan/2008 15:45:17" -m "Updated this code so that it uses a Window Form to GUI apps and the Console for Console apps."
[Development fdf4fe3] Updated this code so that it uses a Window Form to GUI apps and the Console for Console apps.
Date: Wed Jan 2 15:45:17 2008 +0000
1 file changed, 52 insertions(+), 21 deletions(-)
rename Externals/{ConsoleCheckForUpdates.pas => checkforupdates.pas} (83%)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\checkforupdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\checkforupdates.pas"
add 'Externals/checkforupdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "02/Jan/2008 16:30:50" -m "Changed the loading and saving of settings to an INI"
[Development 00f1f6c] Changed the loading and saving of settings to an INI
Date: Wed Jan 2 16:30:50 2008 +0000
1 file changed, 3 insertions(+), 3 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\checkforupdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\checkforupdates.pas"
add 'Externals/checkforupdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "02/Jan/2008 17:01:08" -m "Notified if using a newer version of the software."
[Development 37b5b4b] Notified if using a newer version of the software.
Date: Wed Jan 2 17:01:08 2008 +0000
1 file changed, 38 insertions(+), 23 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "02/Jan/2008 17:58:41" -m "Added the following features:\n * Allow searching of Hidden / System folders \n * If specifying date ranges default time to 00:00 for a start date and 23:59 for a finish date"
[Development 61f1ea6] Added the following features:\n * Allow searching of Hidden / System folders \n * If specifying date ranges default time to 00:00 for a start date and 23:59 for a finish date
Date: Wed Jan 2 17:58:41 2008 +0000
2 files changed, 56 insertions(+), 13 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\checkforupdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\checkforupdates.pas"
add 'Externals/checkforupdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "03/Jan/2008 21:02:10" -m "Made the messages about new or older software display the 2 version numbers."
[Development b0858f5] Made the messages about new or older software display the 2 version numbers.
Date: Thu Jan 3 21:02:10 2008 +0000
1 file changed, 50 insertions(+), 17 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\checkforupdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\checkforupdates.pas"
add 'Externals/checkforupdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "03/Jan/2008 21:20:48" -m "Fixed the problem with BuildVersionNumberm i.e. Bugs start with Space and then A and are index 1, 2 etc not 0, 1 ..."
[Development 5f4044b] Fixed the problem with BuildVersionNumberm i.e. Bugs start with Space and then A and are index 1, 2 etc not 0, 1 ...
Date: Thu Jan 3 21:20:48 2008 +0000
1 file changed, 2 insertions(+), 2 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\checkforupdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\checkforupdates.pas"
add 'Externals/checkforupdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "03/Jan/2008 21:41:37" -m "Made this dialogue modeless but if there are no updates then the dialogue closes after 5 seconds, if there are updates it closes after 60 seconds."
[Development cea4adc] Made this dialogue modeless but if there are no updates then the dialogue closes after 5 seconds, if there are updates it closes after 60 seconds.
Date: Thu Jan 3 21:41:37 2008 +0000
1 file changed, 7 insertions(+), 21 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\checkforupdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\checkforupdates.pas"
add 'Externals/checkforupdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "06/Jan/2008 00:59:16" -m "Ensured TfrmCheckForUpdates is not required in Console Applications."
[Development a25ef03] Ensured TfrmCheckForUpdates is not required in Console Applications.
Date: Sun Jan 6 00:59:16 2008 +0000
1 file changed, 3 insertions(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "06/Jan/2008 01:00:09" -m "Raised custom exceptions and trap these exception therefore letting unkown exception be caught by EurekaLog. ALSO coded around the EurekaLog memory leak detections - not sure if its a EurekaLog bug or a Borland bug."
[Development 3925144] Raised custom exceptions and trap these exception therefore letting unkown exception be caught by EurekaLog. ALSO coded around the EurekaLog memory leak detections - not sure if its a EurekaLog bug or a Borland bug.
Date: Sun Jan 6 01:00:09 2008 +0000
1 file changed, 33 insertions(+), 23 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\source\FileHandling.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Source\FileHandling.pas"
add 'Source/FileHandling.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "11/Jan/2008 20:45:33" -m "Made sure that files not required in GREP are freed."
[Development c2a5f8a] Made sure that files not required in GREP are freed.
Date: Fri Jan 11 20:45:33 2008 +0000
1 file changed, 3 insertions(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\source\ApplicationFunctions.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Source\ApplicationFunctions.pas"
add 'Source/ApplicationFunctions.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "12/Jan/2008 10:46:25" -m "Initial import into the version control system."
[Development 6653899] Initial import into the version control system.
Date: Sat Jan 12 10:46:25 2008 +0000
1 file changed, 797 insertions(+)
create mode 100644 Source/ApplicationFunctions.pas
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "12/Jan/2008 10:51:01" -m "Put the ParamStr command line arguments into a stringlist so that the routines that work with them can be tested.\n\nAlso:\n * Placed the main code in a class.\n * Configured Colours to be loaded from and saved to the INI file."
[Development ddee742] Put the ParamStr command line arguments into a stringlist so that the routines that work with them can be tested.\n\nAlso:\n * Placed the main code in a class.\n * Configured Colours to be loaded from and saved to the INI file.
Date: Sat Jan 12 10:51:01 2008 +0000
2 files changed, 492 insertions(+), 994 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\checkforupdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\checkforupdates.pas"
add 'Externals/checkforupdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "12/Jan/2008 11:15:04" -m "Got this code to load from and save to the ini file the colour settings for messages."
[Development 8ef4798] Got this code to load from and save to the ini file the colour settings for messages.
Date: Sat Jan 12 11:15:04 2008 +0000
1 file changed, 87 insertions(+), 16 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "12/Jan/2008 11:18:40" -m "Got this code to load from and save to the ini file the colour settings for messages."
[Development a2eee03] Got this code to load from and save to the ini file the colour settings for messages.
Date: Sat Jan 12 11:18:40 2008 +0000
1 file changed, 0 insertions(+), 0 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\search.res
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "search.res"
add 'search.res'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "13/Jan/2008 22:14:04" -m "Re-compiled with full version of Eurekalog."
[Development a9a9ac2] Re-compiled with full version of Eurekalog.
Date: Sun Jan 13 22:14:04 2008 +0000
1 file changed, 0 insertions(+), 0 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\checkforupdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\checkforupdates.pas"
add 'Externals/checkforupdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "20/Jan/2008 20:37:32" -m "Updated this code to use an INI file instead of the registry."
[Development 1e0436a] Updated this code to use an INI file instead of the registry.
Date: Sun Jan 20 20:37:32 2008 +0000
1 file changed, 5 insertions(+), 5 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "03/Feb/2008 11:14:55" -m "Made the GetBuildNumber() preocedure raise a custom exception which can be trapped separate from 'Exception'."
[Development a6f4877] Made the GetBuildNumber() preocedure raise a custom exception which can be trapped separate from 'Exception'.
Date: Sun Feb 3 11:14:55 2008 +0000
1 file changed, 13 insertions(+), 7 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\checkforupdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\checkforupdates.pas"
add 'Externals/checkforupdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "03/Feb/2008 11:33:13" -m "Updated CheckVersionNumber() to take a file name"
[Development ea5dfa6] Updated CheckVersionNumber() to take a file name
Date: Sun Feb 3 11:33:13 2008 +0000
1 file changed, 2 insertions(+), 2 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "24/Feb/2008 21:01:20" -m "Added the BuildRootKey as a function to this library (uses the HInstance handle of the module)."
[Development 07ae1be] Added the BuildRootKey as a function to this library (uses the HInstance handle of the module).
Date: Sun Feb 24 21:01:20 2008 +0000
1 file changed, 45 insertions(+), 5 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\checkforupdates.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\checkforupdates.pas"
add 'Externals/checkforupdates.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "09/Mar/2008 21:59:58" -m "Made sure the OK button is enabled and the timer is started when no package is found."
[Development b385e06] Made sure the OK button is enabled and the timer is started when no package is found.
Date: Sun Mar 9 21:59:58 2008 +0000
1 file changed, 7 insertions(+), 1 deletion(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "21/Mar/2008 19:18:32" -m "Fixed OutputToConsoleLn() and OutputToConsole() so that they handle redirected consoles and output information past the end of the screen buffer."
[Development 4110727] Fixed OutputToConsoleLn() and OutputToConsole() so that they handle redirected consoles and output information past the end of the screen buffer.
Date: Fri Mar 21 19:18:32 2008 +0000
1 file changed, 89 insertions(+), 29 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "22/Mar/2008 11:57:04" -m "Made THClothiodElement has only 1 constructor"
[Development 2e75f7e] Made THClothiodElement has only 1 constructor
Date: Sat Mar 22 11:57:04 2008 +0000
1 file changed, 92 insertions(+), 109 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\source\ApplicationFunctions.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Source\ApplicationFunctions.pas"
add 'Source/ApplicationFunctions.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "24/Mar/2008 16:28:21" -m "Added the Windows unit to the module to stop hints."
[Development f39c12d] Added the Windows unit to the module to stop hints.
Date: Mon Mar 24 16:28:21 2008 +0000
1 file changed, 2 insertions(+), 2 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\source\FileHandling.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Source\FileHandling.pas"
add 'Source/FileHandling.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "24/Mar/2008 16:43:10" -m "Wrapped the 'GREP' code in a Try/Except/Finally so that failure to open the file due to permissions are not fatal."
[Development 21223ea] Wrapped the 'GREP' code in a Try/Except/Finally so that failure to open the file due to permissions are not fatal.
Date: Mon Mar 24 16:43:10 2008 +0000
1 file changed, 20 insertions(+), 7 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "25/Mar/2008 23:09:01" -m "Fixed RangeCheck error in EvaluateEquation"
[Development 922a0e0] Fixed RangeCheck error in EvaluateEquation
Date: Tue Mar 25 23:09:01 2008 +0000
1 file changed, 2 insertions(+), 2 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Externals\dghlibrary.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Externals\dghlibrary.pas"
add 'Externals/dghlibrary.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "26/Mar/2008 13:16:37" -m "Allowed ConvertDate() to handle milliseconds"
[Development 7af1d8d] Allowed ConvertDate() to handle milliseconds
Date: Wed Mar 26 13:16:37 2008 +0000
1 file changed, 7 insertions(+), 6 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\source\ApplicationFunctions.pas
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Source\ApplicationFunctions.pas"
add 'Source/ApplicationFunctions.pas'
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe commit -v --date "26/Mar/2008 13:18:37" -m "GetAttributes should return iFileOnly IF there are not TypeAttrs specified."
[Development 526dbc9] GetAttributes should return iFileOnly IF there are not TypeAttrs specified.
Date: Wed Mar 26 13:18:37 2008 +0000
1 file changed, 19 insertions(+), 13 deletions(-)
Extracting: D:\Documents\RAD Studio\Applications\Search.GIT\Search.Dpr
D:\Documents\RAD Studio\Applications\Search.GIT\GIT.exe add -v "Search.Dpr"
add 'Search.Dpr'