git merge
2つのブランチの開発履歴を統合するには、[Tools ] > [Git ] > [Local Repository ] の順に移動し、[Branches] を選択します。
「Git Branches 」ビューで、リモートブランチを右クリックし、コンテキストメニューからマージオプションを選択します。マージするコミットが最初のコミットの履歴をたどって到達できる場合、マージすべき分岐した作業はありません。 Gitにブランチポインタを先へ進めさせるには、「Merge <remote branch> into <local branch> (Fast-Forward) 」を選択します。ブランチをファストフォワードしたくない場合は、「Merge <remote branch> into <local branch> (No Fast-Forward) 」を選択します。
マージツールの設定
グラフィカルなマージツールのみがサポートされています。コマンドラインで使用するマージツールを設定できます。たとえば、KDiff3マージツールを使用するには、次のコマンドを入力します:
git config --global merge.tool kdiff3
「Git の使い方」および「 Git の利用方法」も参照してください 。
Copyright © The Qt Company Ltd. and other contributors. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.