Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- meatadata
- generic
- react
- 안드로이드빌드에러
- extends
- app.post
- async
- TS
- 배열중복요소제거
- interface
- 스크롤이벤트
- map
- 슬라이딩윈도우
- 페이지네이션
- mainapplication.kt
- Next.js
- app:compiledebugkotlin
- 이진탐색
- 글또10기
- Spring
- 상속
- 타입스크립트
- supabase 페이지네이션
- materialicons
- javascript
- reactnative
- array
- Filter
- 리액트네이티브아이콘
- set
Archives
- Today
- Total
목록전체 글 (162)
rhanziy
js.스크롤이벤트 fade
[자바스크립트] 스크롤에 연동되는 fade 효과를 구현하는 3가지 방법 (tistory.com) [자바스크립트] 스크롤에 연동되는 fade 효과를 구현하는 3가지 방법 요새 css와 자바스크립트를 이용해서 interactive webpage에 대해 관심을 가지고 공부하고 있다. 특히 유튜버 중에 Interactive Developer 이분을 보면서 수준 차이를 확실히 느끼고 있다. Interactive Develop.. all-dev-kang.tistory.com intersection observer 관련 문서 https://darrengwon.tistory.com/1250
Html_css_js
2021. 12. 17. 21:42
git 브랜치
브랜치 옮겨가기 git checkout 브랜치이름 브랜치 합치기 git merge 브랜치이름 > 적용될 브랜치에서 합칠 브랜치명을 작성 브랜치 생성 후 checkout git checkout -b 브랜치이름 브랜치 확인 git status 로컬브랜치 삭제(내 PC) git branch -d 브랜치이름 원격브랜치 삭제(github) git push origin -d 브랜치이름 / git push origin --delete 브랜치이름 github에 업데이트/동기화 git push origin main 브랜치 목록 확인 git branch -a , -r (모든 브랜치확인, 원격 브랜치만 확인)
git
2021. 12. 17. 21:37