Skip to content

Latest commit

 

History

History
77 lines (60 loc) · 3.2 KB

git-clone.md

File metadata and controls

77 lines (60 loc) · 3.2 KB
layout title description content_hash last_modified_at related_topics tldri18n_status
page
common/git-clone (Türkçe)
Varolan bir dizini klonla.
06d37b813bf85ce7c23bd895505ee72d6fc45996
2023-11-12
title url icon
Deutsch version
/de/common/git-clone.html
bi bi-globe
title url icon
English version
/en/common/git-clone.html
bi bi-globe
title url icon
español version
/es/common/git-clone.html
bi bi-globe
title url icon
français version
/fr/common/git-clone.html
bi bi-globe
title url icon
Indonesia version
/id/common/git-clone.html
bi bi-globe
title url icon
italiano version
/it/common/git-clone.html
bi bi-globe
title url icon
한국어 version
/ko/common/git-clone.html
bi bi-globe
title url icon
português (Brasil) version
/pt_BR/common/git-clone.html
bi bi-globe
title url icon
தமிழ் version
/ta/common/git-clone.html
bi bi-globe
title url icon
українська version
/uk/common/git-clone.html
bi bi-globe
title url icon
中文 version
/zh/common/git-clone.html
bi bi-globe
1

This entry is very new in the tldr-pages project, hence translation data is currently unavailable for a while.


# git clone

Varolan bir dizini klonla. Daha fazla bilgi için: https://git-scm.com/docs/git-clone.

  • Varolan bir depoyu klonla:

git clone uzak_bağlantıdaki_depo

  • Varolan bir depoyu velirtilen dizine klonla:

git clone uzak_bağlantıdaki_depo örnek/dizin

  • Varolan bir depo ve onun alt modüllerini klonla:

git clone --recursive uzak_bağlantıdaki_depo

  • Yerel bir depoyu klonla:

git clone -l örnek/yerel/depo

  • Sessizce klonla:

git clone -q uzak_bağlantıdaki_depo

  • Yalnızca en yeni 10 commit'i çekerek varolan bir depoyu klonla (zaman tasarrufu açısından yararlıdır):

git clone --depth 10 uzak_bağlantıdaki_depo

  • Yalnızca belirtilen bir dalı çekerek varolan bir depoyu klonla:

git clone --branch isim--single-branchuzak_bağlantıdaki_depo