SECURITY REVIEW
Not yet assessed
Review the original instructions and requested permissions before installing.
No security review is available for this catalog entry yet.
Updates the current branch with the latest changes from the remote repository.
Atualiza branch atual com últimas mudanças do repositório remoto. Funciona em qualquer branch — main ou feature.
Review the original instructions and requested permissions before installing.
No security review is available for this catalog entry yet.
How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.
No quality assessment is available for this catalog entry yet.
Original instructions from the publisher’s SKILL.md
## Propósito Sincroniza branch local com remoto, gerenciando branches de feature e main adequadamente. ## Instruções 1. Verificar branch atual: ```bash git branch --show-current git status --short ``` 2. `git fetch origin` — buscar mudanças sem aplicar 3. **Se em main/master:** `git pull origin main` 4. **Se em branch de feature:** ```bash git checkout main git pull origin main git checkout [branch-original] git merge main ``` 5. Confirmar com `git status` **Importante:** Adaptar `main` ou `master` conforme convenção do repositório.