eny.space Landingpage

Compare changes

Choose any two refs to compare.

Changed files
+5 -1
+5 -1
README.md
··· 112 ```bash 113 all git@tangled.sh:samsour.de/eny-space (fetch) 114 all git@github.com:Krekeny/eny-space.git (push) 115 origin git@tangled.sh:samsour.de/eny-space (fetch) 116 origin git@tangled.sh:samsour.de/eny-space (push) 117 ``` 118 119 ### Setup (New Clones) 120 ··· 122 # Clone primary 123 git clone git@tangled.sh:samsour.de/eny-space 124 125 - # Add GitHub mirror push 126 cd eny-space 127 git remote rename origin tangled 128 git remote add all git@tangled.sh:samsour.de/eny-space 129 git remote set-url --add --push all git@github.com:Krekeny/eny-space.git 130 131 # Push everything 132 git push all --all
··· 112 ```bash 113 all git@tangled.sh:samsour.de/eny-space (fetch) 114 all git@github.com:Krekeny/eny-space.git (push) 115 + all git@tangled.sh:samsour.de/eny-space (push) 116 origin git@tangled.sh:samsour.de/eny-space (fetch) 117 origin git@tangled.sh:samsour.de/eny-space (push) 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 122 ### Setup (New Clones) 123 ··· 125 # Clone primary 126 git clone git@tangled.sh:samsour.de/eny-space 127 128 + # Add GitHub mirror + tangled push 129 cd eny-space 130 git remote rename origin tangled 131 git remote add all git@tangled.sh:samsour.de/eny-space 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 134 135 # Push everything 136 git push all --all