skilly. Buy ad slot
All skills
Devops / AGENT SKILL

sync

deMGoncalves/oh-my-claude
0 installs 2 GitHub stars
0

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.

BEFORE YOU INSTALL

Understand the trade-offs.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

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.

The full skill.

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.