I have forked an open source project on github (https://github.com/alberthendriks/peatio/) and I want to offer functionality for the community. Peatio is a currency exchange that by default only supports CNY and BTC. Now, there are instructions to add altcoins here: https://www.snip2code.com/Snippet/205317/Adding-A-New-Cryptocurrency-to-Peatio
I want to create a feature branch that way for multiple coins (one branch for each coin), so that people can merge in the coins they want into their fork. The issue is: I think this will work if they merge in one feature branch, but if they merge in multiple, then there will be an (unnecessary) conflict. There's just some code added to multiple files for each coin and the order the code for each coin appears in a file doesn't really matter, but git will think it's a conflict because code is added at the same location. For a human this should be straightforward to fix, so hopefully there's an automatic solution as well?