19. Mudança de Branches
Metas
- Aprender como navegar entre branches de repositórios.
Agora o seu projeto possui dois branches:
Execute
git log --all
Resultado
$ git log --all
9288a33 2023-11-28 | Added copyright statement with email (main) [Alexander Shvets]
903eb1d 2023-11-28 | Included stylesheet into hello.html (HEAD -> style) [Alexander Shvets]
b7614c1 2023-11-28 | Added HTML header (tag: v1) [Alexander Shvets]
46afaff 2023-11-28 | Added standard HTML page tags (tag: v1-beta) [Alexander Shvets]
555372e 2023-11-28 | Added css stylesheet [Alexander Shvets]
78433de 2023-11-28 | Added h1 tag [Alexander Shvets]
5836970 2023-11-28 | Initial commit [Alexander Shvets]
01 Trocando para o branch main
Para trocar o branch atual simplesmente use o comando git switch
.
Execute
git switch main
cat hello.html
Resultado
$ git switch main
Switched to branch 'main'
$ cat hello.html
<!-- Author: Alexander Shvets (alex@githowto.com) -->
<html>
<head>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>
Agora estamos no ramo main
. Como você pode ver, o hello.html
não tem vestígios do style.css
. Não se preocupe; ele ainda está no repositório, mas não podemos vê-lo na ramificação main
.
02 Vamos retornar para o branch do style
Execute
git switch style
cat hello.html
Resultado
$ git switch style
Switched to branch 'style'
$ cat hello.html
<!-- Author: Alexander Shvets (alex@githowto.com) -->
<html>
<head>
<link type="text/css" rel="stylesheet" media="all" href="style.css" />
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>
Estamos de volta ao ramo style
. Como você pode ver, nossas alterações relacionadas ao CSS estão presentes.