mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 13:05:59 +02:00
git-push: add it translation (#4521)
This commit is contained in:
parent
350d9bd3f7
commit
be1868927d
1 changed files with 32 additions and 0 deletions
32
pages.it/common/git-push.md
Normal file
32
pages.it/common/git-push.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# git push
|
||||
|
||||
> Invia i commit a un repository remoto.
|
||||
> Maggiori informazioni: <https://git-scm.com/docs/git-push>.
|
||||
|
||||
- Invia le modifiche fatte nel ramo corrente locale al corrispondente ramo remoto:
|
||||
|
||||
`git push`
|
||||
|
||||
- Invia le modifiche fatte in uno specifico ramo locale al corrispondente ramo remoto:
|
||||
|
||||
`git push {{nome_repository_remoto}} {{nome_ramo}}`
|
||||
|
||||
- Pubblica il ramo corrente in un repository remoto, specificando il nome del ramo remoto:
|
||||
|
||||
`git push {{nome_repository_remoto}} -u {{nome_ramo_remoto}}`
|
||||
|
||||
- Invia le modifiche fatte in ogni ramo locale ai corrispondenti rami remoti:
|
||||
|
||||
`git push --all {{nome_repository_remoto}}`
|
||||
|
||||
- Cancella un ramo di un repository remoto:
|
||||
|
||||
`git push {{nome_repository_remoto}} --delete {{nome_ramo_remoto}}`
|
||||
|
||||
- Cancella i rami remoti che non hanno un ramo locale corrispondente:
|
||||
|
||||
`git push --prune {{nome_repository_remoto}}`
|
||||
|
||||
- Pubblica i tag che non sono già presenti nel repository remoto:
|
||||
|
||||
`git push --tags`
|
Loading…
Add table
Reference in a new issue