I am working with cocos2d-x 3.0 and want to use git. I only want to save important files in git, and not automatically generate files from vs 2013 / logfiles / .... Is there somewhere a .gitignore file for cocos2d-x that ignores everything that is not needed?
Thanks in advance
To get started, try the following:
# Mac .DS_Store #Java *.class # XCode *.moved-aside build/* *.xcworkspace *.mode1v3 *.mode2v3 *.pbxuser !default.xcworkspace !default.mode1v3 !default.mode2v3 !default.pbxuser *.perspectivev3 profile xcuserdata .idea/* #Cocoa pods *.old Pods/* #cocos2d-x libs/ bin/ obj/ assets/ gen/ out/ .classpath .project .cproject # backup files *.bak *.bak[0-9][0-9] *.orig *.orig[0-9][0-9] # source packages - anywhere *.tar.bz2 *.tar.gz *.tar *.tgz *.gtgz
Everything that is not part of the code sources you create does not need to go into git.
( ), , , , , , git ( , , , ).
Source: https://habr.com/ru/post/1541296/More articles:Is there a way to compare jQuery objects ignoring the attributes of the ORDER HTML code? - javascriptВозврат списка без использования объекта NHibernate - c#How to pass gulp frontmatters output to another plugin in gulp? - javascriptWhat happens if permission is declared in multiple manifests? - androidMatlab - Register and crop aligned images from two different sources - imageAfter impersonating a domain user in windows, an application running as an administrator cannot load a profile - impersonationИспользование вложенных запросов против CTE и производительности - sqlDo I need a recursive CTE to update a table that relies on itself? - sqlCan pop_back () ever reduce the capacity of a vector? (C ++) - c ++IOS App Store URL - speed button - iOS - urlAll Articles