master 브랜치로 체크아웃한 상태에서 파일(코드)을 확인해 봅시다. feature 브랜치에서 작업한 내용이 사라졌습니다.
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>
<h1>hello GIT world!</h1>
</body>
</html>
원본의 master 브랜치에서 작업한 내용만 출력됩니다. 이처럼 브랜치는 기존 원본을 유지한 상태에서 서로 간섭하지 않고 feature 브랜치에서 코드를 수정할 수 있습니다. 이제 feature 브랜치에서 작업한 내용을 병합해 보겠습니다.