Friday, 11 August 2017

[GitHub] 유용한 것 정리

* 특정 기간 전부터의 변경 내역 확인

- https://github.com/[USER]/[PROJECT]/compare/[BRANCH]@[n.day.ago}...[BRANCH]
   - day, week, month, year 옵션 사용 가능
   - 변경 내역이 많으면 최근 내용만 나옴

* 지정한 날 이후 변경 내역 확인

- https://github.com/[USER]/[PROJECT]/compare/[BRANCH]@{YYYY-MM-DD}...[BRANCH]

* commit 메시지로 Issue 연관 나타내기

- [Commit Message] #[이슈번호]
   - ex) Modified code communicating DB server #3

* commit 메시지로 Issue Close 하기

- fix #[이슈번호]
   - fixes #[이슈번호]
   - fixed #[이슈번호]
   - close #[이슈번호]
   - closes #[이슈번호]
   - closed #[이슈번호]
   - resolve #[이슈번호]
   - resolves #[이슈번호]
   - resolved #[이슈번호]

* 이모티콘 자동완성

- ':'(colon) 입력하면 이모티콘 리스트 나옴

No comments:

Post a Comment