반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Dependency Injection
- DI
- table cell size
- html cell size
- table tag
- html cell
- html
- Dependency
- Django
- Spring
- Django column 값 가져오기
- Django 특정 값 가져오기
Archives
- Today
- Total
emluy 개발 일기
git 기본 터미널 명령어 본문
SMALL
1. 파일 수정 후 다른 점 보기
: git diff
2. 파일 수정 전으로 되돌리기
2-1. staging 하기 전에만 사용가능
: git checkout -- 파일이름.txt
2-2. staging 되돌리기 (commit 전)
: git reset HEAD 파일이름.txt
2-3. commit 되돌리기
: git reset HEAD^
2-4. 그외
- git reset --soft HEAD^
: commit 취소
- git reset --mixed HEAD^
: commit, staging 둘다 취소
- git reset --hard HEAD^
: commit, stagint, 수정 다 취소
2-5. 특정 commit이 최근 commit이 되게 하기
: git log -> 최근 commit 되게 하고 싶은 commit의 해시(commit 고유 번호) 복사. -> git reset --hard 복사한hash주소
2-6. 최근 commit 재설정 시 commit들 안 지우고 재설정
: git revert 커밋해시
반응형
'git' 카테고리의 다른 글
git push 오류 (0) | 2020.04.26 |
---|---|
github 원격저장소에 있는 것 지우기 (로컬저장소에 있는 것은 안 건듬) (0) | 2020.04.24 |
git branch merge (0) | 2020.04.23 |
git branch 생성 (0) | 2020.04.20 |
git 버전 관리하기 (0) | 2020.04.20 |
Comments