Reputation: 355
how to avoid this comment line into the files while git merge/rebase through terminal
comment line : <<<<<<< HEAD comment line : >>>>>>> student
<<<<<<< HEAD
6th change // from master
=======
5th change // student branch
>>>>>>> student
Upvotes: 0
Views: 146
Reputation: 5539
Instead of avoiding them, you could properly resolve the merge conflict using an appropriate merge tool.
Refer to
Upvotes: 1