jinnnh
  • 블로그
  • ABOUT

jinnnh 블로그

Featured Posts
  • Git 디버깅(git bisect)

    Git 디버깅(git bisect) git bisect start // git bisect 시작 git bisect good <rev> // 단어는 good 이지만 의미는 old(과거 시점 or 시작 시점) git bisect bad <rev> // 단어는 bad 이지만 의미는 new(최근 시점 or 종료 시점) git bisect <bad rev> <good rev> // git bisect good <rev>, git bisect bad <rev> 한 번에 실행 git bisect reset // git bisect 종료 git bisect start git bisect good 3a72849 git bisect bad 6aab2f2 or...

    git debug

    jinnnh's profile image

    jinnnh

    2020-05-11 11:00

  • Git 블로그 시작하기(How to make GitHub Pages)

    Git 블로그 시작하기

    git github github_pages

    jinnnh's profile image

    jinnnh

    2020-03-16 11:00

  • ssh를 사용해서 동일한 컴퓨터에서 GitHub에 여러개의 계정 연결(use multiple ssh-keys for different accounts)

    1. 로컬에 SSH 키 생성하기 1) .ssh 폴더로 이동하기(기본적으로 저장되는 디렉토리) -없다면 키를 생성할 때 자동으로 생성된다. (따로 직접 만들어도 된다.) $ cd ~/.ssh 2) .ssh 디렉토리가 존재한다면 기존의 키를 확인하자. $ ls id_rsa.pub id_rsa .pub가 붙은 파일은 공개 키, 아닌 것은 개인 키 3) ssh 키 생성하기 $ ssh-keygen -t rsa -C '{username}@gamil.com' //계정의 이메일 주소 여기서 새로운 키를 저장할 경로를 묻는다. ex) username01_gmail_rsa // 계정_메일호스트_rsa Enter file in which to save the key...

    git github ssh

    jinnnh's profile image

    jinnnh

    2020-03-09 17:30

  • jsDelivr Open Source CDN 사용하기

    github https://cdn.jsdelivr.net/gh/{사용자 이름}/{repository 이름}/{파일 경로}

    cdn

    jinnnh's profile image

    jinnnh

    2020-02-05 14:00

  • 아이폰X 노치 대응하기

    <!-- 기존 --> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=yes"> <!-- 수정 --> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=yes, viewport-fit=cover"> /* 공통 헤더 */ .logo { position: absolute; top: 14px; left: 25px; left: calc(25px + env(safe-area-inset-left)); } /* 우측 전체메뉴 버튼 */ .btn-menu-open { position: absolute; top: 0; right: 6px; right: calc(6px + env(safe-area-inset-right)); } /* 본문 내용 */ .common-content { margin: 0 auto; padding: 40px 25px 52px; padding-left: calc(25px + env(safe-area-inset-left)); padding-right: calc(25px...

    css iOS

    jinnnh's profile image

    jinnnh

    2019-09-20 16:00

  • No Previous Page
  • 1
  • 2
  • 3
  • 4
  • 5
  • Next Page
  • github
  • rss

Copyright © Kakao Corp. All rights reserved.