# Git Remote

> Manage remote repositories and their connections.

- Skill: `andersonlimahw/git-remote` (Agent Skill)
- Install (CLI): `npx skillmds@latest add andersonlimahw/git-remote`
- Raw SKILL.md: https://api.skillmd.com/api/skills/andersonlimahw/git-remote/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Andersonlimahw (https://skillmd.com/u/andersonlimahw)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/andersonlimahw/git-remote

---


# Git Remote Skill

Add, remove, rename, and inspect remote repository connections.

## Capabilities
- List remotes: `git remote -v`
- Show remote details: `git remote show <name>`
- Add remote: `git remote add <name> <url>`
- Remove remote: `git remote remove <name>`
- Rename remote: `git remote rename <old> <new>`
- Change URL: `git remote set-url <name> <new-url>`
- Change fetch URL: `git remote set-url --push <name> <url>`
- Prune stale remote branches: `git remote prune <name>`
- Update remote: `git remote update <name>`
- Get remote URL: `git remote get-url <name>`

## Usage
Triggered when user says "remote", "add remote", "change remote URL", "list remotes".
Always verify remote URLs before changing. Support SSH and HTTPS URL formats.

