atualizar-projeto

Synchronize a local Git repository with GitHub while preserving uncommitted changes.

15|16|Updated May 6, 2026
One-click install
npx skills add https://github.com/ReadyToGo-Education/fluxo_criativo --skill atualizar-projeto
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: atualizar-projeto
Source: https://github.com/ReadyToGo-Education/fluxo_criativo/tree/main/.claude/skills/atualizar-projeto
Command: npx skills add https://github.com/ReadyToGo-Education/fluxo_criativo --skill atualizar-projeto

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Este Skill elimina o risco de bagunçar o projeto quando você precisa baixar novas mudanças do GitHub, garantindo uma atualização segura mesmo com trabalho local e possíveis conflitos.

Core Features & Use Cases

  • Atualização guiada e segura: faz fetch, compara commits locais vs. remoto e só avança quando há algo novo para sincronizar.
  • Proteção do trabalho local: stash das alterações não enviadas antes do pull e tentativa de retorno após a atualização.
  • Resolução de conflitos com decisão do usuário: quando a atualização mexe nos mesmos arquivos, apresenta as duas versões e guia a escolha até limpar os marcadores.
  • Use case real: você abriu o projeto, implementou ajustes em arquivos do toolkit e agora quer garantir que tudo está na versão mais recente sem perder seu trabalho.

Quick Start

Diga para o assistente: “atualize o projeto Fluxo Criativo com as últimas mudanças do GitHub com segurança”.

Frequently Asked Questions about atualizar-projeto

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I safely sync my local repository with GitHub changes without losing uncommitted work?

To safely sync your local repository, the workflow performs a fetch, stashes your uncommitted local modifications, executes a fast-forward pull, and then restores your stashed work to prevent data loss.

What is the best way to resolve merge conflicts when pulling updates from GitHub?

Resolving merge conflicts during a GitHub update is handled through a user-directed, file-by-file selection process that presents both versions and guides your choices until all conflict markers are cleared.

How does a stash and restore workflow protect my local changes during a git pull?

A stash and restore workflow protects local changes by temporarily shelving uncommitted modifications via git stash before the pull, then attempting to reapply them after the repository update finishes.

Can I update a specific tracked branch with the latest GitHub changes if our commits have diverged?

Yes, you can update a specific tracked branch because the workflow compares local and remote commit divergence first, ensuring it only advances the synchronization when there are new remote changes to apply.

What happens if a safe GitHub synchronization results in overlapping file modifications?

When a safe GitHub synchronization results in overlapping file modifications, the process avoids destructive git operations and instead prompts you to resolve the merge conflicts file-by-file.