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

21 lines
556 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 merge
> Злиття гілок разом.
> Більше інформації: <https://git-scm.com/docs/git-merge>.
- Злиття гілки з поточною гілкою:
`git merge {{назва_гілки}}`
- Редагує повідомлення при злитті гілок:
`git merge -e {{назва_гілки}}`
- Зливає гілки і створює комміт злиття:
`git merge --no-ff {{назва_гілки}}`
- Перериває злиття у випадку конфлікту:
`git merge --abort`