2020-10-21 18:28:33 +01:00
|
|
|
# git init
|
|
|
|
|
|
|
|
> Erstelle eine neues lokales Git-Repository.
|
2021-04-24 12:09:56 +01:00
|
|
|
> Weitere Informationen: <https://git-scm.com/docs/git-init>.
|
2020-10-21 18:28:33 +01:00
|
|
|
|
|
|
|
- Erstelle eine neues lokales Repository:
|
|
|
|
|
|
|
|
`git init`
|
|
|
|
|
7za, 7zr, ansible-galaxy, convert, dd, exa, fuck, git-*, gpg, ls, mv: sync German page (#6226)
2021-07-18 19:00:45 +01:00
|
|
|
- Erstelle eine neues Repository mit einem bestimmten Namen für den ersten Branch:
|
|
|
|
|
|
|
|
`git init --initial-branch={{branch_name}}`
|
|
|
|
|
2021-05-01 19:20:15 +01:00
|
|
|
- Erstelle ein neues Repository, welches SHA256 für Objekt-Hashes verwendet (benötigt Git 2.29+):
|
|
|
|
|
|
|
|
`git init --object-format={{sha256}}`
|
|
|
|
|
2020-10-21 18:28:33 +01:00
|
|
|
- Erstelle eine neues minimales Repository, welches sich für die Verwendung als Remote-Repository über SSH eignet:
|
|
|
|
|
|
|
|
`git init --bare`
|