작업이력을 확인해보자 !
- 작업한 것에 대한 버전과 브랜치들을 텍스트가 아닌 시각적으로 보기 가능
- VSCode - extension - Git Graph 검색 후 설치
- 아래 그림 클릭시 그래프 확인 가능!
실습환경 만들기
- Remote Repository 생성
- log_project 생성
- Local Repository에 Clone
git clone https:<username>:<token>@주소.git
- cat : cat 파일명을 하면 내용이 출력되고, >(꺽쇠)를 사용하면 파일이 이미존재하면 덮어씌움 존재하지 않으는다면 파일을 생성하고 파일 내용을 쓸 수 있게함
- >>(꺽쇠 두 번) 사용하면 계속 이어붙여서 작성
cat > hello.py
print('hello ~')
# 이후 ctrl + D 를 이용해 빠져나옴
# 확인해보자
git add hello.py
git commit -m 'create' hello.py
git satus
#
cat> hello.py
print('hello, cat!')
git commit -m 'modify 1' hello.py
# 내용변경 된 것을 확인가능!(hello ~ 에서 hello, cat! 으로)
cat hello.py
# 이후 VSCode에서 git graph 확인!
# dev라는 브랜치 생성 후 이동
git checkout -b dev
cat > hello.py
print('hello dog')
git commit -m 'modify 2' hello.py
Git Log
- Branch 별 변경이력을 볼 수 있음
# main branch로 이동
git checkout main
git log
# dev 브랜치의 log확인, modify2까지 확인가능!
git checkout dev
git log
이전 글들이 보고 싶다면?
반응형
'💻 > Git' 카테고리의 다른 글
Git8 (Merge and Conflict) (0) | 2022.01.05 |
---|---|
Git7 (Git Diff) (0) | 2022.01.05 |
Git5 (Branch) (0) | 2022.01.05 |
Git4 ( Remote Repository 복제, 클론!) (0) | 2022.01.05 |
Git3 (Local Repository, Remote Repository) (0) | 2022.01.05 |