Refspec - CI/CD Glossary Definition
A refspec maps refs between a remote and your repository in the form +<src>:<dst>, for example +refs/heads/*:refs/remotes/origin/*. It controls what fetch and push transfer and where they write.
A refspec maps refs between a remote and your repository in the form +<src>:<dst>, for example +refs/heads/*:refs/remotes/origin/*. It controls what fetch and push transfer and where they write.
A refspec maps refs between a remote and your repository in the form +<src>:<dst>, for example +refs/heads/*:refs/remotes/origin/*. It controls what fetch and push transfer and where they write.
Related guides
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,…
Remote-Tracking Branch - CI/CD Glossary DefinitionRemote-Tracking Branch: A remote-tracking branch (like `origin/main`) is a local, read-only ref that records…
Upstream Branch - CI/CD Glossary DefinitionUpstream Branch: An upstream branch is the remote branch a local branch is configured to track, set with `git…