[TIL] 20240626 - Issue, GitHub 문서 템플릿

jini·2024년 6월 26일
0

TIL

목록 보기
34/48

Issue


프로젝트의 기획, 작업, 개선 사항, 버그 수정, 기능 추가 등의 이슈들을 위한 게시판

→ 담당자, 라벨 등을 이용해 분류 가능

🧊 PR에 이슈 연결

https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue

  • close
  • closed
  • fix
  • fixed
  • resolve
  • resolved



GitHub 문서 템플릿


GitHub에서 제공해주는 템플릿 기능

  • Issue Template
  • Pull Request Template

🧊 템플릿 만들기

직접 파일 생성

  • repository 생성
  • .github 폴더 생성
  • issue_template.me
## test1
- [] item1
- [] item2

## test2
  • pull_request_template.md
## pull_request_template

## test

설정 이용

Settings → General → Features → Issues → Set up templates



모던 자바스크립트 튜토리얼


자바스크립트의 개념들을 다룸

🧊 로컬 환경 세팅

  1. Git, Node.js 설치
  2. 전역에 필요한 모듈 설치
npm install -g bunyan gulp@4
  1. 프로젝트에 쓰일 루트 폴더 생성
  2. 서버 저장소 클론
git clone https://github.com/javascript-tutorial/server
git clone https://github.com/javascript-tutorial/engine server/modules/engine
  1. 한국어 저장소 fork 받은 후, fork된 저장소 클론
git clone https://github.com/GitHub username/ko.javascript.info
  1. 모듈 설치 후 사이트 구동
npm install
./edit ko
  • https://127.0.0.1:3000 접속
  1. 튜토리얼 수정

0개의 댓글