At work we are now in the process of migrating from Eclipse to Android Studio, but one of the challenges we are facing is actually keeping all of our local history from git when the import is done.
I followed this directions to do the merge with git: https://stackoverflow.com/a/24741965/2489037
...And my co-workers are able to download the whole project from git using SourceTree with no major problems, but we are still unable to compare any of the project's files with the remote versions from other branches (The ones we were using with Eclipse). When I left-click a file -> git -> compare with branch... then select one of the Eclipse branches (That I know has the file) I get the error: File Doesn't exist in branch
So, the question is: How can we compare files from the imported Android Studio Project with their pairs in the Eclipse branches? Is it possible?
We really can't lose the local history, and we also can't be switching back to Eclipse all the time to check older versions of the files.