Search code examples
ioscocoapodsbitbucketpodspec

pods error while pull the code


I have installed the pods in my project.Every time I pull the code from bitbucket getting pods error.Because of this error every time I'm reinstalling the pods when I pull the code.Is there any other solution to resolve this issue.Can anyone please help on this


Solution

  • You can add .gitignore to your project and add following into that file:

    **/**.DS_Store
    **/**.orig
    **/xcuserdata
    (YourProjectName)/Pods
    .DS_Store
    

    It won't add some of the files that you don't want in your version control.

    You can find more about this here