0

There are two developers at the project, each of them has his own Apple developer account and there is no team account. After pulling changes from git, which contains change in .pbxproj file needs to change team back and it's quite annoying. xCode signing page

after team changing there is a high probability this change should push to origin and teammate will need to fix team too

changes in GitHub Desktop

I suspect that it can be fixed with .gitattributes file, but have no idea, how to do it.

Hrabovskyi Oleksandr
  • 3,070
  • 2
  • 17
  • 36

1 Answers1

0

In general, you should not store per-user data in your repository. This file should be ignored and not checked into your repository, and if you need to create this file on developer systems, it should be generated from a template, as described in this answer.

bk2204
  • 64,793
  • 6
  • 84
  • 100