Git 제외 폴더 지정

Git에 업로드(Push) 할때 쓸대 없는 파일 및 폴더는 .gitignore 파일을 루트에 정의 하면 자동으로 해당되는 조건은 제외하여 알아서 업로드(Push) 한다.

 

.gitignore 는 다음과 같이 구성 할 수 있다. (필요에 따라 수정하면 된다.)

# 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/
npm-debug.log
yarn-error.log

# 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

 

제외된 파일을 Git에 포함하고 싶을 때

만약 폴더를 제외 시켰으나 해당 폴더의 특정 파일은 포함 시키고 싶을 때가 있다.

이럴 땐 다음과 같은 명령어로 추가 해 주면 된다.

$ git add -f (파일경로)

예시>

$ git add -f ./node_modules/react-native-custom-module/ios/ModuleManager.m

 

+ Recent posts