12.3.2 실습 환경 준비
blame 기능을 실습하기 위해 index.htm 파일을 수정한 후 커밋해 보겠습니다.
infoh@DESKTOP MINGW64 /e/gitstudy12 (master)
$ code index.htm VS Code 실행
index.htm
<h1>hello world</h1>
infoh@DESKTOP MINGW64 /e/gitstudy12 (master)
$ git commit -am "add h1 tag" 등록 및 커밋
[master 520aadf] add h1 tag
1 file changed, 1 insertion(+), 1 deletion(-)
infoh@DESKTOP MINGW64 /e/gitstudy12 (master)
$ code index.htm VS Code 실행
index.htm
<h1>hello world</h1>
깃을 이용하여 코드 이력을 관리할 수 있습니다.
infoh@DESKTOP MINGW64 /e/gitstudy12 (master)
$ git commit -am "add description" 등록 및 커밋
[master 023dade] add description
1 file changed, 2 insertions(+), 1 deletion(-)
infoh@DESKTOP MINGW64 /e/gitstudy12 (master)
$ code index.htm VS Code 실행
index.htm
<h1>hello world</h1>
깃을 이용하여 코드 이력을 관리할 수 있습니다.
깃은 ref를 참조하여 작업이 이루어집니다.
infoh@DESKTOP MINGW64 /e/gitstudy12 (master)
$ git commit -am "ref description" 등록 및 커밋
[master 71099d0] ref description
1 file changed, 2 insertions(+), 1 deletion(-)