Animated Hello Kitty Wink
전체 글

전체 글

    hELLO 테마 색상 커스텀 🎨

    1. 티스토리 테마 티스토리 hELLO 테마를 다운 받아 기본적인 색상만 변경 https://pronist.tistory.com/5?category=844785 hELLO 티스토리 스킨을 소개합니다. hELLO 스킨은 본래 기능의 많이 없었다가, 티스토리 블로거 여러분의 호응에 힘입어 기능의 추가와 함께 업데이트를 여러 번 하게 되었습니다. hELLO 1.0 때와 비교하면 비교할 수도 없을 만큼의 기 pronist.dev 2. 색상 변경 .permalink>.header .heading .category { color: hsla(273, 100%, 87%, 0.849); // color 변경 } .permalink .container_postbtn .postbtn_like .wrap_btn:not([id..

    [github] .DS_Store 파일 삭제 & .gitignore 추가

    1. .DS_Store 파일 삭제 find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch // 또는 고냥 .DS_Store있는 파일에서 rm -f .DS_Store 2. .gitignore 파일 생성 후 .DS_Store 추가 echo .DS_Store >> .gitignore

    [github] git add, commit, push 취소

    github git add, commit, push 잘못했을때 취소하기 git add 취소(unstaged로 변경) git reset HEAD [file명] & git reset HEAD file명이 없을 경우 add한 전체 파일 대상 git commit 취소 git log로 commit 내역 조회 git reset HEAD^ : 최신 커밋 취소 (^의 개수만큼 취소) git reset [--옵션] [취소할 커밋 해쉬] : 특정 커밋 취소 commit 뒤에 04~ 이게 commit Hash 따라서 아래와 같은 방법으로 커밋 취소 git reset --hard 049989727b4d4471be715aa856922b67b4f32b03 or git reset HEAD^ +) --hard 과거 이력으로 발생한 ..