본문 바로가기

핀테크프론트엔드과정2기

(3)
패스트캠퍼스) KDT 핀테크 서비스 프론트엔드 과정 2기 220330 TIL | 국비지원교육 | 핀테크 프론트엔드개발자 ## 220330 Day03 Today I Learned GitBlog Node.js Hexo .gitignore Branch GitFlow Git Blog Node.js(https://nodejs.org/en/) 설치 $ npm install -g hexo-cli username.github.io 리파지토리 생성 $ touch index.html Init hexo project $ npm install -g hexo hexo init {directory name} cd {directory name} npm install $ hexo clean && hexo deploy $ hexo server .gitignore 특정 파일을 추적하고 싶지 않을 경우 .gitignore 파일을 만든 뒤 추적을 원하지 않..
패스트캠퍼스) KDT 핀테크 서비스 프론트엔드 과정 2기 220329 TIL | 국비지원교육 | 핀테크 프론트엔드개발자 ## 220329 Day02 Today I Learned Start Git Project(clone, init) Start The Git Project $ git clone $ git init Start Project With Clone 깃허브에서 repository 생성 $ git clone {repo address} $ git add $ git commit $ git push Start Project With Init $ mkdir {repo name} $ cd {repo name} $ git init $ git remote add origin https://github.com/{username}/{reponame}.git $ touch README.md $ git add README.md $ git..
패스트캠퍼스) KDT 핀테크 서비스 프론트엔드 과정 2기 220328 TIL | 국비지원교육 | 핀테크 프론트엔드개발자 ## 220328 Day01 Today I Learned shell vim git commit Shell 운영체제에서 커널과 사용자 사이에서 사용자의 명령을 해석하고 처리 결과를 나타내주는 프로그램. 명령 줄 쉘(CLI), 그래픽 쉘(GUI)로 구분한다. 다양한 운영체제에서 bash가 기본 쉘로 채택되었다. Shell Command ~ : 로그인한 사용자의 상위 폴더 $ : 명령어를 입력받을 준비가 완료되었다는 의미 ls : 사용가능 디렉토리 목록 확인 cd : change directory, 디렉토리 변경 mkdir : make directory, 디렉토리 생성 .. : 상위 폴더 . : 현재 폴더 - : touch : 텍스트 기반의 새로운 파일을 만들 때 사용, 특정 프로그램을 거쳐 여는 파일(.ex..