linux:forgejo
Inhaltsverzeichnis
Forgejo
Community-Fork von gitea.
Benutzung
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 main
Übertrage ein existierendes Repository von der Kommandozeile
git remote add origin https://git.xxx.xx/username/myrepo.git git push -u origin main
Nur Änderungen übertragen
git add File_changed git commit -m "My Change" git push -u origin main
Siehe auch
Weblinks
linux/forgejo.txt · Zuletzt geändert: von move
