Remote-Tracking Branch - Definição do Glossário de CI/CD
Uma remote-tracking branch (como origin/main) é uma ref local e somente leitura que registra onde uma branch em um remote estava no último fetch. Ela é atualizada apenas em fetch, pull ou push, nunca por commits locais.
Uma remote-tracking branch (como origin/main) é uma ref local e somente leitura que registra onde uma branch em um remote estava no último fetch. Ela é atualizada apenas em fetch, pull ou push, nunca por commits locais.
Uma remote-tracking branch (como origin/main) é uma ref local e somente leitura que registra onde uma branch em um remote estava no último fetch. Ela é atualizada apenas em fetch, pull ou push, nunca por commits locais.
Guias relacionados
Upstream Branch - CI/CD Glossary DefinitionUpstream Branch: An upstream branch is the remote branch a local branch is configured to track, set with `git…
Refspec - CI/CD Glossary DefinitionRefspec: A refspec maps refs between a remote and your repository in the form `+<src>:<dst>`, for example `+r…
Git Ref - CI/CD Glossary DefinitionGit Ref: A git ref is a named pointer to a commit, stored under `.git/refs/` (or in `packed-refs`). Branches,…