mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 14:22:07 +02:00

- Replace "al" -> "del", "alla" -> "della", etc. in command paths - Replace all instances of "cartella" with "directory" - Update contributing-guides/translation-templates/common-arguments.md to reflect these changes Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Marco Bonelli <marco@mebeim.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
24 lines
643 B
Markdown
24 lines
643 B
Markdown
# git svn
|
|
|
|
> Operazioni bidirezionali tra repository Subversion e Git.
|
|
> Maggiori informazioni: <https://git-scm.com/docs/git-svn>.
|
|
|
|
- Clona un repository SVN:
|
|
|
|
`git svn clone {{https://esempio.com/repo_subversion}} {{directory_locale}}`
|
|
|
|
- Clona un repository SVN a partire da uno specifico numero di revisione:
|
|
|
|
`git svn clone -r{{1234}}:HEAD {{https://svn.esempio.net/subversion/repo}} {{directory_locale}}`
|
|
|
|
- Aggiorna una copia locale da un repository SVN remoto:
|
|
|
|
`git svn rebase`
|
|
|
|
- Scarica aggiornamenti da un repository SVN remoto senza spostare l'HEAD Git:
|
|
|
|
`git svn fetch`
|
|
|
|
- Invia un commit a un repository SVN:
|
|
|
|
`git svn dcommit`
|