-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathoutput
More file actions
2687 lines (2397 loc) · 129 KB
/
output
File metadata and controls
2687 lines (2397 loc) · 129 KB
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
> gitbutler-docs@0.0.0 update-cli /Users/schacon/projects/gitbutler-docs
> node scripts/update-cli-outputs.js
Starting CLI output update process...
Changing to example project: /Users/schacon/projects/why
Found setup script: /Users/schacon/projects/gitbutler-docs/scripts/pre-update-cli.sh
Executing setup script...
Running pre-update-cli setup...
Pre-update-cli setup completed
Setup script completed
Restoring to starting hash: f0f437258043
[1;32m✓[0m Restore completed successfully!
[32m
Workspace has been restored to the selected snapshot.[0m
Returning to docs directory: /Users/schacon/projects/gitbutler-docs
Found 85 MDX files
Found restore command: f0f437258043
Found run command: but rub wu gemfile-fixes
Run command output:
Found run command: but rub te feature-bookmarks
Run command output:
Found CLI command: but status
Running restore: but restore f0f437258043
Cache filename for command "but status": branching-and-commiting-but-status-1
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-8be57a65a091d9ff.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mREADME-es.md[0m 🔒 [4;34mda[0m[34m42d06[0m
┊ [4;34mh0[0m A [32mREADME.new.md[0m
┊ [4;34mi0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊
┊╭┄[4;34mge[0m [[1;32mgemfile-fixes[0m] [2;3m[0m
┊● [4;34mda[0m[2m42d06[0m Add Spanish README and bookmarks feature
┊● [4;34mfd[0m[2mbd753[0m just the one
┊│
┊├┄[4;34mat[0m [[1;32mfeature-bookmarks[0m] [2;3m[0m
┊[32m●[0m [4;34m22[0m[2m3fdd6[0m feat: Add bookmarks table to store user-tweet rela
├╯
┊
┊╭┄[4;34msc[0m [[1;32msc-branch-26[0m] [2;3m[0m
┊● [4;34mf5[0m[2m5a30e[0m add bookmark model and associations
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mREADME-es.md[0m 🔒 [4;34mda[0m[34m42d06[0m
┊ [4;34mh0[0m A [32mREADME.new.md[0m
┊ [4;34mi0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊
┊╭┄[4;34mge[0m [[1;32mgemfile-fixes[0m] [2;3m[0m
┊● [4;34mda[0m[2m42d06[0m Add Spanish README and bookmarks feature
┊● [4;34mfd[0m[2mbd753[0m just the one
┊│
┊├┄[4;34mat[0m [[1;32mfeature-bookmarks[0m] [2;3m[0m
┊[32m●[0m [4;34m22[0m[2m3fdd6[0m feat: Add bookmarks table to store user-tweet rela
├╯
┊
┊╭┄[4;34msc[0m [[1;32msc-branch-26[0m] [2;3m[0m
┊● [4;34mf5[0m[2m5a30e[0m add bookmark model and associations
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-8be57a65a091d9ff.html
Calculated height: 506px (23 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found restore command: 04d62f15beb4
Found CLI command: but status
Running restore: but restore 04d62f15beb4
Cache filename for command "but status": branching-and-commiting-but-status-2
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-e188332abfd8d0cd.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [4;34mi0[0m A [32mapp/models/bookmark.rb[0m
┊ [4;34mj0[0m M [33mapp/models/user.rb[0m
┊ [4;34mk0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [4;34ml0[0m M [33mconfig/routes.rb[0m
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but branch new` to create a new branch to work on[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [4;34mi0[0m A [32mapp/models/bookmark.rb[0m
┊ [4;34mj0[0m M [33mapp/models/user.rb[0m
┊ [4;34mk0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [4;34ml0[0m M [33mconfig/routes.rb[0m
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but branch new` to create a new branch to work on[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-e188332abfd8d0cd.html
Calculated height: 308px (14 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found run command: git branch -D user-bookmarks
Run command output:
Deleted branch user-bookmarks (was b4eeb4c1).
Found CLI command: but branch new user-bookmarks
Cache filename for command "but branch new user-bookmarks": branching-and-commiting-but-branch-3
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-6b34daff1a48ef1c.html" -t light '/usr/local/bin/but branch new user-bookmarks'
Working directory: /Users/schacon/projects/why
ansi-senor output: Created branch user-bookmarks
---
❯ /usr/local/bin/but branch new user-bookmarks took 0s
Created branch user-bookmarks
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-6b34daff1a48ef1c.html
Calculated height: 110px (5 lines)
Found CLI command: but status
Cache filename for command "but status": branching-and-commiting-but-status-4
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-36986c929421ca8a.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [4;34mi0[0m A [32mapp/models/bookmark.rb[0m
┊ [4;34mj0[0m M [33mapp/models/user.rb[0m
┊ [4;34mk0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [4;34ml0[0m M [33mconfig/routes.rb[0m
┊
┊╭┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [4;34mi0[0m A [32mapp/models/bookmark.rb[0m
┊ [4;34mj0[0m M [33mapp/models/user.rb[0m
┊ [4;34mk0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [4;34ml0[0m M [33mconfig/routes.rb[0m
┊
┊╭┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-36986c929421ca8a.html
Calculated height: 374px (17 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but commit -m 'all the user bookmarks'
Cache filename for command "but commit -m 'all the user bookmarks'": branching-and-commiting-but-commit-5
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-cfe062541d58853a.html" -t light '/usr/local/bin/but commit -m 'all the user bookmarks''
Working directory: /Users/schacon/projects/why
Calculated height: 110px (5 lines)
Content or height changed for command "but commit -m 'all the user bookmarks'" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but status
Cache filename for command "but status": branching-and-commiting-but-status-6
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-9be6da62cac191b4.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [2;3mno changes[0m
┊
┊╭┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34mbf[0m[2m8942e[0m all the user bookmarks
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but help` for all commands[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [2;3mno changes[0m
┊
┊╭┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34mbf[0m[2m8942e[0m all the user bookmarks
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but help` for all commands[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-9be6da62cac191b4.html
Calculated height: 286px (13 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found run command: git branch -D liked-tweets
Run command output:
Deleted branch liked-tweets (was 96485a2e).
Found run command: echo 'test' > app/controllers/likes_controller.rb
Run command output:
Found run command: echo 'test' > app/models/like.rb
Run command output:
Found CLI command: but branch new liked-tweets
Cache filename for command "but branch new liked-tweets": branching-and-commiting-but-branch-7
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-de1beedc45ce956b.html" -t light '/usr/local/bin/but branch new liked-tweets'
Working directory: /Users/schacon/projects/why
ansi-senor output: Created branch liked-tweets
---
❯ /usr/local/bin/but branch new liked-tweets took 0s
Created branch liked-tweets
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-de1beedc45ce956b.html
Calculated height: 110px (5 lines)
Found CLI command: but status
Cache filename for command "but status": branching-and-commiting-but-status-8
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-9e143f12c3f8f27f.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mapp/controllers/likes_controller.rb[0m
┊ [4;34mh0[0m M [33mapp/models/like.rb[0m
┊
┊╭┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34mbf[0m[2m8942e[0m all the user bookmarks
├╯
┊
┊╭┄[4;34mli[0m [[1;32mliked-tweets[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mapp/controllers/likes_controller.rb[0m
┊ [4;34mh0[0m M [33mapp/models/like.rb[0m
┊
┊╭┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34mbf[0m[2m8942e[0m all the user bookmarks
├╯
┊
┊╭┄[4;34mli[0m [[1;32mliked-tweets[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-9e143f12c3f8f27f.html
Calculated height: 374px (17 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but commit -m "liked tweets changes" liked-tweets
Cache filename for command "but commit -m "liked tweets changes" liked-tweets": branching-and-commiting-but-commit-9
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-69819772575a954b.html" -t light '/usr/local/bin/but commit -m "liked tweets changes" liked-tweets'
Working directory: /Users/schacon/projects/why
Calculated height: 110px (5 lines)
Content or height changed for command "but commit -m "liked tweets changes" liked-tweets" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but status
Cache filename for command "but status": branching-and-commiting-but-status-10
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-d9f17c8a3b218993.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [2;3mno changes[0m
┊
┊╭┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34mbf[0m[2m8942e[0m all the user bookmarks
├╯
┊
┊╭┄[4;34mli[0m [[1;32mliked-tweets[0m] [2;3m[0m
┊● [4;34m8a[0m[2mb788d[0m liked tweets changes
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but help` for all commands[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [2;3mno changes[0m
┊
┊╭┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34mbf[0m[2m8942e[0m all the user bookmarks
├╯
┊
┊╭┄[4;34mli[0m [[1;32mliked-tweets[0m] [2;3m[0m
┊● [4;34m8a[0m[2mb788d[0m liked tweets changes
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but help` for all commands[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-d9f17c8a3b218993.html
Calculated height: 374px (17 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but status -f
Cache filename for command "but status -f": branching-and-commiting-but-status-11
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-50f9b1154039cfe8.html" -t light '/usr/local/bin/but status -f'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [2;3mno changes[0m
┊
┊╭┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34mbf[0m[2m8942e[0m all the user bookmarks
┊│ [4;34mi0[0m M [33mGemfile[0m
┊│ [4;34mj0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊│ [4;34mk0[0m A [32mapp/models/bookmark.rb[0m
┊│ [4;34ml0[0m M [33mapp/models/user.rb[0m
┊│ [4;34mm0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊│ [4;34mn0[0m M [33mconfig/routes.rb[0m
├╯
┊
┊╭┄[4;34mli[0m [[1;32mliked-tweets[0m] [2;3m[0m
┊● [4;34m8a[0m[2mb788d[0m liked tweets changes
┊│ [4;34mo0[0m M [33mapp/controllers/likes_controller.rb[0m
┊│ [4;34mp0[0m M [33mapp/models/like.rb[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but help` for all commands[0m
---
❯ /usr/local/bin/but status -f took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [2;3mno changes[0m
┊
┊╭┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34mbf[0m[2m8942e[0m all the user bookmarks
┊│ [4;34mi0[0m M [33mGemfile[0m
┊│ [4;34mj0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊│ [4;34mk0[0m A [32mapp/models/bookmark.rb[0m
┊│ [4;34ml0[0m M [33mapp/models/user.rb[0m
┊│ [4;34mm0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊│ [4;34mn0[0m M [33mconfig/routes.rb[0m
├╯
┊
┊╭┄[4;34mli[0m [[1;32mliked-tweets[0m] [2;3m[0m
┊● [4;34m8a[0m[2mb788d[0m liked tweets changes
┊│ [4;34mo0[0m M [33mapp/controllers/likes_controller.rb[0m
┊│ [4;34mp0[0m M [33mapp/models/like.rb[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but help` for all commands[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-50f9b1154039cfe8.html
Calculated height: 550px (25 lines)
Content or height changed for command "but status -f" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found run command: git branch -D liked-tweets-stacked
Run command output:
Deleted branch liked-tweets-stacked (was 6fb3f76b).
Found restore command: e32713a1f41c
Found CLI command: but branch new -a user-bookmarks liked-tweets-stacked
Running restore: but restore e32713a1f41c
Cache filename for command "but branch new -a user-bookmarks liked-tweets-stacked": branching-and-commiting-but-branch-12
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-e17635e4acf1cc3d.html" -t light '/usr/local/bin/but branch new -a user-bookmarks liked-tweets-stacked'
Working directory: /Users/schacon/projects/why
ansi-senor output: Created branch liked-tweets-stacked
---
❯ /usr/local/bin/but branch new -a user-bookmarks liked-tweets-stacked took 0s
Created branch liked-tweets-stacked
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-e17635e4acf1cc3d.html
Calculated height: 110px (5 lines)
Found CLI command: but status
Cache filename for command "but status": branching-and-commiting-but-status-13
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-c7ec12b0d550f239.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m M [33mapp/models/user.rb[0m
┊ [4;34mi0[0m M [33mconfig/routes.rb[0m
┊
┊╭┄[4;34mli[0m [[1;32mliked-tweets-stacked[0m] [2;3m(no commits)[0m
┊│
┊├┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34me6[0m[2m77a2e[0m user bookmarks feature
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m M [33mapp/models/user.rb[0m
┊ [4;34mi0[0m M [33mconfig/routes.rb[0m
┊
┊╭┄[4;34mli[0m [[1;32mliked-tweets-stacked[0m] [2;3m(no commits)[0m
┊│
┊├┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34me6[0m[2m77a2e[0m user bookmarks feature
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-c7ec12b0d550f239.html
Calculated height: 374px (17 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but commit -m "liked tweets changes" liked-tweets-stacked
Cache filename for command "but commit -m "liked tweets changes" liked-tweets-stacked": branching-and-commiting-but-commit-14
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-46925730f1f7ea14.html" -t light '/usr/local/bin/but commit -m "liked tweets changes" liked-tweets-stacked'
Working directory: /Users/schacon/projects/why
Calculated height: 110px (5 lines)
Content or height changed for command "but commit -m "liked tweets changes" liked-tweets-stacked" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but status
Cache filename for command "but status": branching-and-commiting-but-status-15
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-5f7cd7a98e2d1a08.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [2;3mno changes[0m
┊
┊╭┄[4;34mli[0m [[1;32mliked-tweets-stacked[0m] [2;3m[0m
┊● [4;34me4[0m[2mb87ad[0m liked tweets changes
┊│
┊├┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34me6[0m[2m77a2e[0m user bookmarks feature
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but help` for all commands[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [2;3mno changes[0m
┊
┊╭┄[4;34mli[0m [[1;32mliked-tweets-stacked[0m] [2;3m[0m
┊● [4;34me4[0m[2mb87ad[0m liked tweets changes
┊│
┊├┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34me6[0m[2m77a2e[0m user bookmarks feature
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but help` for all commands[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-5f7cd7a98e2d1a08.html
Calculated height: 352px (16 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found restore command: d5c7317b0fd4
Found CLI command: but status
Running restore: but restore d5c7317b0fd4
Cache filename for command "but status": branching-and-commiting-but-status-16
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-0af1191992cb144f.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [4;34mi0[0m A [32mapp/models/bookmark.rb[0m
┊ [4;34mj0[0m M [33mapp/models/user.rb[0m
┊ [4;34mk0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [4;34ml0[0m M [33mconfig/routes.rb[0m
┊
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m(no commits)[0m
├╯
┊
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [4;34mi0[0m A [32mapp/models/bookmark.rb[0m
┊ [4;34mj0[0m M [33mapp/models/user.rb[0m
┊ [4;34mk0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [4;34ml0[0m M [33mconfig/routes.rb[0m
┊
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m(no commits)[0m
├╯
┊
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-0af1191992cb144f.html
Calculated height: 440px (20 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but rub h0,i0,k0 user-bookmarks
Cache filename for command "but rub h0,i0,k0 user-bookmarks": branching-and-commiting-but-rub-17
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-bbe18bb161931b17.html" -t light '/usr/local/bin/but rub h0,i0,k0 user-bookmarks'
Working directory: /Users/schacon/projects/why
ansi-senor output: Staged the only hunk in app/controllers/bookmarks_controller.rb in the unassigned area → [32m[user-bookmarks][0m.
Staged the only hunk in app/models/bookmark.rb in the unassigned area → [32m[user-bookmarks][0m.
Staged the only hunk in app/views/bookmarks/index.html.erb in the unassigned area → [32m[user-bookmarks][0m.
---
❯ /usr/local/bin/but rub h0,i0,k0 user-bookmarks took 0s
Staged the only hunk in app/controllers/bookmarks_controller.rb in the unassigned area → [32m[user-bookmarks][0m.
Staged the only hunk in app/models/bookmark.rb in the unassigned area → [32m[user-bookmarks][0m.
Staged the only hunk in app/views/bookmarks/index.html.erb in the unassigned area → [32m[user-bookmarks][0m.
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-bbe18bb161931b17.html
Calculated height: 154px (7 lines)
Found CLI command: but st
Cache filename for command "but st": branching-and-commiting-but-st-18
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-14d8c0ab27666c95.html" -t light '/usr/local/bin/but st'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m M [33mapp/models/user.rb[0m
┊ [4;34mi0[0m M [33mconfig/routes.rb[0m
┊
┊ ╭┄[4;34mu0[0m [[1;36mstaged to user-bookmarks[0m]
┊ [2m│[0m [4;34mj0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [2m│[0m [4;34mk0[0m A [32mapp/models/bookmark.rb[0m
┊ [2m│[0m [4;34ml0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [2m│[0m
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m(no commits)[0m
├╯
┊
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
❯ /usr/local/bin/but st took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m M [33mapp/models/user.rb[0m
┊ [4;34mi0[0m M [33mconfig/routes.rb[0m
┊
┊ ╭┄[4;34mu0[0m [[1;36mstaged to user-bookmarks[0m]
┊ [2m│[0m [4;34mj0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [2m│[0m [4;34mk0[0m A [32mapp/models/bookmark.rb[0m
┊ [2m│[0m [4;34ml0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [2m│[0m
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m(no commits)[0m
├╯
┊
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-14d8c0ab27666c95.html
Calculated height: 484px (22 lines)
Content or height changed for command "but st" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but rub h0 user-changes
Cache filename for command "but rub h0 user-changes": branching-and-commiting-but-rub-19
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-2fae59f663dc1b65.html" -t light '/usr/local/bin/but rub h0 user-changes'
Working directory: /Users/schacon/projects/why
ansi-senor output: Staged all hunks in app/models/user.rb in the unassigned area → [32m[user-changes][0m.
---
❯ /usr/local/bin/but rub h0 user-changes took 0s
Staged all hunks in app/models/user.rb in the unassigned area → [32m[user-changes][0m.
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-2fae59f663dc1b65.html
Calculated height: 110px (5 lines)
Found CLI command: but status
Cache filename for command "but status": branching-and-commiting-but-status-20
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-d9a9ad83301496ad.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m M [33mconfig/routes.rb[0m
┊
┊ ╭┄[4;34mu0[0m [[1;36mstaged to user-bookmarks[0m]
┊ [2m│[0m [4;34mj0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [2m│[0m [4;34mk0[0m A [32mapp/models/bookmark.rb[0m
┊ [2m│[0m [4;34ml0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [2m│[0m
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m(no commits)[0m
├╯
┊
┊ ╭┄[4;34mv0[0m [[1;36mstaged to user-changes[0m]
┊ [2m│[0m [4;34mi0[0m M [33mapp/models/user.rb[0m
┊ [2m│[0m
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m M [33mconfig/routes.rb[0m
┊
┊ ╭┄[4;34mu0[0m [[1;36mstaged to user-bookmarks[0m]
┊ [2m│[0m [4;34mj0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [2m│[0m [4;34mk0[0m A [32mapp/models/bookmark.rb[0m
┊ [2m│[0m [4;34ml0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [2m│[0m
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m(no commits)[0m
├╯
┊
┊ ╭┄[4;34mv0[0m [[1;36mstaged to user-changes[0m]
┊ [2m│[0m [4;34mi0[0m M [33mapp/models/user.rb[0m
┊ [2m│[0m
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-d9a9ad83301496ad.html
Calculated height: 528px (24 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but commit -o -m "liked tweets view" bo
Cache filename for command "but commit -o -m "liked tweets view" bo": branching-and-commiting-but-commit-21
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-c4ec80e8978391b1.html" -t light '/usr/local/bin/but commit -o -m "liked tweets view" bo'
Working directory: /Users/schacon/projects/why
Calculated height: 110px (5 lines)
Content or height changed for command "but commit -o -m "liked tweets view" bo" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but st
Cache filename for command "but st": branching-and-commiting-but-st-22
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-411b7ed4740b6c72.html" -t light '/usr/local/bin/but st'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m M [33mconfig/routes.rb[0m
┊
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34m72[0m[2m8ba67[0m liked tweets view
├╯
┊
┊ ╭┄[4;34mp0[0m [[1;36mstaged to user-changes[0m]
┊ [2m│[0m [4;34mi0[0m M [33mapp/models/user.rb[0m
┊ [2m│[0m
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
❯ /usr/local/bin/but st took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m M [33mconfig/routes.rb[0m
┊
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34m72[0m[2m8ba67[0m liked tweets view
├╯
┊
┊ ╭┄[4;34mp0[0m [[1;36mstaged to user-changes[0m]
┊ [2m│[0m [4;34mi0[0m M [33mapp/models/user.rb[0m
┊ [2m│[0m
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-411b7ed4740b6c72.html
Calculated height: 440px (20 lines)
Content or height changed for command "but st" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but commit -m 'bookmarks stuff' ch
Cache filename for command "but commit -m 'bookmarks stuff' ch": branching-and-commiting-but-commit-23
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-c2fd883a91fa3a7b.html" -t light '/usr/local/bin/but commit -m 'bookmarks stuff' ch'
Working directory: /Users/schacon/projects/why
Calculated height: 110px (5 lines)
Content or height changed for command "but commit -m 'bookmarks stuff' ch" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but status
Cache filename for command "but status": branching-and-commiting-but-status-24
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-41f81d7c852e0013.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [2;3mno changes[0m
┊
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34m72[0m[2m8ba67[0m liked tweets view
├╯
┊
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m[0m
┊● [4;34m6b[0m[2m3618f[0m bookmarks stuff
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but help` for all commands[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [2;3mno changes[0m
┊
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34m72[0m[2m8ba67[0m liked tweets view
├╯
┊
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m[0m
┊● [4;34m6b[0m[2m3618f[0m bookmarks stuff
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but help` for all commands[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-41f81d7c852e0013.html
Calculated height: 374px (17 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found restore command: 6fdd8fb1d547
Found run command: but rub l0 zz
Run command output:
Uncommitted changes
Found CLI command: but status
Running restore: but restore 6fdd8fb1d547
Cache filename for command "but status": branching-and-commiting-but-status-25
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-c5ea113d7fb7a0a7.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [4;34mi0[0m A [32mapp/models/bookmark.rb[0m
┊ [4;34mj0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [4;34mk0[0m M [33mconfig/routes.rb[0m
┊
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m(no commits)[0m
├╯
┊
┊ ╭┄[4;34mv0[0m [[1;36mstaged to user-changes[0m]
┊ [2m│[0m [4;34ml0[0m M [33mapp/models/user.rb[0m
┊ [2m│[0m
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [4;34mi0[0m A [32mapp/models/bookmark.rb[0m
┊ [4;34mj0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [4;34mk0[0m M [33mconfig/routes.rb[0m
┊
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m(no commits)[0m
├╯
┊
┊ ╭┄[4;34mv0[0m [[1;36mstaged to user-changes[0m]
┊ [2m│[0m [4;34ml0[0m M [33mapp/models/user.rb[0m
┊ [2m│[0m
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-c5ea113d7fb7a0a7.html
Calculated height: 484px (22 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Found CLI command: but rub h0-k0 user-bookmarks
Cache filename for command "but rub h0-k0 user-bookmarks": branching-and-commiting-but-rub-26
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-59309021a44dd8a3.html" -t light '/usr/local/bin/but rub h0-k0 user-bookmarks'
Working directory: /Users/schacon/projects/why
ansi-senor output: Staged the only hunk in app/controllers/bookmarks_controller.rb in the unassigned area → [32m[user-bookmarks][0m.
Staged the only hunk in app/models/bookmark.rb in the unassigned area → [32m[user-bookmarks][0m.
Staged the only hunk in app/views/bookmarks/index.html.erb in the unassigned area → [32m[user-bookmarks][0m.
Staged the only hunk in config/routes.rb in the unassigned area → [32m[user-bookmarks][0m.
---
❯ /usr/local/bin/but rub h0-k0 user-bookmarks took 0s
Staged the only hunk in app/controllers/bookmarks_controller.rb in the unassigned area → [32m[user-bookmarks][0m.
Staged the only hunk in app/models/bookmark.rb in the unassigned area → [32m[user-bookmarks][0m.
Staged the only hunk in app/views/bookmarks/index.html.erb in the unassigned area → [32m[user-bookmarks][0m.
Staged the only hunk in config/routes.rb in the unassigned area → [32m[user-bookmarks][0m.
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-59309021a44dd8a3.html
Calculated height: 176px (8 lines)
Found CLI command: but status
Cache filename for command "but status": branching-and-commiting-but-status-27
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-8881c467c23cbda6.html" -t light '/usr/local/bin/but status'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊
┊ ╭┄[4;34mu0[0m [[1;36mstaged to user-bookmarks[0m]
┊ [2m│[0m [4;34mi0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [2m│[0m [4;34mj0[0m A [32mapp/models/bookmark.rb[0m
┊ [2m│[0m [4;34mk0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [2m│[0m [4;34ml0[0m M [33mconfig/routes.rb[0m
┊ [2m│[0m
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m(no commits)[0m
├╯
┊
┊ ╭┄[4;34mv0[0m [[1;36mstaged to user-changes[0m]
┊ [2m│[0m [4;34mh0[0m M [33mapp/models/user.rb[0m
┊ [2m│[0m
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
❯ /usr/local/bin/but status took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊
┊ ╭┄[4;34mu0[0m [[1;36mstaged to user-bookmarks[0m]
┊ [2m│[0m [4;34mi0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊ [2m│[0m [4;34mj0[0m A [32mapp/models/bookmark.rb[0m
┊ [2m│[0m [4;34mk0[0m A [32mapp/views/bookmarks/index.html.erb[0m
┊ [2m│[0m [4;34ml0[0m M [33mconfig/routes.rb[0m
┊ [2m│[0m
┊╭┄[4;34mbo[0m [[1;32muser-bookmarks[0m] [2;3m(no commits)[0m
├╯
┊
┊ ╭┄[4;34mv0[0m [[1;36mstaged to user-changes[0m]
┊ [2m│[0m [4;34mh0[0m M [33mapp/models/user.rb[0m
┊ [2m│[0m
┊╭┄[4;34mch[0m [[1;32muser-changes[0m] [2;3m(no commits)[0m
├╯
┊
┴ [2m204e309[0m (common base) [[1;32morigin/main[0m] [2m2025-07-06[0m Merge pull request #10 from schacon/sc-description[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-8881c467c23cbda6.html
Calculated height: 528px (24 lines)
Content or height changed for command "but status" in content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Content hash changed
Updated: content/docs/cli-guides/cli-tutorial/branching-and-commiting.mdx
Found restore command: bd526ee8c76c
Found run command: but stage h0 us
Run command output:
Found run command: git push -f origin 32a2175758f7f649ed7a030a17fd21213a5e400f:refs/heads/main
Run command output:
Found CLI command: but status --files
Running restore: but restore bd526ee8c76c
Cache filename for command "but status --files": inspecting-but-status-1
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-20fe90d95f7a8756.html" -t light '/usr/local/bin/but status --files'
Working directory: /Users/schacon/projects/why
ansi-senor output: ╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m M [33mREADME.md[0m
┊
┊╭┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34mfd[0m[2me72a6[0m add user changes
┊│ [4;34mm0[0m M [33mapp/models/user.rb[0m
┊● [4;34m85[0m[2mefe19[0m create bookmarks
┊│ [4;34mn0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊│ [4;34mo0[0m A [32mapp/views/bookmarks/index.html.erb[0m
├╯
┊
┴ [2m32a2175[0m (common base) [[1;32morigin/main[0m] [2m2025-11-03[0m Merge pull request #65 from schacon/feature-bookma[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
❯ /usr/local/bin/but status --files took 0s
╭┄[4;34mzz[0m [[1;36munstaged changes[0m]
┊ [4;34mg0[0m M [33mGemfile[0m
┊ [4;34mh0[0m M [33mREADME.md[0m
┊
┊╭┄[4;34mus[0m [[1;32muser-bookmarks[0m] [2;3m[0m
┊● [4;34mfd[0m[2me72a6[0m add user changes
┊│ [4;34mm0[0m M [33mapp/models/user.rb[0m
┊● [4;34m85[0m[2mefe19[0m create bookmarks
┊│ [4;34mn0[0m A [32mapp/controllers/bookmarks_controller.rb[0m
┊│ [4;34mo0[0m A [32mapp/views/bookmarks/index.html.erb[0m
├╯
┊
┴ [2m32a2175[0m (common base) [[1;32morigin/main[0m] [2m2025-11-03[0m Merge pull request #65 from schacon/feature-bookma[2m(checked 2 minutes ago)[0m
[2mHint: run `but diff` to see uncommitted changes and `but stage <file>` to stage them to a branch[0m
---
Output saved to /Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-20fe90d95f7a8756.html
Calculated height: 396px (18 lines)
Content or height changed for command "but status --files" in content/docs/cli-guides/cli-tutorial/inspecting.mdx
Content hash changed
Found CLI command: git diff HEAD
Cache filename for command "git diff HEAD": inspecting-git-1
Running ansi-senor command: "/Users/schacon/.cargo/bin/ansi-senor" -o "/Users/schacon/projects/gitbutler-docs/public/cache/cli-output/tmp-1c88163b9597b1d4.html" -t light 'git diff HEAD'
Working directory: /Users/schacon/projects/why
ansi-senor output: diff --git c/Gemfile w/Gemfile
index 5cd27fa8..5c76922c 100644
--- c/Gemfile
+++ w/Gemfile
@@ -21,7 +21,7 @@ gem "jbuilder"
# gem "bcrypt", "~> 3.1.7"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
-gem "tzinfo-data", platforms: %i[ windows jruby ]
+gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
# Use the database-backed adapters for Rails.cache, Active Job, and Action Cable
gem "solid_cache"
@@ -42,7 +42,7 @@ gem "thruster", require: false
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
- gem "debug", platforms: %i[ mri windows ], require: "debug/prelude"
+ gem "debug", platforms: %i[ mri mingw mswin x64_mingw ], require: "debug/prelude"