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

17 lines
788 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
> Отримує дані з віддаленого репозиторію та зливає їх із локальним.
> Більше інформації: <https://git-scm.com/docs/git-pull>.
- Завантажити зміни із типового віддаленого репозиторію та злити їх:
`git pull`
- Завантажити зміни із типового віддаленого репозиторію та злити їх, використовуючи перемотання:
`git pull --rebase`
- Завантажити зміни із певної гілки вказаного віддаленого репозиторію, а потім злити їх у HEAD:
`git pull {{назва_сховища}} {{назва_гілки}}`