We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fa5c3e commit a0b3b2aCopy full SHA for a0b3b2a
src/subcommand/merge_subcommand.cpp
@@ -324,9 +324,10 @@ void merge_subcommand::run()
324
std::cout << "Already up-to-date" << std::endl;
325
return;
326
}
327
- else if (analysis & GIT_MERGE_ANALYSIS_UNBORN
328
- || (analysis & GIT_MERGE_ANALYSIS_FASTFORWARD
329
- && !(preference & GIT_MERGE_PREFERENCE_NO_FASTFORWARD)))
+ else if (
+ analysis & GIT_MERGE_ANALYSIS_UNBORN
+ || (analysis & GIT_MERGE_ANALYSIS_FASTFORWARD && !(preference & GIT_MERGE_PREFERENCE_NO_FASTFORWARD))
330
+ )
331
{
332
if (analysis & GIT_MERGE_ANALYSIS_UNBORN)
333
0 commit comments