Files
tldr/pages.uk/common/git-merge.md
2024-10-13 10:26:47 +02:00

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