git*: add Italian translation (#4627)
* git-archive: add italian translation * git-bundle: add italian translation * git-cat-file: add italian translation * git-describe: add italian translation * git-ignore: add italian translation * git-instaweb: add italian translation * git-lfs: add italian translation * git-log: add italian translation * git-ls-remote: add italian translation * git-ls-tree: add italian translation
This commit is contained in:
24
pages.it/common/git-describe.md
Normal file
24
pages.it/common/git-describe.md
Normal file
@@ -0,0 +1,24 @@
|
||||
# git describe
|
||||
|
||||
> Rendi il nome di un oggetto git più leggibile usando i riferimenti disponibili.
|
||||
> Maggiori informazioni: <https://git-scm.com/docs/git-describe>.
|
||||
|
||||
- Crea un nome univoco per il commit corrente (il nome contiene i tag più recenti, il numero di commit aggiuntivi, e l'hash breve del commit):
|
||||
|
||||
`git describe`
|
||||
|
||||
- Crea un nome di 4 cifre per l'hash breve del commit:
|
||||
|
||||
`git describe --abbrev={{4}}`
|
||||
|
||||
- Genera un nome che includa anche il percorso di riferimento:
|
||||
|
||||
`git describe --all`
|
||||
|
||||
- Descrivi un tag git:
|
||||
|
||||
`git describe {{v1.0.0}}`
|
||||
|
||||
- Crea un nome per l'ultimo commit di un dato ramo:
|
||||
|
||||
`git describe {{nome_ramo}}`
|
Reference in New Issue
Block a user