전체 글
-
Github CLI 커맨드 - gh pr statusGithub 2021. 6. 17. 17:05
Github CLI 커맨드 - gh pr status 현재 작업중인 브랜치와 관련이 있는 PR, 내가 생성한 PR, 나에게 코드 리뷰를 요청한 PR 을 모두 보여줍니다. 샘플코드 $ gh pr status Relevant pull requests in cli/cli Current branch There is no pull request associated with [fix-homepage-bug] Created by you You have no open pull requests Requesting a code review from you #100 Fix footer on homepage [fix-homepage-footer] ✓ Checks passing - Review pending
-
Github CLI 커맨드 - gh issue listGithub 2021. 6. 17. 16:49
Github CLI 커맨드 - gh issue list gh issue list 명령어를 실행하면 이슈 목록을 확인할 수 있습니다. 샘플코드 $ gh issue list Showing 4 of 4 issues in cli/cli #16 Improving interactions with protected branches #14 PR commands on a detached head #13 Support for GitHub Enterprise (enhancement) #8 Add an easier upgrade command (bug)
-
How to make smooth scroll ?카테고리 없음 2021. 6. 17. 15:48
Smooth scroll Add smooth scroll code to your hompage! Smooth Scroll Code const speed = 0.04; let height = 0; let offset = 0; const root = document.body; root.style.position = "absolute"; root.style.width = "100%"; const scrollWrap = root; if (scrollWrap) { height = scrollWrap.getBoundingClientRect().height - 1; } root.style.height = Math.floor(height) + "px"; function smoothScroll() { offset += ..
-