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

21 lines
440 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
> Dalları birleştir.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-merge>.
- Mevcut dal ile belirtilen dalı birleştir:
`git merge {{dal_ismi}}`
- Birleştirme mesajını düzenle:
`git merge {{-e|--show-email}} {{dal_ismi}}`
- Bir dalı birleştir ve birleştirme commit'i oluştur:
`git merge --no-ff {{dal_ismi}}`
- Karışıklık durumlarına karşı birleştirme işlemini durdur:
`git merge --abort`