mirror of https://github.com/CrimsonTome/tldr.git
13 lines
309 B
Markdown
13 lines
309 B
Markdown
# git init
|
|
|
|
> Erstelle eine neues lokales Git-Repository.
|
|
> Mehr Informationen: <https://git-scm.com/docs/git-init>.
|
|
|
|
- Erstelle eine neues lokales Repository:
|
|
|
|
`git init`
|
|
|
|
- Erstelle eine neues minimales Repository, welches sich für die Verwendung als Remote-Repository über SSH eignet:
|
|
|
|
`git init --bare`
|