jinnnh
  • 블로그
  • ABOUT

jinnnh 블로그

Featured Posts
  • VS Code 단축키

    Visual Studio Code Keymaps Option Keymaps Multi-Cursor Editing Ctrl + Alt + Shift + → & ← & ↑ & ↓ IntelliSense Ctrl + Space Rename Refactoring F2 Formatting Shift + Alt + F Code Folding Ctrl + Shift + [ & ] Errors and Warnings Ctrl + K , N

    EDITOR VS Code

    jinnnh's profile image

    jinnnh

    2017-04-10 17:00

  • 웹스톰 단축키

    WebStorm Keymaps Option Keymaps 설정창 열기 Ctrl + Alt + S 파일 검색 Ctrl + Shift + N 동일 변수 선택 Alt + J / Ctrl + G 일괄 선택 Alt + Ctrl + Shift + J 한줄 복사 Ctrl + D 쓸모없는 공백 삭제 Ctrl + Shift + J 프로젝트 텍스트 검색 Ctrl + Shift + F 들여쓰기 정리 영역선택, Ctrl + Shift + I 프로젝트 검색(All) Shift, Shift 클립보드 선택 붙여넣기 Ctrl +...

    IDE WebStorm JETBRAINS

    jinnnh's profile image

    jinnnh

    2017-03-24 20:00

  • git 히스토리 삭제하기(초기화)

    1. 기존의 히스토리 삭제 $ rm -rf .git 2. 파일정리 후 새로운 git 설정 $ git init $ git add . $ git commit -m "first commit" 3. git 저장소 연결 후 강제 push $ git remote add origin {git remote url} $ git push -u --force origin master

    git

    jinnnh's profile image

    jinnnh

    2017-03-22 22:00

  • 자주쓰는 git 명령어

    git 명령어   command 전체 설정 확인 git config --global -l 저장소 url 변경 git remote set-url <name> <url> git remote set-url origin https://github.com/gutmate/gutmate.github.io.git 사용자 이름 변경 git config --global user.name <user.name> 사용자 이메일 변경 git config --global user.email <user.email> 상태 확인 git status 파일을 추적 대상에 등록 git add <file name> git add index.html 파일을 추적 대상에 등록(전체) git add . 커밋 git commit -m '<commit message>' git commit -m 'first commit' 서버에 업로드...

    git

    jinnnh's profile image

    jinnnh

    2017-03-21 16:00

  • 엘리먼트 속성 가져오기

    getComputedStyle() IE9 이상 var style = window.getComputedStyle(Element); console.log(style.width); console.log(style.backgrondColor); IE9 이하 window.onload = function () { if (!window.getComputedStyle) { window.getComputedStyle = function(element) { return element.currentStyle; } } }

    javascript

    jinnnh's profile image

    jinnnh

    2017-03-20 16:00

  • Previous Page
  • 3
  • 4
  • 5
  • 6
  • 7
  • Next Page
  • github
  • rss

Copyright © Kakao Corp. All rights reserved.