logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Git Merge - Merge Branches | Online Free DevTools by Hexmos

Merge branches effortlessly with Git Merge. Resolve conflicts, edit merge messages, and control your git history. Free online tool, no registration required.

git-merge

Merge branches. More information: https://git-scm.com/docs/git-merge.

  • Merge a branch into your current branch:

git merge {{branch_name}}

  • Edit the merge message:

git merge {{[-e|--edit]}} {{branch_name}}

  • Merge a branch and create a merge commit:

git merge --no-ff {{branch_name}}

  • Abort a merge in case of conflicts:

git merge --abort

  • Merge using a specific strategy:

git merge {{[-s|--strategy]}} {{strategy}} {{[-X|--strategy-option]}} {{strategy_option}} {{branch_name}}

return

See Also