Skip to content

Commit a873984

Browse files
authored
Merge branch 'main' into dev
2 parents c5439f0 + 32cf6ba commit a873984

File tree

2 files changed

+54
-4
lines changed

2 files changed

+54
-4
lines changed

.github/pull_request_template.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
## #️⃣ 관련 이슈
2+
> closes #이슈번호
3+
4+
---
5+
6+
## 💻 작업 내용
7+
8+
> 이번 PR에서 작업한 내용을 간략히 설명해주세요 (이미지 첨부 가능)
9+
10+
---
11+
12+
## 📝 코드 설명
13+
14+
> 구현하면서 고려한 점, 구조를 이렇게 구성한 이유 등을 간단히 적어주세요.
15+
16+
ex. ViewModel에서 선택 흐름 추적을 위해 path를 배열로 관리했습니다.
17+
18+
---
19+
20+
## 🙋 리뷰 요구사항
21+
22+
> 리뷰어에게 특별히 봐줬으면 하는 부분을 적어주세요.
23+
24+
ex. 이 부분의 코드가 잘 작동하는지 체크해주실 수 있나요?
25+
26+
---
27+
28+
## 📁 참고한 내용 (선택)
29+
* (주소 첨부)
30+
*
31+
---
32+
33+
## ✋🏻 잠깐! 확인하셨나요?
34+
- [ ] 컨벤션 확인
35+
- [ ] 기능 정상 작동 테스트 완료
36+
- [ ] 디버깅 코드 및 주석 제거
37+
- [ ] 사용하지 않는 코드/파일 정리
38+
- [ ] 작업 내용 및 코드 설명 작성
39+

.gitignore

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
## User settings
66
xcuserdata/
7+
*.xcuserstate
8+
*.xcscmblueprint
79

810
## Obj-C/Swift specific
911
*.hmap
@@ -22,7 +24,7 @@ playground.xcworkspace
2224
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
2325
# Packages/
2426
# Package.pins
25-
# Package.resolved
27+
# Package.resolved # ⚠️ 버전 고정 원하면 커밋 권장
2628
# *.xcodeproj
2729
#
2830
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
@@ -37,10 +39,10 @@ playground.xcworkspace
3739
# you should judge for yourself, the pros and cons are mentioned at:
3840
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
3941
#
40-
# Pods/
42+
Pods/
4143
#
4244
# Add this line if you want to avoid checking in source code from the Xcode workspace
43-
# *.xcworkspace
45+
*.xcworkspace
4446

4547
# Carthage
4648
#
@@ -62,4 +64,13 @@ fastlane/screenshots/**/*.png
6264
fastlane/test_output
6365

6466
.DS_Store
65-
Secrets.plist
67+
Secrets.plist
68+
69+
# ========================
70+
# 추가: 보안/서명 관련
71+
# ========================
72+
*.p12
73+
*.mobileprovision
74+
75+
# Derived data
76+
DerivedData/

0 commit comments

Comments
 (0)