일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- readony
- disabled
- 항해플러스
- Foundational
- cafe24
- SQL개발자
- ARI
- AWS시험
- Wordpress
- 항해99
- Your session has been terminated
- 보안인증서
- ARIadminer
- AWS Certified Cloud Practitioner
- SSL
- 항해솔직후기
- 항해플러스후기
- AWS
- sqld
- saltkey
- 항해플러스백엔드
- Today
- Total
목록전체 글 (75)
WorkaHolic
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 브랜치명
(서버로) 깃 밀어넣기 git push git push 리모트명 브랜치명 git push --set-upstream 리모트명 브랜치명 * 강제 푸쉬 git push -f git push -f 리모트명 브랜치명 git push -u 리모트명 브랜치명 해당 push 이후, 실행하는 push는 상단의 리모트명 위치로 저장됨 원격저장소의 브랜치 삭제 git push origin --delete 브랜치명
원격 저장소 관리 리모트 확인 git remote git remote -v 새 리포지토리 remote 추가 git remote add origin 깃주소 기존 리포지토리 remote 삭제 git remote remove origin