906bc
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
--- tags: 모헤윰 --- # Ground rule ## Commit Convention 커밋 형식 ``` <커밋 타입>(<영역>): <커밋 메세지> <관련 이슈 리스트>, ``` 파일명을 제외하면 영어 소문자로 작성 (한글은 무관) ex) - feat(be): 회원가입 API #15 - docs: api 문서 작성 #14, #16 - fix: 특정 브라우저에서 로그인이 되지 않는 버그 수정(x) - fix: 특정 브라우저에서 로그인이 되지 않음(o) - 버그 설명할 때 메세지 바디에 적거나 이슈로 빼서 어떤 버그가 어떻게 재현 가능한지 설명 필요 ### 커밋 타입 - feat: 새로운 기능 추가 - fix: 버그 수정 - docs: 문서 관련 - refactor: 코드 리팩토링 - build: 빌드 관련 파일 수정 - test: 테스트 코드 관련 - chore: 그 외 자잘한 수정 ### 커밋 영역 - fe - be - cicd (?) 이외에 레포지토리 전체에 해당하는 경우는 영역 표시 X ![](https://s3.us-west-2.amazonaws.com/secure.notion-static.com/f5974a28-993d-49fa-aa2d-b449d2f9bb5b/Untitled.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIAT73L2G45EIPT3X45%2F20221107%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20221107T043601Z&X-Amz-Expires=86400&X-Amz-Signature=ee1aec3c87da5224534ba7ac3bb708ab7c1292241d39665c92eeed3c6ed19f22&X-Amz-SignedHeaders=host&response-content-disposition=filename%3D%22Untitled.png%22&x-id=GetObject) ## Branch 전략 - main - protected - dev - feature - feature/{issue number}-{feature name} - ex) feature/12-account - fix - fix/{issue-number}-{feature name} 1. feature, fix 단위로 브랜칭하여 개발 2. feat/fix 브랜치 리뷰 후 dev에 merge 1. 급한 PR의 경우 slack 연락 후 확인하고 바로 merge 3. 매일 오전 서로의 PR 확인 후 merge하는 과정 4. 목요일 배포 전 dev -> main ### 브랜치 과다 어떻게? PR 후 삭제 -> GITHUB action으로 브랜치 자동 삭제 안 되나ㅏ?? delete merged branch 이런거 있을거같은데.. https://github.com/marketplace/actions/delete-merged-branch ## Issue ### 라벨링 * bug * feature * enhancement * docs * frontend * backend ### 템플릿 #### feature # 이슈 이름 ## 이슈가 다루는 문제 ## 학습 내용 ## Refs. ``` #### bug ``` markdown # 이슈 이름 ## 버그 내용 스크린샷 같은거 첨부 ## 버그 해결 과정 ``` ## PR PR 확인한 사람은 리뷰어로 등록 ### 라벨링 issue와 동일 ### 템플릿 ## 협업을 어떻게 할 것인가?? * 기능별로 개인이 fe/be다 맡기 * 기능별로 fe쪽은 fe를 더 가져가는 식 * 기능별로 소규모 팀을 이루어서 하기 * 기간별로 FE, BE 몰아서 하기 * 주마다 역할 바꿔가면서 하기 * BE쪽에서 관리자 FE쪽 + FE쪽에서 일부 BE 맡기 * FE/BE 나눠서 한다 - 성익) 주마다 역할 바꿔가면서 하기 - 바꾼 주간에는 헬퍼와 리뷰어 지정 - 예) - 백성익 FE 투입 -> 헬퍼 이선민, 리뷰어 이우재 - 막히면 5분 안에 헬퍼한테 도와달라 요청 - PR 은 리뷰어에게 요청 - 4주차에는 2주차에서 헬퍼, 리뷰어 변경 (헬퍼 이우재, 리뷰어 이선민) | | FE1 | FE2 | BE1 | BE2 | ---|---|---|---|--- Week1|이선민|이우재|김남효|백성익 Week2|이선민|**백성익**|김남효|**이우재** Week3|이우재|**김남효**|백성익|**이선민** Week4|이선민|이우재|김남효|백성익 헬퍼: 기존 역할 캠퍼 리뷰어: 다른 역할로 넘어간 기존 캠퍼 ## 본인이 진행한 부분 문서화 ### 본인의 업무 진행 상황이 다른 팀원들이 읽었을 때도 이해할 수 있도록 정리 * 자기가 작업하지 않은 부분에 대해서도 블랙박스가 생기지 않도록, 각자 분업한 부분에 대해서 구현한 방법이나 사고 과정을 정리하여 기록 * 각자 PR 보낼때 거기에 각자 고민, 해결, 진행한 부분 정리해서 보내기 > - 기존안) 한명이 취합해서 wiki에 작성 (한명이 할까? 돌아가면서 할까?) > - 남효님) 노션을 쓰자 > - 우재님) 위키 쓰자 > - 백성익) repo 안에 docs 디렉토리 따로 .md > - 먼저 위키를 써보고 멘토님께 피드백 ### PR 단위 * ISSUE 마다 겪은 문제들 **이슈 안에 코멘트로 달기** > - PR 종속 문제는 어떻게 해결? > > - 곧바로 PR 요청 > > - 실무에서 어떤지 멘토님에게 질문 > > - CI 테스트 문제도 멘토님에게 질문 > > - 처음에는 코드 대격변 일어나면서 테스트 코드도 막 바뀌지 않나? ## 개인의 문제상황 팀에게 공유 ### 고민 혼자 30분 이상 하지 않고 물어보기 * 30분 이상 막히면 이슈 상태를 stuck으로 옮겨서 다른 사람과 같이 해결 * 이것도 이슈로 ‘왜 막혔는지’ 작성 ## 코어타임 지키기 ### 점심시간 이후 1시부터 7시까지 (마클있는 시간은 제외) 줌 ⇒ 카메라 켜기 * 언제든 질문하고 상의할 수 있게 * 쉬는 시간은 자유 ⇒ 쉬고 온다고 말해주기 ### 코어타임 이외 시간은 자유롭게 하고 슬랙으로 소통하기 ## 한주 단위 계획은 최대한 지키기 * 안되면 주말을 쓰더라도.. ## PR 머지는 전원이 확인하고 ok받으면 그때 최종 머지 * PR 내용은 다음날 데일리 스크럼때 서로 공유 * 점심식사전 (12시) 까지 최종 머지 ## 개인 일정 미리 공유해주기 * 슬랙 혹은 줌 ## 의사결정 충돌 발생하면 어떻게할지? ### 팀원 모두 납득 가능할 때 까지 토의 * 30분 안에 * 그래도 안되면 다수결 * 반반 동수면 사다리

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully