···112112```bash
113113all git@tangled.sh:samsour.de/eny-space (fetch)
114114all git@github.com:Krekeny/eny-space.git (push)
115115+all git@tangled.sh:samsour.de/eny-space (push)
115116origin git@tangled.sh:samsour.de/eny-space (fetch)
116117origin git@tangled.sh:samsour.de/eny-space (push)
117118```
119119+120120+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`.
118121119122### Setup (New Clones)
120123···122125# Clone primary
123126git clone git@tangled.sh:samsour.de/eny-space
124127125125-# Add GitHub mirror push
128128+# Add GitHub mirror + tangled push
126129cd eny-space
127130git remote rename origin tangled
128131git remote add all git@tangled.sh:samsour.de/eny-space
129132git remote set-url --add --push all git@github.com:Krekeny/eny-space.git
133133+git remote set-url --add --push all git@tangled.sh:samsour.de/eny-space
130134131135# Push everything
132136git push all --all