다시 한 번 menu4를 추가하고 커밋합니다.
infoh@DESKTOP MINGW64 /e/gitstudy08 (master)
$ code index.htm VS Code 실행
index.htm
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page Title</title>
</head>
<body>
<header>
<ul>
<li>깃소개</li>
<li>깃설치</li>
<li>커밋</li>
<li>브랜치</li>
</ul>
</header>
<h1>hello GIT world!</h1>
</body>
</html>
infoh@DESKTOP MINGW64 /e/gitstudy08 (master)
$ git commit -am "add menu4" 등록 및 커밋
[master 8583edf] add menu4
1 file changed, 1 insertion(+)