@@ -580,9 +580,11 @@ data/
580
580
::: column
581
581
### {{< fa brands apple >}}
582
582
583
+ - [ Terminal.app] ( https://support.apple.com/guide/terminal/open-or-quit-terminal-apd5265185d-f365-44cb-8b09-71a064a42125/mac )
583
584
- [ warp] ( https://warp.dev )
584
585
- [ iTerm2] ( https://iterm2.com/ )
585
586
587
+
586
588
:::
587
589
588
590
::: column
@@ -594,6 +596,8 @@ data/
594
596
595
597
:::
596
598
599
+ ### cross-platform
600
+
597
601
[ alacritty] ( https://alacritty.org/ )
598
602
599
603
## shell helpers
@@ -711,9 +715,33 @@ Switched to branch 'main'
711
715
Switched to branch ' main'
712
716
```
713
717
718
+ ## multiverse
714
719
715
- ## merge
720
+ - checkout ` new_branch `
721
+ - edit an existing file
722
+ - commit
723
+ - switch back to main
724
+
725
+ ##
716
726
727
+ ``` bash
728
+ ❯ git commit -am " commit on a branch"
729
+ [new_branch f1c234b] commit on a branch
730
+ 1 file changed, 3 insertions(+)
731
+
732
+ ❯ cat index.qmd
733
+ ---
734
+ title: happy git
735
+ ---
736
+
737
+ ❯ git checkout main
738
+ Switched to branch ' main'
739
+
740
+ ❯ cat index.qmd
741
+
742
+ ```
743
+
744
+ ## merge
717
745
718
746
``` {mermaid}
719
747
gitGraph
@@ -727,8 +755,46 @@ gitGraph
727
755
merge experiment
728
756
```
729
757
758
+ ## ` git merge `
759
+
760
+ ``` bash
761
+ git merge new_branch
762
+ ❯ git merge new_branch
763
+ Updating 7614b5c..f1c234b
764
+ Fast-forward
765
+ index.qmd | 3 +++
766
+ 1 file changed, 3 insertions(+)
767
+ ```
768
+
730
769
## PRs
731
770
771
+ - checkout ` second_branch `
772
+ - edit an existing file
773
+ - commit
774
+ - push the branch to GitHub
775
+
776
+
777
+ ## ` --set-upstream `
778
+
779
+ ``` bash
780
+ ❯ git push
781
+ fatal: The current branch second-branch has no upstream branch.
782
+ To push the current branch and set the remote as upstream, use
783
+
784
+ git push --set-upstream origin second-branch
785
+
786
+ To have this happen automatically for branches without a tracking
787
+ upstream, see ' push.autoSetupRemote' in ' git help config' .
788
+ ```
789
+
790
+ ## ` git config `
791
+
792
+ [ ` git config --global push.autoSetupRemote true ` ] ( https://git-scm.com/docs/git-config#Documentation/git-config.txt-pushautoSetupRemote )
793
+
794
+ ::: callout-warning
795
+ I set this globally because my workflow is pretty basic, ymmv
796
+ :::
797
+
732
798
# unhappy paths
733
799
734
800
## push rejection
0 commit comments