mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-30 04:17:58 +01:00
git fetch: add Italian translation.
Co-authored-by: Guido Lena Cota <guido.lenacota@kreuzwerker.de>
This commit is contained in:
parent
ea4491c18f
commit
c14f06d0e3
1 changed files with 24 additions and 0 deletions
24
pages.it/common/git-fetch.md
Normal file
24
pages.it/common/git-fetch.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# git fetch
|
||||||
|
|
||||||
|
> Scarica oggetti e riferimenti da un repository remoto.
|
||||||
|
> Maggiori informazioni: <https://git-scm.com/docs/git-fetch>.
|
||||||
|
|
||||||
|
- Scarica le ultime modifiche dal repository remoto di origine (upstream) di default, se definito:
|
||||||
|
|
||||||
|
`git fetch`
|
||||||
|
|
||||||
|
- Scarica i nuovi rami da un dato repository remoto di origine:
|
||||||
|
|
||||||
|
`git fetch {{nome_repository_remoto}}`
|
||||||
|
|
||||||
|
- Scarica le ultime modifiche da tutti i repository remoti di origine:
|
||||||
|
|
||||||
|
`git fetch --all`
|
||||||
|
|
||||||
|
- Scarica anche i tag dal repository remoto di origine:
|
||||||
|
|
||||||
|
`git fetch --tags`
|
||||||
|
|
||||||
|
- Elimina i riferimenti locali ai rami remoti che sono stati eliminati dal repositoy di origine:
|
||||||
|
|
||||||
|
`git fetch --prune`
|
Loading…
Reference in a new issue