8.7.4 리베이스 명령어
리베이스 작업은 rebase 명령어를 사용합니다. 또는 다른 명령어의 옵션으로 리베이스 기능을 실행할 수 있습니다.
$ git rebase 브랜치
실습을 위해 index.htm 파일을 수정하고 커밋하겠습니다. 먼저 리베이스 실습을 위한 새로운 description 브랜치를 생성합니다.
infoh@DESKTOP MINGW64 /e/gitstudy08 (master)
$ git checkout -b description 브랜치 생성
그리고 description 브랜치에서 index.htm 파일을 수정하고 커밋합니다.
infoh@DESKTOP MINGW64 /e/gitstudy08 (description)
$ 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>
<h2>깃은 소스의 변경 이력을 관리할 수 있습니다.</h2>
<footer>
copyright all right 2020 reserved
by jiny
</footer>
</body>
</html>