+5
-1
README.md
+5
-1
README.md
···
112
112
```bash
113
113
all git@tangled.sh:samsour.de/eny-space (fetch)
114
114
all git@github.com:Krekeny/eny-space.git (push)
115
+
all git@tangled.sh:samsour.de/eny-space (push)
115
116
origin git@tangled.sh:samsour.de/eny-space (fetch)
116
117
origin git@tangled.sh:samsour.de/eny-space (push)
117
118
```
118
119
120
+
Note: I previously had `all` with `git@tangled.sh:samsour.de/eny-space` as **fetch only**, so pushes were only going to GitHub and the tangled.sh repo wasn’t in sync. The config above fixes that by adding tangled.sh as a push URL on `all`.
121
+
119
122
### Setup (New Clones)
120
123
121
124
```bash
122
125
# Clone primary
123
126
git clone git@tangled.sh:samsour.de/eny-space
124
127
125
-
# Add GitHub mirror push
128
+
# Add GitHub mirror + tangled push
126
129
cd eny-space
127
130
git remote rename origin tangled
128
131
git remote add all git@tangled.sh:samsour.de/eny-space
129
132
git remote set-url --add --push all git@github.com:Krekeny/eny-space.git
133
+
git remote set-url --add --push all git@tangled.sh:samsour.de/eny-space
130
134
131
135
# Push everything
132
136
git push all --all