1

I need to collaborate on an App-engine Connected Android Project (AECAP). I am using GitHub as the repo. Eclipse has no option for creating AECAP from existing source (as does android and other java projects -- so google needs to fix this). Anyway, in order to have collaborators work smoothly with the AECAP, how should I setup git? I am guessing the answer has to do with the gitignore file. I am hoping the google experts or someone with experience out there can help me out with this. Thanks.

learner
  • 11,490
  • 26
  • 97
  • 169

1 Answers1

0

As far as the .gitignore file is involved, you can use the GitHub gitignore project to get one.

See for instance Android.gitignore.

But you also can consider adding a .gitattributes file, in order to manage and control the end-of-line normalization.

See for instance this .gitattributes file.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • these links are quite generic. There is nothing particular to App-engine Connected Android Project – learner Mar 31 '14 at 20:03
  • @learner that would be because there isn't much to ignore. When you look at an actual App-engine connected android project like https://github.com/GoogleCloudPlatform/appengine-endpoints-helloendpoints-android, its `.gitignore` is even shorter than the ones I propose: https://github.com/GoogleCloudPlatform/appengine-endpoints-helloendpoints-android/blob/master/.gitignore – VonC Mar 31 '14 at 20:09