This is part of the Semicolon&Sons Code Diary - consisting of lessons learned on the job. You're in the git category.
Last Updated: 2024-11-21
I was on feat1
branch and typed git merge development
. I got a conflict and
didn't know which bits belonged to which branch.
<<<<<<< HEAD
<div class="progress_bar_text">
<div>
<h4>{!! trans('strings.general.step_1') !!} —</h4>
<h3>{!! trans('strings.profile_management.contact_info_heading') !!}</h3>
</div>
<p>{!! trans('strings.profile_management.contact_info_instructions') !!}</p>
=======
<div class="view_mobile">
<?php echo file_get_contents("svg/step_1_vertical.svg"); ?>
>>>>>>> development
What is HEAD above?
Answer: HEAD is always current branch. Therefore it was feat1
in this case.