Как запулить изменения из ветки master git — Q&A Хекслет
2026-02-26 19:06 Diff

Запулить (или проще говоря, скачать) изменения можно с помощью команды git pull. По умолчанию изменения будут скачаны с master(main) ветки

git pull # remote: Enumerating objects: 3, done. # remote: Counting objects: 100% (3/3), done. # remote: Total 3 (delta 2), reused 3 (delta 2), pack-reused 0 # Unpacking objects: 100% (3/3), 373 bytes | 373.00 KiB/s, done. # From github.com:user/my-super-project # 66fcbd6..134bf78 main -> origin/main # Updating 66fcbd6..134bf78 # Fast-forward # README.md | 27 +++++++++++++-------------- # 1 file changed, 13 insertions(+), 14 deletions(-)