web-dev-qa-db-ja.com

反応ネイティブに推奨される.gitignore

私はネイティブとejectedを完全なビルド環境に反応させようとしています。悲しいことに、eject-scriptは賢明な.gitignoreファイル。

アプリの開発について多くのことを知らないので、どのディレクトリができるのか疑問に思う.gitignore ここに?

私は推測しています:

  • Android/build
  • Android/app/build
  • Android/.gradle/

これらは大丈夫ですか、それとももっとすべきディレクトリがありますか.gitignore

19
DeX3

以下は.gitignoreファイルにはreact-native initコマンド。完全なファイルを見つけることができます こちら

# OSX
#
.DS_Store

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
project.xcworkspace

# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml

# node.js
#
node_modules/
package-lock.json
npm-debug.log
yarn-error.log
yarn.lock

# BUCK
buck-out/
\.buckd/
*.keystore

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/

*/fastlane/report.xml
*/fastlane/Preview.html
*/fastlane/screenshots

# Bundle artifact
*.jsbundle
33
bennygenel