====== gitea ======
=====Beispiele =====
==== Erstelle ein neues Repository mittels der Kommandozeile ====
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://git.xxx.xx/username/myrepo.git
git push -u origin master
==== Übertrage ein existierendes Repository von der Kommandozeile ====
git remote add origin https://git.xxx.xx/username/myrepo.git
git push -u origin master
==== Nur Änderungen übertragen ====
git add File_changed
git commit -m "My Change"
git push -u origin master
===== Siehe auch =====
* [[git]]
* [[gogs]]
* [[forgejo]]
===== Weblinks =====
* https://gitea.io
* https://github.com/go-gitea/gitea
* https://docs.gitea.io/en-us/
* https://alternativeto.net/software/gitea/