I'm working with another developer on an iOS application.
Once they downloaded the project, they had to amend some of the directories for their dependencies, and change the path for one of the dependencies in their podfile like so:
pod 'ThePod', :path => ‘/Users/TheirName/Desktop/DifferentFolderName/the-sdk’
Then they run pod update as to install the dependencies.
My issue is that all these files showed up as modified files, and once pushed, if I pull the files they change the dependency directories on my end.
Is there a way we can untrack all of these modified files without deleting them from the repository? Just so I can pull them without having them all deleted from my end.