Hi I have a git file that I do not want changes to be merged into it, instead, I want changes to be always appending to the end of the file, while the rest of the project files are merging as normal. Is this configurable in git?
e.g. In the upstream a file F has one line
1. |10-09-2016 00:12:43 : Check completed
In my fork, I changed F to
1. |11-09-2016 00:10:55 : Check completed
Then I submit my change and create a MR from my fork to the upstream.
Instead of changing the file F on upsteam to
1. |11-09-2016 00:10:55 : Check completed
I want the file F on upsteam, after accepting the MR, to become
1. |10-09-2016 00:12:43 : Check completed
2. |11-09-2016 00:10:55 : Check completed