LoginSignup
38
39

More than 5 years have passed since last update.

cocos2d-xでの.gitignore

Posted at

iOS/Andoridの時、こんな感じかな。

Androidのbuild_native.shでいっぱい、objファイルに入るから除外しておいた方がいいと思う。

# Mac
.DS_Store

# Xcode
build/*
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
*.xcworkspace
!default.xcworkspace
xcuserdata
profile
*.moved-aside

#CocoaPod
Pods/*

#IDEA
.idea/*

#cocos2d-x
libs/
bin/
obj/
assets/
gen/
out/
.classpath
.project
.cproject

#JAVA
*.class

参考

おすすめがあれば教えて下さい!

38
39
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
38
39