Как слить ветки в git

Аватар пользователя Ivan Mamtsev
Ivan Mamtsev
07 июля 2022

Слить ветки можно с помощью команды git merge <имя-ветки-для-слияния>

git merge new-branch
# Updating 9f2880b..c1a5665
# Fast-forward
#  1.txt     | 2 ++
#  2.txt     | 1 +
#  readme.md | 1 +
#  3 files changed, 4 insertions(+)
#  create mode 100644 1.txt
#  create mode 100644 2.txt
0 0