일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Java의정석
- 변수
- AWS시험
- 형변환
- readony
- 보안인증서
- SQL개발자
- 항해99
- 자바의정석
- 항해플러스백엔드
- Your session has been terminated
- SSL
- sqld
- cafe24
- AWS
- AWS Certified Cloud Practitioner
- 변수의타입
- disabled
- saltkey
- 항해솔직후기
- 항해플러스후기
- 항해플러스
- ARIadminer
- 남궁성
- java
- ARI
- Wordpress
- Foundational
- Today
- Total
목록전체 글 (81)
WorkaHolic
원격 저장소 관리 리모트 확인 git remote git remote -v 새 리포지토리 remote 추가 git remote add origin 깃주소 기존 리포지토리 remote 삭제 git remote remove origin
현재 브랜치 확인 git branch 브랜치 생성 git branch 브랜치명 브랜치 삭제 (현재 checkout된 브랜치는 삭제불가능) git branch -d 브랜치명 git branch -u git branch - -set-stream 원격 브랜치 확인 git branch -r 전체 브랜치 확인 git branch -a 브랜치 이름 바꾸기 git branch -m 브랜치명 변경할브랜치명 브랜치 버전 확인 git branch -v
* 리모트명 = 저장소명 * HEAD : 작업 중인 브랜치의 선두를 가리키는 포인터 * git init : git 프로젝트 시작 * git remote add 리모트명 브랜치명 : 원격 레포지토리 지정 - (서버에서) 로컬 저장소로 사본 가져오기 git clone 주소 - clone에 fetch 기능을 원한다면 git clone --mirror 주소 로컬git위치 - 특정 브랜치만 clone 하길 원한다면 git clone -b 브랜치명 --single-branch 주소 git init + git remote add origin 주소 한 이후, - (서버에서) 로컬 저장소로 가져와서 합병 (git fetch + git merge) git pull git pull 리모트명 브랜치명 e.g. git pull..
These are common Git commands used in various situations: start a working area (see also: git help tutorial) clone Clone a repository into a new directory init Create an empty Git repository or reinitialize an existing one work on the current change (see also: git help everyday) add Add file contents to the index mv Move or rename a file, a directory, or a symlink reset Reset current HEAD to the..