Sub-skill of vscode-extensions: Git Workflow Integration (+1).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill git-workflow-integration --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Git Workflow Integration?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-git-workflow-integration-workspace-hub)More formats (shields.io, HTML) on the badges page.
---
name: vscode-extensions-git-workflow-integration
description: 'Sub-skill of vscode-extensions: Git Workflow Integration (+1).'
version: 1.0.0
category: operations
type: reference
scripts_exempt: true
---
# Git Workflow Integration (+1)
## Git Workflow Integration
```jsonc
// settings.json - Git integration
{
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.postCommitCommand": "push",
"git.fetchOnPull": true,
"git.pruneOnFetch": true,
// GitLens settings
"gitlens.views.repositories.branches.layout": "tree",
"gitlens.views.commits.files.layout": "tree",
"gitlens.codeLens.enabled": true,
"gitlens.codeLens.recentChange.enabled": true,
"gitlens.currentLine.enabled": true,
"gitlens.hovers.currentLine.over": "line",
"gitlens.blame.format": "${author|10} ${date}",
"gitlens.blame.heatmap.enabled": true
}
```
## Remote Development
```jsonc
// settings.json - Remote development
{
// SSH
"remote.SSH.remotePlatform": {
"server1": "linux",
"server2": "linux"
},
"remote.SSH.defaultExtensions": [
"ms-python.python",
"ms-python.vscode-pylance"
],
// Containers
"dev.containers.defaultExtensions": [
"ms-python.python",
"eamodio.gitlens"
],
// WSL
"remote.WSL.fileWatcher.polling": true
}
```
```jsonc
// .devcontainer/devcontainer.json
{
"name": "Python Dev",
"image": "mcr.microsoft.com/devcontainers/python:3.12",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"charliermarsh.ruff"
],
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python"
}
}
},
"postCreateCommand": "pip install -e '.[dev]'",
"forwardPorts": [8000]
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!