Skip to content

Commit 81d4bd0

Browse files
committed
more on prs
1 parent 34a1b75 commit 81d4bd0

File tree

1 file changed

+67
-1
lines changed

1 file changed

+67
-1
lines changed

index.qmd

+67-1
Original file line numberDiff line numberDiff line change
@@ -580,9 +580,11 @@ data/
580580
::: column
581581
### {{< fa brands apple >}}
582582

583+
- [Terminal.app](https://support.apple.com/guide/terminal/open-or-quit-terminal-apd5265185d-f365-44cb-8b09-71a064a42125/mac)
583584
- [warp](https://warp.dev)
584585
- [iTerm2](https://iterm2.com/)
585586

587+
586588
:::
587589

588590
::: column
@@ -594,6 +596,8 @@ data/
594596

595597
:::
596598

599+
### cross-platform
600+
597601
[alacritty](https://alacritty.org/)
598602

599603
## shell helpers
@@ -711,9 +715,33 @@ Switched to branch 'main'
711715
Switched to branch 'main'
712716
```
713717

718+
## multiverse
714719

715-
## merge
720+
- checkout `new_branch`
721+
- edit an existing file
722+
- commit
723+
- switch back to main
724+
725+
##
716726

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
717745

718746
```{mermaid}
719747
gitGraph
@@ -727,8 +755,46 @@ gitGraph
727755
merge experiment
728756
```
729757

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+
730769
## PRs
731770

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+
732798
# unhappy paths
733799

734800
## push rejection

0 commit comments

Comments
 (0)