37. Adicionando um branch de rastreamento
Metas
- Aprender como adicionar um branch local que rastreia um repositório remoto.
Branches que começam com remotes/origin
pertencem ao repositório original. Perceba que, mesmo que você não tenha mais o branch style
, ele sabe que o branch está no repositório original.
01 Adicione um branch local que rastreia um branch remoto
Execute
git branch --track style origin/style
git branch -a
git log --max-count=2
Resultado
$ git branch --track style origin/style
Branch 'style' set up to track remote branch 'style' from 'origin'.
$ git branch -a
* main
style
remotes/origin/HEAD -> origin/main
remotes/origin/main
remotes/origin/style
$ git log --all --graph --max-count=2
* 71df43a 2023-11-28 | Changed README in original repo (HEAD -> main, origin/main, origin/HEAD) [Alexander Shvets]
* 39a1e0f 2023-11-28 | Renamed hello.html; moved style.css (origin/style, style) [Alexander Shvets]
Agora nós conseguimos ver o branch style
na lista de branches e no log.