I have a file in github called test1.py
I want to use all of its content and just change 1 line. So i created a new branch, copied test1.py, then deleted test1.py, and then pasted it in a different location in the same repo. Then renamed it to test2.py. Then changed 1 line.
Then what I wanted is to merge master with my branch.
So when I tried that , github thinks that test1.py is the same as test2.py and it is just moved to a different location, and i get a merge conflict(because of the 1 changed line )
How can I avoid that github sees test2.py like it us test1.py?
I explained above ,