Files
tldr/pages.tr/common/git-ls-remote.md
2022-10-31 06:52:35 -03:00

26 lines
792 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 ls-remote
> Çevrimiçi depolardaki isim ve URL bazlı referansları sıralamaya yarayan Git komutu.
> İsim veya URL girilmemişse, varsayılan dal veya çevrimiçi dalın kökeni kullanılır.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-ls-remote>.
- Varsayılan çevrimiçi depodaki tüm referansları göster:
`git ls-remote`
- Varsayılan çevrimiçi depodaki yalnızca baş referanslarını göster:
`git ls-remote --heads`
- Varsayılan çevrimiçi depodaki yalnızca etiket referanslarını göster:
`git ls-remote --tags`
- Girilen isim veya URL'de bulunan çevrimiçi depodaki tüm referansları göster:
`git ls-remote {{depo_adresi}}`
- Bir çevrimiçi depodaki referansları belirtilen desene göre göster:
`git ls-remote {{depo_ismi}} "{{desen}}"`