git-sync-workflow

Git Sync & Workflow

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "git-sync-workflow" with this command: npx skills add sraloff/gravityboots/sraloff-gravityboots-git-sync-workflow

Git Sync & Workflow

When to use this skill

  • Syncing with remote (git pull ).

  • Handling merge conflicts.

  • Pushing code.

  1. Sync Strategy
  • Pull Before Push: ALways git pull --rebase origin main before starting work or pushing.

  • Rebase: Prefer rebase over merge for local feature branches to keep history linear.

  1. Pushing
  • Safety: Use --force-with-lease instead of --force if rewriting history (only on your own branches).

  • Upstream: Set upstream early (git push -u origin feat/name ).

  1. Hooks
  • Pre-commit: Should run fast checks (lint-staged).

  • Pre-push: Run heavier tests if the project considers it necessary, otherwise leave to CI.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

caddy-modern-config

No summary provided by upstream source.

Repository SourceNeeds Review
General

apache-lamp-config

No summary provided by upstream source.

Repository SourceNeeds Review
General

mysql-lamp-legacy

No summary provided by upstream source.

Repository SourceNeeds Review
General

postgresql-query-opt

No summary provided by upstream source.

Repository SourceNeeds Review