tldr/pages.tr/common/git-fetch.md

25 lines
574 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# git fetch
> Uzak bir depodaki cisim ve referansları indir.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-fetch>.
- (Eğer belirtildiyse) Uzaktaki varsayılan ana akım depodan son değişiklikleri çek:
`git fetch`
- Belirtilen uzak ana akım depodan yeni dalları çek:
`git fetch {{uzak_bağlantı}}`
- Uzaktaki tüm ana akım depolardaki son değişiklikleri çek:
`git fetch --all`
- Uzaktaki ana akım depodan etiketleri dahi çek:
`git fetch --tags`
- Ana akım depodan silinmiş uzak dallara giden yerel referansları sil:
`git fetch --prune`