-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.local.git.out
executable file
·6449 lines (6337 loc) · 190 KB
/
.local.git.out
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
M Makefile
Your branch is up to date with 'origin/master'.
[master 0082820] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.l
M shell.y
Your branch is up to date with 'origin/master'.
[master 9cd1253] Commit
2 files changed, 29 insertions(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 6aa7ae1] Commit
1 file changed, 20 insertions(+)
M shell.y
Your branch is up to date with 'origin/master'.
[master 20e1979] Commit
1 file changed, 6 insertions(+), 6 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master f32d2d1] Commit
1 file changed, 8 insertions(+)
M shell.y
Your branch is up to date with 'origin/master'.
[master e43ab79] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master ad92437] Commit
1 file changed, 6 insertions(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master bbec646] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
Your branch is up to date with 'origin/master'.
On branch master
Your branch is up to date with 'origin/master'.
Untracked files:
.local.git.out
.shell.y.swp
out
shell
nothing added to commit but untracked files present
M shell.y
Your branch is up to date with 'origin/master'.
[master fa519c3] Commit
1 file changed, 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master b52cdb4] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master ac8f9f8] Commit
1 file changed, 2 insertions(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master b774214] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 70959d0] Commit
1 file changed, 3 insertions(+), 3 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 1a6437e] Commit
1 file changed, 3 insertions(+)
M shell.y
Your branch is up to date with 'origin/master'.
[master 5c020c8] Commit
1 file changed, 7 insertions(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master e577cab] Commit
1 file changed, 3 insertions(+), 1 deletion(-)
M shell.l
Your branch is up to date with 'origin/master'.
[master d359de7] Commit
1 file changed, 4 insertions(+), 4 deletions(-)
M shell.l
Your branch is up to date with 'origin/master'.
[master d954562] Commit
1 file changed, 4 insertions(+), 4 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 7cbd579] Commit
1 file changed, 1 insertion(+)
Your branch is up to date with 'origin/master'.
On branch master
Your branch is up to date with 'origin/master'.
Untracked files:
.local.git.out
.shell.y.swp
out
shell
nothing added to commit but untracked files present
M shell.y
Your branch is up to date with 'origin/master'.
[master 3209938] Commit
1 file changed, 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master e6ca443] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master 56af765] Commit
1 file changed, 14 insertions(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master d4b84d9] Commit
1 file changed, 3 insertions(+), 3 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master c9e3f70] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 365fce6] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master cd6c9fe] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.cc
Your branch is up to date with 'origin/master'.
[master 21b147a] Commit
1 file changed, 41 insertions(+), 2 deletions(-)
M shell.cc
Your branch is up to date with 'origin/master'.
[master 33efd89] Commit
1 file changed, 5 insertions(+)
M shell.cc
Your branch is up to date with 'origin/master'.
[master d76d13e] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.cc
Your branch is up to date with 'origin/master'.
[master 76a01e0] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.cc
Your branch is up to date with 'origin/master'.
[master 4a6cd78] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M shell.cc
Your branch is up to date with 'origin/master'.
[master 302c6db] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
Your branch is up to date with 'origin/master'.
On branch master
Your branch is up to date with 'origin/master'.
Untracked files:
.local.git.out
.shell.cc.swp
out
shell
nothing added to commit but untracked files present
M command.cc
Your branch is up to date with 'origin/master'.
[master 71af0ee] Commit
1 file changed, 12 insertions(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master 60509e0] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master 5c4680d] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master aebb3fc] Commit
1 file changed, 16 insertions(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master 33c8949] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 08d0ce5] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 94bc0f5] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
Your branch is up to date with 'origin/master'.
On branch master
Your branch is up to date with 'origin/master'.
Untracked files:
.command.cc.swp
.local.git.out
out
shell
nothing added to commit but untracked files present
M command.cc
Your branch is up to date with 'origin/master'.
[master af7b01b] Commit
1 file changed, 10 insertions(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 91a00a9] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 1f1699a] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 2f07087] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 4d79547] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 5b38519] Commit
1 file changed, 1 insertion(+), 2 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 0378f48] Commit
1 file changed, 2 insertions(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 8913764] Commit
1 file changed, 10 insertions(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master 5eff8d4] Commit
1 file changed, 3 insertions(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 83977c8] Commit
1 file changed, 3 insertions(+)
M command.cc
M shell.y
Your branch is up to date with 'origin/master'.
[master 15069be] Commit
2 files changed, 3 insertions(+), 3 deletions(-)
M command.cc
M shell.y
Your branch is up to date with 'origin/master'.
[master 4e12234] Commit
2 files changed, 3 insertions(+), 3 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master c82ce19] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master 4540536] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master b7e3501] Commit
1 file changed, 3 insertions(+), 3 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 3d3827b] Commit
1 file changed, 4 insertions(+), 5 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master e37c59a] Commit
1 file changed, 67 insertions(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master 214ee6b] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.hh
M shell.y
Your branch is up to date with 'origin/master'.
[master ab82574] Commit
2 files changed, 3 insertions(+), 2 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master c64f2c2] Commit
1 file changed, 6 insertions(+), 3 deletions(-)
Your branch is up to date with 'origin/master'.
On branch master
Your branch is up to date with 'origin/master'.
Untracked files:
.command.cc.swp
.local.git.out
shell
nothing added to commit but untracked files present
M command.cc
Your branch is up to date with 'origin/master'.
[master e7962ad] Commit
1 file changed, 3 insertions(+)
M shell.y
Your branch is up to date with 'origin/master'.
[master abc9b7b] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 1b832ad] Commit
1 file changed, 1 insertion(+)
M shell.y
Your branch is up to date with 'origin/master'.
[master 10496d5] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 67a2fad] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master b039ace] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M simpleCommand.cc
Your branch is up to date with 'origin/master'.
[master 90b01d0] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 1f456c1] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 0e2b2c3] Commit
1 file changed, 1 insertion(+), 2 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 33a0545] Commit
1 file changed, 4 insertions(+), 2 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master e92af7d] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master e359e9a] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 83f6a21] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master dfcb13c] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 17040c4] Commit
1 file changed, 1 insertion(+), 2 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master eb9279c] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master 83155ed] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master ce4b665] Commit
1 file changed, 6 insertions(+), 6 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 41e06c0] Commit
1 file changed, 17 insertions(+), 9 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 4c73527] Commit
1 file changed, 1 insertion(+)
M shell.y
Your branch is up to date with 'origin/master'.
[master 624a28d] Commit
1 file changed, 5 insertions(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 18f2369] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 9b126fc] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master 85d2a19] Commit
1 file changed, 7 insertions(+), 6 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 7d817f4] Commit
1 file changed, 4 insertions(+), 3 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 9404ea6] Commit
1 file changed, 3 insertions(+), 2 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 57cba90] Commit
1 file changed, 2 insertions(+), 3 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 946d670] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 1854017] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 05f1dea] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 64ad8a9] Commit
1 file changed, 9 insertions(+), 7 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 5e29122] Commit
1 file changed, 2 insertions(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 576a00b] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 7737871] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 8bb7b9e] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master a101754] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 919fb4d] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 29f8f86] Commit
1 file changed, 4 insertions(+), 4 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master e135e11] Commit
1 file changed, 5 insertions(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 2b1b7e5] Commit
1 file changed, 9 insertions(+), 6 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master ade9e24] Commit
1 file changed, 4 insertions(+), 4 deletions(-)
M shell.cc
M test-shell/testall.out
Your branch is up to date with 'origin/master'.
[master 39ae68d] Commit
2 files changed, 16 insertions(+)
M shell.cc
Your branch is up to date with 'origin/master'.
[master 18256ea] Commit
1 file changed, 9 insertions(+), 9 deletions(-)
M shell.cc
Your branch is up to date with 'origin/master'.
[master db9e6af] Commit
1 file changed, 11 insertions(+), 10 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 92875b8] Commit
1 file changed, 23 insertions(+), 6 deletions(-)
Your branch is up to date with 'origin/master'.
On branch master
Your branch is up to date with 'origin/master'.
Untracked files:
.command.cc.swp
.local.git.out
errFile
out
outer
shell
test-shell/out_shell
nothing added to commit but untracked files present
M command.cc
Your branch is up to date with 'origin/master'.
[master 2219e2b] Commit
1 file changed, 5 insertions(+), 5 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master f583ada] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master 77ea6c7] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 5dc001c] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master a07f677] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master eef816c] Commit
1 file changed, 3 insertions(+), 9 deletions(-)
M command.cc
M command.hh
M shell.y
Your branch is up to date with 'origin/master'.
[master 885ba4f] Commit
3 files changed, 11 insertions(+), 7 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 4898a50] Commit
1 file changed, 47 insertions(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master e49b98c] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M command.cc
M test-shell/testall.out
Your branch is up to date with 'origin/master'.
[master 1ddb59c] Commit
2 files changed, 2 insertions(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 2ba7692] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master cbb93cf] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
M test-shell/test_cd4
Your branch is up to date with 'origin/master'.
[master 7566fc0] Commit
2 files changed, 11 insertions(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 8e6b389] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
M test-shell/test_cd4
M test-shell/test_setenv
M test-shell/testall
Your branch is up to date with 'origin/master'.
[master 6d27164] Commit
4 files changed, 8 insertions(+), 4 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master eb6e5cd] Commit
1 file changed, 1 insertion(+), 4 deletions(-)
M command.cc
M shell.cc
Your branch is up to date with 'origin/master'.
[master 5f0ce58] Commit
2 files changed, 4 insertions(+)
M shell.cc
Your branch is up to date with 'origin/master'.
[master 931ae58] Commit
1 file changed, 1 insertion(+), 2 deletions(-)
M command.cc
M shell.cc
Your branch is up to date with 'origin/master'.
[master f3f8525] Commit
2 files changed, 4 insertions(+), 4 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 006d44f] Commit
1 file changed, 3 insertions(+), 3 deletions(-)
M shell.cc
Your branch is up to date with 'origin/master'.
[master a425979] Commit
1 file changed, 2 insertions(+), 1 deletion(-)
M shell.cc
Your branch is up to date with 'origin/master'.
[master a5ad813] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.cc
Your branch is up to date with 'origin/master'.
[master 0743157] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
M shell.cc
Your branch is up to date with 'origin/master'.
[master b4620c3] Commit
2 files changed, 4 insertions(+), 4 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master ecd3313] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 40c5507] Commit
1 file changed, 1 insertion(+)
M command.cc
M shell.cc
M test-shell/testall.out
Your branch is up to date with 'origin/master'.
[master b7430f6] Commit
3 files changed, 12 insertions(+), 4 deletions(-)
M shell.cc
Your branch is up to date with 'origin/master'.
[master d135fff] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
M shell.cc
Your branch is up to date with 'origin/master'.
[master cdc00c0] Commit
2 files changed, 2 insertions(+), 10 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 1669315] Commit
1 file changed, 2 insertions(+), 1 deletion(-)
M command.cc
M command.hh
M shell.y
Your branch is up to date with 'origin/master'.
[master edbe06c] Commit
3 files changed, 31 insertions(+), 3 deletions(-)
M command.cc
M command.hh
Your branch is up to date with 'origin/master'.
[master c1a1ef8] Commit
2 files changed, 4 insertions(+), 4 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 2206e73] Commit
1 file changed, 23 insertions(+), 6 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master b80e3e3] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master bd3a84a] Commit
1 file changed, 2 insertions(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master a3b7eb8] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master bfff9ab] Commit
1 file changed, 1 deletion(-)
M command.cc
M command.hh
M shell.y
Your branch is up to date with 'origin/master'.
[master b6313ce] Commit
3 files changed, 23 insertions(+), 31 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master f0e48c4] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master d03b885] Commit
1 file changed, 6 insertions(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master db42aed] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
M command.hh
M shell.y
M test-shell/testall.out
Your branch is up to date with 'origin/master'.
[master c152e5b] Commit
4 files changed, 1 insertion(+), 52 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master c4d0f8f] Commit
1 file changed, 6 insertions(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master aabd08b] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master efd4703] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
M test-shell/test_redirect_input
Your branch is up to date with 'origin/master'.
[master 04bb723] Commit
2 files changed, 5 insertions(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 76c90e2] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M test-shell/test_redirect_input
Your branch is up to date with 'origin/master'.
[master a1e6263] Commit
1 file changed, 4 deletions(-)
M command.cc
M test-shell/test_redirect_input
M test-shell/testall.out
Your branch is up to date with 'origin/master'.
[master 52fc161] Commit
3 files changed, 14 insertions(+), 1 deletion(-)
M command.cc
M test-shell/test_cd4
M test-shell/testall.out
Your branch is up to date with 'origin/master'.
[master b624ee3] Commit
3 files changed, 4 insertions(+), 4 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master eab365d] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
M test-shell/testall.out
Your branch is up to date with 'origin/master'.
[master a0a49a6] Commit
2 files changed, 4 insertions(+), 2 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 869ee65] Commit
1 file changed, 4 insertions(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master 350bdb5] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 32f4bea] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master a69de65] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master d0ce853] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 742d7c2] Commit
1 file changed, 3 insertions(+), 3 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master c26ea47] Commit
1 file changed, 3 insertions(+), 3 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master c60ecda] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 247c3e4] Commit
1 file changed, 25 insertions(+), 4 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 97993e7] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 0941ff6] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 7864a98] Commit
1 file changed, 18 insertions(+), 18 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master f710ef2] Commit
1 file changed, 7 insertions(+), 7 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master b9c2313] Commit
1 file changed, 6 insertions(+), 4 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 8619026] Commit
1 file changed, 1 insertion(+)
M command.cc
Your branch is up to date with 'origin/master'.
[master 2b007b2] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master d0ba9d3] Commit
1 file changed, 6 insertions(+), 4 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 252ea2a] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master f97b0b8] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master c857c4f] Commit
1 file changed, 5 insertions(+), 7 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master 7040aba] Commit
1 file changed, 4 insertions(+), 14 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master aa57c07] Commit
1 file changed, 16 insertions(+), 2 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 44b3a3f] Commit
1 file changed, 1 insertion(+)
M shell.y
Your branch is up to date with 'origin/master'.
[master 6767e36] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master e30ae1a] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master b8b3c14] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 7c4c44e] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 2061809] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 32b0275] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 1490418] Commit
1 file changed, 5 insertions(+), 5 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 0eb03c4] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 38ed3ee] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master d0addf7] Commit
1 file changed, 3 insertions(+), 3 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master b544b84] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 36d6e03] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master afa1875] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master f6056b9] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master d8856da] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 984eda9] Commit
1 file changed, 1 insertion(+)
M shell.y
Your branch is up to date with 'origin/master'.
[master ac667d4] Commit
1 file changed, 1 insertion(+)
M shell.y
Your branch is up to date with 'origin/master'.
[master 9faf9ae] Commit
1 file changed, 5 insertions(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 2948cd8] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 0efeb95] Commit
1 file changed, 1 insertion(+), 7 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master e1d0940] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 45809e2] Commit
1 file changed, 3 insertions(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master ac4dcb8] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master f6ebd07] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master de1cacc] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 577c4fd] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 299a5da] Commit
1 file changed, 3 insertions(+), 2 deletions(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master af6b0c5] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master d880475] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 96bba23] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 1cb1bc9] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master e39c35b] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 35b901d] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master e74b807] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 82a56c8] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master a5435e0] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master ea749b5] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 8699c52] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.y
Your branch is up to date with 'origin/master'.
[master 4cc295c] Commit
1 file changed, 8 insertions(+), 8 deletions(-)
M command.cc
Your branch is up to date with 'origin/master'.
[master be2f35d] Commit
1 file changed, 1 insertion(+)
M shell.l
Your branch is up to date with 'origin/master'.
[master 7a9c12c] Commit
1 file changed, 8 insertions(+)
M shell.l
Your branch is up to date with 'origin/master'.
[master 5eb36d8] Commit
1 file changed, 1 insertion(+), 1 deletion(-)
M shell.l
Your branch is up to date with 'origin/master'.
[master 0e7ab8f] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M shell.l
Your branch is up to date with 'origin/master'.
[master d0167fd] Commit
1 file changed, 2 insertions(+), 1 deletion(-)
M shell.l
Your branch is up to date with 'origin/master'.
[master 0dc9d5a] Commit
1 file changed, 2 insertions(+), 2 deletions(-)
M shell.l
Your branch is up to date with 'origin/master'.
[master 8059f7e] Commit
1 file changed, 1 insertion(+), 1 deletion(-)