Skip to content

Commit 8112abb

Browse files
이혜성이혜성
authored andcommitted
project init
1 parent 5439437 commit 8112abb

18 files changed

+18701
-47
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

README.md

Lines changed: 59 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,59 @@
1-
# ⭐ UMC CAU 6th Web
2-
> 주 1회 워크북 진행 후 미션 코드 공유 및 피드백을 주고 받습니다.
3-
>
4-
> 스터디 기간 : 2024년 3월 ~ 6월
5-
6-
<br>
7-
8-
## 📎 GitHub 사용법 및 규칙
9-
> [깃허브 사용법 및 규칙](https://www.notion.so/makeus-challenge/Git-Hub-b54463cb25e2430bb5ec190d70490665?pvs=4)
10-
11-
1. 자신의 브랜치에 프로젝트 업로드하기
12-
2. Main 브랜치로 PR(Pull Request) 올리기 (참고: [좋은 PR 작성하기](https://medium.com/hayanmind-tech-blog-kr/%EC%A2%8B%EC%9D%80-pr%EC%97%90-%EB%8C%80%ED%95%9C-%EB%8B%A8%EC%83%81-6586c3f757ac))
13-
14-
- **Assignees(PR 담당자): 본인**
15-
16-
- **Labels: mission 🚀**
17-
18-
<br>
19-
20-
## ✔ Commit Message Convention
21-
| 커밋명 | 내용 |
22-
| -------- | ------------------------------------------- |
23-
| FEAT | 파일, 폴더, 새로운 기능 추가 |
24-
| FIX | 버그 수정 |
25-
| DOCS | README 등의 문서 수정 |
26-
| STYLE | 코드 형식, 정렬, 주석 등의 변경 |
27-
| REFACTOR | 코드 리팩토링 |
28-
| TEST | 테스트 코드 추가 및 수정 |
29-
| CHORE | 환경설정, 빌드 업무, 패키지 매니저 설정등.. |
30-
| HOTFIX | 치명적이거나 급한 버그 수정 |
31-
| REMOVE | 사용하지 않는 변수, 파일 etc 삭제 |
32-
33-
- 예시: "[Feat] 로그인 API 연동"
34-
35-
<br>
36-
37-
## 🍀 Members
38-
| [![텍스트](https://avatars.githubusercontent.com/u/135580919?v=4)](https://github.com/selfishAltruism) | [![텍스트](https://avatars.githubusercontent.com/u/68678755?v=4)](https://github.com/Jinho622) | [![텍스트](https://avatars.githubusercontent.com/u/102412616?v=4)](https://github.com/hyeonsoo0625) | [![텍스트](https://avatars.githubusercontent.com/u/72022985?v=4)](https://github.com/zxc534) |
39-
|:---:|:---:|:---:|:---:|
40-
| 밍키/강민규 | 루피/김진호 | 클러그/김현수 | 제리/송영범 |
41-
42-
43-
| [![텍스트](https://avatars.githubusercontent.com/u/74509920?v=4)](https://github.com/jungwho) | [![텍스트](https://avatars.githubusercontent.com/u/165870984?v=4)](https://github.com/likemarch) | [![텍스트](https://avatars.githubusercontent.com/u/127924700?v=4)](https://github.com/juuuuone) | [![텍스트](https://avatars.githubusercontent.com/u/74491255?v=4)](https://github.com/jinyujin0602) |
44-
|:---:|:---:|:---:|:---:|
45-
| 후/송정후 | 코멧/이혜성 | 골팽이/조주원 | 지니/진유진 |
1+
# Git 설정하기
2+
3+
1. 깃 초기화
4+
```
5+
git init
6+
```
7+
8+
2. 깃 remote 연결하기
9+
```
10+
git remote add origin {깃허브 레포지토리 주소}
11+
```
12+
13+
3. 깃 최신 정보 불러오기
14+
```
15+
git pull origin {브랜치 이름}
16+
```
17+
18+
4. 깃 새 브랜치 생성하기
19+
```
20+
git branch -M {브랜치 이름}
21+
```
22+
23+
5. 깃 브랜치 이동하기
24+
```
25+
git checkout {브랜치 이름}
26+
```
27+
28+
5. 깃에 파일 전체 추가하기
29+
```
30+
git add .
31+
```
32+
33+
6. 깃에 특정 파일 추가하기
34+
```
35+
git add {파일이름}
36+
```
37+
38+
7. 깃 커밋하기
39+
```
40+
git commit -m "커밋 메시지"
41+
```
42+
43+
8. 깃 원격 저장소에 푸시하기
44+
```
45+
git push origin {브랜치 이름}
46+
```
47+
48+
49+
# React 설정하기
50+
51+
1. 프로젝트 생성하기
52+
```
53+
npx create-react-app {프로젝트 이름}
54+
```
55+
56+
2. 프로젝트 실행하기
57+
```
58+
npm run start
59+
```

0 commit comments

Comments
 (0)