Gitea & Github

1) Setup private Gitea repository (name: origin) .. and push current branch there (default branch is “master”): git remote add origin https://gitea-url/test.git git push -u origin master 2) Add a new branch publish git branch publish git checkout publish 3) Setup public Github repository (name: public) .. and push branch “publish” to this repository called “public” (careful: default branch is...