mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 21:11:52 +07:00
1405fadf1a
Squashed commit of the following: commit 257867f196376df55fa0f57edbdf33967b1da04e Author: Khue Doan <mail@khuedoan.com> Date: Sun Sep 18 16:45:42 2022 +0700 refactor(docs): apply the Diátaxis framework
13 lines
424 B
Markdown
13 lines
424 B
Markdown
# Use both GitHub and Gitea
|
|
|
|
Even though we self-host Gitea, you may still want to use GitHub as a backup and for discovery.
|
|
|
|
Add both push URLs (replace my repositories with yours):
|
|
|
|
```sh
|
|
git remote set-url --add --push origin git@git.khuedoan.com:ops/homelab
|
|
git remote set-url --add --push origin git@github.com:khuedoan/homelab
|
|
```
|
|
|
|
Now you can just run `git push` like usual and it will push to both GitHub and Gitea.
|