2

So, what should be in .gitignore for wearable native C/C++ Tizen Studio project? There are solution for some separate files like this, but seems not complete .gitignore file sample for wearable native C/C++ application.

Andrii Omelchenko
  • 13,183
  • 12
  • 43
  • 79

1 Answers1

5

You may follow these .gitignore from the open source Tizen projects

/.cproject
/.checkers
/.rds_delta
/.sdk_delta.info
/.sign
/crash-info/
/res/res.xml
/vlc/
/Debug/
/Release/
/lib/*.so*
/lib/*.a
/emotion/
/libvlcpp/
/medialibrary/
*.tmp
*~
res/edje/*.edj
Andrii Omelchenko
  • 13,183
  • 12
  • 43
  • 79
Iqbal hossain
  • 1,778
  • 3
  • 17
  • 24