Revision 1ecef023a9b89056d7070662dd0541481b54a7dc authored by Jiang Xin on 05 March 2021, 05:47:07 UTC, committed by Jiang Xin on 05 March 2021, 05:47:07 UTC
* 'fr_next' of github.com:jnavila/git:
  l10n: fr: v2.31 rnd 2
2 parent s 5b888ad + 068cb92
Raw File
guiffy
diff_cmd () {
	"$merge_tool_path" "$LOCAL" "$REMOTE"
}

merge_cmd () {
	if $base_present
	then
		"$merge_tool_path" -s "$LOCAL" \
		"$REMOTE" "$BASE" "$MERGED"
	else
		"$merge_tool_path" -m "$LOCAL" \
		"$REMOTE" "$MERGED"
	fi
}

exit_code_trustable () {
	true
}
back to top