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

25 lines
574 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 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`