Skip to content

Commit cbbee88

Browse files
committed
[트러블로그] 서브 모듈 레포 구성
0 parents  commit cbbee88

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
# 서브모듈 포인터 자동 업데이트
4+
- package-ecosystem: "gitsubmodule"
5+
directory: "/" # 레포 루트에 .gitmodules가 있으므로 /
6+
schedule:
7+
interval: "daily" # 매일 체크 (혹은 "weekly")
8+
# optional: 특정 경로만 관리하고 싶을 때 allow 사용 가능
9+
# allow:
10+
# - dependency-name: "backend"
11+
# - dependency-name: "frontend"
12+

.gitmodules

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[submodule "backend"]
2+
path = backend
3+
url = https://github.com/IT-Cotato/11th-Troublog-BE.git
4+
branch = main
5+
[submodule "frontend"]
6+
path = frontend
7+
url = https://github.com/IT-Cotato/11th-TroubleLog-FE.git
8+
branch = develop

backend

Submodule backend added at 701e355

frontend

Submodule frontend added at 77c360f

0 commit comments

Comments
 (0)