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

17 lines
449 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 pull
> Uzak bir depodan dal getir ve yerel depo ile birleştir.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-pull>.
- Varsayılan uzak depodan değişiklikleri indir ve birleştir:
`git pull`
- Varsayılan uzak depodan değişiklikleri indir ve ileri sarmayı kullan:
`git pull --rebase`
- Belirtilen uzak depodan ve daldan değişiklikleri indir, ve sonra onları HEAD ile birleştir:
`git pull {{uzak_bağlantı}} {{dal}}`