git-advanced-workflows
Warn
Audited by Runlayer on Mar 8, 2026
Risk Level: MEDIUM
Scan Summary
Flagged Files (1)
git-advanced-workflows/SKILL.mdMEDIUM
80.3%
Tool passed security scan
Malicious tool definition detected
**Branch Before Risky Operations**: Create backup branch before complex rebases ```bash # Safe force push git push --force-with-lease origin feature/branch # Create backup before risky operation git branch backup-branch git rebase -i main # If something goes wrong git reset --hard backup-branch ``` ## Common Pitfalls - **Rebasing Public Branches**: Causes history conflicts for collaborators - **Force Pushing Without Lease**: Can overwrite teammate's work - **Losing Work in Rebase**: Resolve conf
Audit Metadata