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

17 lines
449 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 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}}`