개인공부 54

[GIT] ! [rejected] master -> master (non-fast-forward) 문제해결

github에서 저장소 생성 저장소 주소를 remote에 입력 (git remote add origin https://github…..) 로컬에서도 정상적으로 초기화(git init) git pull 또는 git merge 명령이 동작하지 않음 git push origin master시 [rejected] master -> master (non-fast-forward) 에러가 발생 깃허브에 생성된 원격 저장소와 로컬에 생성된 저장소 간 공통분모가 없는 상태에서 병합하려는 시도로 인해 발생. 관련 없는 두 저장소를 병합하는 것은 안되도록 설정되어 있음. 아래와 같이 git pull 시에 –allow-unrelated-histories 옵션 추가하여 관련 없었던 두 저장소를 병합하도록 허용 git pull ..

개인공부/GIT 2021.02.16

[Atom] 설치, emmet, 메뉴창 on/off

www.atom.io A hackable text editor for the 21st Century At GitHub, we’re building the text editor we’ve always wanted: hackable to the core, but approachable on the first day without ever touching a config file. We can’t wait to see what you build with it. atom.io download 받고 파일 실행하면 자동 설치 완료 File에서 Setting들어가서 Install에서 emmet 설치하기 메뉴창 on/off Alt + v 누르고 View에서 Toggle menu bar 클릭

개인공부/HTML 2021.01.09

자바스크립트 기초

변수 값을 저장, 값의 재사용을 위해 사용 let hello = "하이"; "하이"를 hello에 할당 변수의 이름은 값의 형식에 따라 작성 = > 시맨틱 주석 // /* */ 정수, 실수 자바스크립트는 정수와 실수를 구분하지 않는다. 1과 1.0 모두 1로 간주한다. 1.2 + 1 = 1.2 실수로 계산한다. 상수 변경할 수 없는 값 시맨틱선언으로 대문자를 사용 let TEN = 10; 데이터 타입 Number, String, Undefined, Null, Boolean, Object 연산자 할당 연산자 단일 연산자 = 복합 연산자 +=, -=, *=, /= compile=> 자바스크립트 엔진이 해석(자바스크립트 언어로) 산술 연산자 +, -, *, /, % 숫자 + 문자 = 문자 1 + "A" = 1..

[BOOTSTRAP] sample(네비게이션바, 썸네일)

다음과 같은 구조의 레이아웃을 만들어 본다. 부트스트랩 사이트에 접속하여 컴포넌트섹션으로 접속한다. bootstrapk.com/components 콤포넌트 · 부트스트랩 Some default panel content here. Nulla vitae elit libero, a pharetra augue. Aenean lacinia bibendum nulla sed consectetur. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit. bootstrapk.com 네비게이션 바를 검색하여 코드를 복사하여 붙여넣기 한다...