일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Wordpress
- disabled
- SQL개발자
- 항해플러스백엔드
- AWS시험
- Foundational
- sqld
- 항해99
- AWS
- 보안인증서
- SSL
- ARIadminer
- Your session has been terminated
- readony
- cafe24
- ARI
- saltkey
- 항해솔직후기
- AWS Certified Cloud Practitioner
- 항해플러스후기
- 항해플러스
- Today
- Total
목록Develop/Git (13)
WorkaHolic
Remove files from the working tree and from the index 작업 트리 및 색인에서 파일 제거 * 로컬 및 원격저장소 파일 삭제 git rm filename e.g. git rm index.html * 원격저장소만 파일 삭제 git rm --cached filename e.g. git rm --cached index.html - 옵션 -r : 내부값까지 삭제 (css, img, js는 디렉토리) e.g. git rm -r --cached css img js index.html - 삭제 이후, commit과 push까지 해야 github가 변경됨 e.g. git commit -m "file delete" e.g. git push origin main
- master가 노예제도를 연상시킨다고 하여, main으로 변경됨 * 다른 변경 사항들이 push가 완료 되어 있다는 전제 하에 1. main로 checkout e.g. git checkout main 2. main에 branch 덮어쓰기 e.g. git reset --hard branch_name 3. 강제(-f) push e.g. git push -f origin main
The repository for this project is empty You can get started by cloning the repository or start adding files to it with one of the following options. 이 프로젝트의 저장소가 비어 있습니다. 저장소를 복제하여 시작하거나 다음 옵션 중 하나를 사용하여 저장소에 파일을 추가 할 수 있습니다. Command line instructions You can also upload existing files from your computer using the instructions below. 명령 줄 지침 아래 지침에 따라 컴퓨터에서 기존 파일을 업로드 할 수도 있습니다. - Git global se..
Show commit logs 커밋 로그 표시 전체 로그 확인git log * 빠져나오려면 q 로그 한 줄별 전체 정리 git log --oneline git log --oneline -갯수 e.g. git log --oneline -2 로그 한 줄별 전체 정리 git log --pretty=oneline git log --oneline -갯수 커밋 diff 전체 확인 git log -p git log -p -갯수
브랜치 병합 * 병합할 브랜치로 checkout e.g. git checkout master git merge 브랜치명 git merge --squash 브랜치명 재정렬 git cherry-pick 커밋명 git rebase -i 브랜치명 * 충돌이 발생한 경우, 충돌난 부분을 수정한 후 Commit
(이력없이) 과거 회기 git reset 옵션 * HEAD - Checkout된 Commit * ^(Caret) - Commit의 부모 참조(하나의 Commit 위로) e.g. HEAD^ e.g. HEAD^^ * ~(Tilde) - Commit의 부모 참조(숫자만큼 Commit의 위로) e.g. HEAD~2 * soft - Add는 취소되지 않고(staged), WorkDirectory 파일 그대로 git reset --soft HEAD^ git reset --soft foo * mixed - Add는 취소되고(unstaged), WorkingDirectory 파일 그대로 (Default) git reset --mixed bar ( git reset bar 와 동일) * hard - Add는 취소되고(u..
현재 체크아웃 브랜치 확인 git checkout 체크아웃할 브랜치 선택 git checkout 브랜치명 * 원격 브랜치 선택 git checkout -t remote 리모트명/브랜치명 체크아웃과 동시에 브랜치 생성 git checkout -b 브랜치명