Files
tldr/pages.tr/common/git-describe.md

25 lines
657 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# git describe
> Bir nesneye varolan referans üzerinden insanlar tarafından okunabilecek biçimde olan bir isim ver:
> Daha fazla bilgi: <https://git-scm.com/docs/git-describe>.
- Mevcut commit için (en son eklenmiş etiket, ilave commit'lerin sayısı ve kısaltılmış commit değerini içeren) özel bir isim oluştur:
`git describe`
- Kısaltılmış commit değeri için 4 haneli bir isim oluştur:
`git describe --abbrev={{4}}`
- Etiket referans yolu ile bir isim oluştur:
`git describe --all`
- Bir Git etiketini açıkla:
`git describe {{v1.0.0}}`
- Belirtilen daldaki son commit için bir isim oluştur:
`git describe {{dal_ismi}}`