mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 14:22:07 +02:00
12 lines
301 B
Markdown
12 lines
301 B
Markdown
# git init
|
|
|
|
> Inizializza un nuovo repository Git locale.
|
|
> Maggiori informazioni: <https://git-scm.com/docs/git-init>.
|
|
|
|
- Inizializza un nuovo repository locale:
|
|
|
|
`git init`
|
|
|
|
- Inizializza un repository di soli dati, adatto per essere usato come server remoto accessibile via ssh:
|
|
|
|
`git init --bare`
|