본문 바로가기

etc3

Github 블로그 만들기 (with Hexo) # 프로젝트 생성 1. 다운로드 및 설치 git : https://git-scm.com/downloads nodejs : https://nodejs.org/ko/ 2. 프로젝트 생성 # hexo-cli 설치 $ npm install hexo-cli -g # hexo 프로젝트 생성 $ hexo init $ cd $ npm install 3. 확인 # 구동 $ cd $ hexo server # 접속 https://localhost:4000 # tranquilpeak 테마적용 1. 테마 다운로드 hexo-theme-tranquilpeak 해당 파일이 들어있는 폴더명을 tranquilpeak으로 변경하여 /themes/ 디렉토리로 이동 hexo 프로젝트의 /_config.yml 파일을 열어 themes: tra.. 2021. 9. 9.
MIME-Type List MIME-TypeDescriptionFile Extensionapplication/acadAutoCAD drawing filesdwgapplication/clariscadClarisCAD filesccadapplication/dxfDXF (AutoCAD)dxfapplication/msaccessMicrosoft Access filemdbapplication/mswordMicrosoft Word filedocapplication/octet-streamUninterpreted binarybinapplication/pdfPDF (Adobe Acrobat)pdfapplication/postscriptPostscript, encapsulated Postscript,Adobe Illustratorai, ps, ep.. 2015. 12. 1.
git command -- working -> staged -> commit -- git 초기화 git init -- git 상태 확인 git status -- git 관리대상 추가git add [filename]git add * -- git 관리 파일을 스냅샷에 기록하기git commit -m "message for commit" -- 커밋이후 변경된 내용 비교-- 커밋 후 수정한 파일은 워킹 디렉토리 단계로 변경 -- working 과 commit 비교 git diff -- 스테이지드 이후 변경된 내용 비교-- staged 와 commit 비교 git diff --staged -- 스테이지 단계를 건너뛰고 커밋 -- git add 단계 건너뛰고 git commit -a -- commit 로그 확인git log -p -1 .. 2015. 11. 18.