Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| computer:docker:git_gogs [2023/10/17 06:48] – created spring | computer:docker:git_gogs [2024/02/08 08:07] (current) – [Git / Gogs in Docker] spring | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Git / Gogs in Docker ====== | ====== Git / Gogs in Docker ====== | ||
| + | * https:// | ||
| + | |||
| * https:// | * https:// | ||
| * https:// | * https:// | ||
| * https:// | * https:// | ||
| + | * https:// | ||
| + | |||
| + | ====== Git allgemein ====== | ||
| + | * https:// | ||
| + | * https:// | ||
| + | |||
| + | ====== RCS zu git konvertieren ====== | ||
| + | |||
| + | |||
| + | Als Grundlage haben wir https:// | ||
| + | ins Basis-Verzeichnis des zu konvertierenden Ordners wechseln | ||
| + | |||
| + | cd /FOO | ||
| + | | ||
| + | # git initialisieren (die config-Optionen sind optional, aber nicht unsinnvoll) | ||
| + | git init | ||
| + | git config core.sharedRepository true | ||
| + | git config receive.denyCurrentBranch updateInstead | ||
| + | | ||
| + | # die Konvertierung durchführen | ||
| + | rcs-fast-export.rb ./ | git fast-import | ||
| + | | ||
| + | # optional: ggf. vor dem nächsten Schritt die ,v-Dateien löschen | ||
| + | find -name " | ||
| + | | ||
| + | # Abschlussarbeiten | ||
| + | git reset | ||
| + | git add . | ||
| + | git commit -m " | ||
| + | |||
| + | ( from https:// | ||
| + | |||