일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Do it
- JavaScript
- 코딩 자율학습 html + css + 자바스크립트]
- 코딩자율학습
- https://api.jquery.com/
- JS
- html 문서작성
- html 필수태그
- do it! 한권으로 끝내는 웹 기본 교과서 html+css+자바스크립트 웹 표준의 정석
- cpu 성능 향상 기법
- Git
- CPU
- 메모리와 캐시 메모리
- 자바스크립트
- 혼자 공부하는 컴퓨터구조+운영체제
- css배경
- TS
- 코딩 자율학습 html + css + 자바스크립트
- do it! html+css+자바스크립트 웹 표준의 정석
- 코딩
- html 기본문서
- css필수 속성
- 코딩 자율학습
- react
- propschildren
- CSS
- 이벤트
- html 실무
- css박스 모델
- HTML
- Today
- Total
목록Git (2)
게으른 나에게
폴더 생성작업 폴더에서 터미널창 열기레포지토리 생성버전 관리 할 폴더 설정 명령어 (작업 디렉터리)git init 현재 파일 기록-staging area (전체 / 파일만)git add .git add 파일명-올리고 싶지 않은 파일 (.gitignore 추가) -repository (스테이지 된 파일들만)git commit -m "메시지"상태창 열기 (어떤 파일 staging, 수정 ..)git statuscommit 내역 조회git log --all --onelinegit log --all --oneline --graph commit 전 (최근 commit vs 현재 파일)git diffgit difftoolgit difftool 커밋아이디git branch (브랜치 생성: 파일 복사본 만들기)git ..
1. 터미널 접속 2. Homebrew 설치 (코드입력)/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"https://brew.sh/ HomebrewThe Missing Package Manager for macOS (or Linux).brew.sh 3. git 설치 (코드 입력) brew install git 4. git 버전 확인git --version 5. 환경설정 (유저이름 설정 / 이메일 설정)git config --global user.name "깃허브 닉네임 혹은 이름"git config --global user.email "github 가입 시 사용한 이메일 주소" 6..