Notre avis
Synchronise la branche locale avec le dépôt distant en utilisant rebase.
Points forts
- Évite les commits de merge inutiles
- Maintient un historique linéaire propre
- Instructions simples et automatisables
Limites
- Nécessite la résolution manuelle des conflits
- Peut réécrire l'historique si mal utilisé
- Suppose que l'origine distante est configurée
Lorsque vous voulez mettre à jour votre branche locale avec les changements distants de manière propre et linéaire.
Sur des branches partagées où le rebase est déconseillé ou si vous préférez conserver les commits de merge.
Analyse de sécurité
SûrThe skill uses only standard git pull --rebase and fetch commands, which do not exfiltrate data or perform destructive actions. No external network calls beyond the git remote are made, and no sensitive information is exposed. The risk is minimal.
Aucun point d'attention détecté
Exemples
Sync my current branch with the remote repository using rebase.Pull latest changes from origin and rebase my current branch.name: git-sync description: Sync with remote repository using pull --rebase. Use when you need to update your local branch with remote changes. disable-model-invocation: true allowed-tools: Bash(git:*)
Git Sync
Sync local branch with remote using rebase.
-
Fetch the latest changes from the remote repository.
- Command:
git fetch origin
- Command:
-
Pull and rebase the current branch on top of the remote branch.
- Command:
git pull origin HEAD --rebase - If there are conflicts, resolve them, then
git rebase --continue.
- Command:
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.