{"id":30237846,"url":"https://github.com/powerappsdarren/git-go","last_synced_at":"2025-08-15T02:39:27.026Z","repository":{"id":307996285,"uuid":"1031303291","full_name":"PowerAppsDarren/git-go","owner":"PowerAppsDarren","description":"A great utility to start new repos! Linux for now with sh files. PowerShell version for windows if many ask for it. ","archived":false,"fork":false,"pushed_at":"2025-08-13T18:53:11.000Z","size":650,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-13T20:51:03.349Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PowerAppsDarren.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-03T13:08:21.000Z","updated_at":"2025-08-04T22:58:32.000Z","dependencies_parsed_at":"2025-08-03T15:20:46.161Z","dependency_job_id":null,"html_url":"https://github.com/PowerAppsDarren/git-go","commit_stats":null,"previous_names":["powerappsdarren/git-go"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/PowerAppsDarren/git-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerAppsDarren%2Fgit-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerAppsDarren%2Fgit-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerAppsDarren%2Fgit-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerAppsDarren%2Fgit-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PowerAppsDarren","download_url":"https://codeload.github.com/PowerAppsDarren/git-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerAppsDarren%2Fgit-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270515228,"owners_count":24598435,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-15T02:00:12.559Z","response_time":110,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-08-15T02:39:20.127Z","updated_at":"2025-08-15T02:39:26.995Z","avatar_url":"https://github.com/PowerAppsDarren.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Git-Go\n\n\u003cdiv align=\"center\"\u003e\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)\n[![Made with Bash](https://img.shields.io/badge/Made%20with-Bash-1f425f.svg)](https://www.gnu.org/software/bash/)\n\n**Intelligent Git Repository Manager**\n\nCreate and manage git repositories with smart sync scripts, VS Code integration, and AI-assisted development support.\n\n[Features](#features) • [Installation](#installation) • [Usage](#usage) • [Configuration](#configuration) • [Contributing](#contributing)\n\n\u003c/div\u003e\n\n## ✨ Features\n\n- 🎯 **Smart Repository Creation** - Initialize new repos with sensible defaults\n- 🔄 **Intelligent Sync Scripts** - Generated scripts handle upstream syncing, stashing, and multi-remote push\n- 📝 **AI-Ready** - Automatically creates CLAUDE.md files for AI-assisted development\n- 🎨 **VS Code Integration** - Built-in tasks for one-key synchronization (Ctrl+Shift+B)\n- ⚙️ **Highly Configurable** - Customize git hosts, templates, and behaviors\n- 🎭 **Fork-Aware** - Special handling for forked repositories with upstream tracking\n- 🌈 **Beautiful CLI** - Colorful, informative output with progress indicators\n\n## 📦 Installation\n\n### Quick Install\n\nThe easiest way to install Git-Go is using our install script:\n\n```bash\ncurl -sSL https://raw.githubusercontent.com/PowerAppsDarren/git-go/main/install.sh | bash\n```\n\nThis will:\n- Download Git-Go to `~/.local/share/git-go`\n- Create the `git-go` command in `~/.local/bin`\n- Set up your initial configuration\n\n### Manual Install\n\nIf you prefer to review the install script first:\n\n```bash\n# Download and review the script\ncurl -sSL https://raw.githubusercontent.com/PowerAppsDarren/git-go/main/install.sh -o install.sh\nless install.sh\n\n# Run it when ready\nbash install.sh\n```\n\nOr clone and install from source:\n\n```bash\ngit clone https://github.com/PowerAppsDarren/git-go.git\ncd git-go\n./install.sh\n```\n\n### Requirements\n\n- Git 2.0+\n- Bash 4.0+\n- Optional: VS Code for IDE integration\n\n### Post-Installation\n\nIf `git-go` is not found after installation, add `~/.local/bin` to your PATH:\n\n```bash\n# For bash\necho 'export PATH=\"$HOME/.local/bin:$PATH\"' \u003e\u003e ~/.bashrc\nsource ~/.bashrc\n\n# For zsh\necho 'export PATH=\"$HOME/.local/bin:$PATH\"' \u003e\u003e ~/.zshrc\nsource ~/.zshrc\n```\n\n## 🚀 Usage\n\n### Create a New Repository\n\n```bash\ngit-go new --name my-awesome-project\n```\n\nOr interactively:\n```bash\ngit-go new\n```\n\n### Fork an Existing Repository\n\n```bash\ngit-go fork --url https://github.com/torvalds/linux\n```\n\n### Sync Your Repository\n\nAfter creating or forking:\n```bash\ncd my-project\n./scripts/sync.sh\n```\n\nOr in VS Code: Press `Ctrl+Shift+B`\n\n## ⚙️ Configuration\n\nGit-Go can be configured via `~/.config/git-go/config`. Run:\n\n```bash\ngit-go config\n```\n\n### First-Time Setup\n\nOn first run, Git-Go will automatically launch a setup wizard:\n\n```bash\ngit-go new --name my-project\n# No configuration found. Running setup wizard...\n```\n\nOr run setup manually:\n\n```bash\ngit-go setup\n```\n\nThe wizard will guide you through:\n- Choosing your git hosting service (GitHub, GitLab, Bitbucket, etc.)\n- Setting up your username\n- Configuring optional secondary remotes\n- Enabling features like VS Code integration and AI assistance\n\n## 📁 Generated Repository Structure\n\n```\nmy-project/\n├── README.md            # Project readme with template\n├── LICENSE              # MIT license\n├── .gitignore           # Smart gitignore based on project type\n├── CLAUDE.md            # AI assistant instructions\n├── scripts/\n│   └── sync.sh          # Intelligent sync script\n└── .vscode/\n    └── tasks.json       # VS Code integration\n```\n\n## 🎯 Command Reference\n\n| Command | Description | Example |\n|---------|-------------|---------|\n| `new` | Create a new repository | `git-go new --name my-project` |\n| `fork` | Fork an existing repository | `git-go fork --url https://github.com/user/repo` |\n| `config` | Edit configuration | `git-go config` |\n| `setup` | Run setup wizard | `git-go setup` |\n| `version` | Show version | `git-go version` |\n| `help` | Show help | `git-go help` |\n\n## 🤝 Contributing\n\nWe love contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.\n\n### Development\n\n```bash\n# Clone the repo\ngit clone https://github.com/yourusername/git-go.git\ncd git-go\n\n# Open in your favorite editor\ncursor .  # or: code .\n\n# The main script to edit is:\n# bin/git-go\n\n# Deploy locally and run tests\n./deploy.sh\n\n# Test your changes\ngit-go new --name test-project\n\n# When ready to release a new version\n./release.sh\n```\n\n#### Development Workflow\n\n1. **Edit the code** - The main script is `bin/git-go`. Open it in Cursor or VS Code:\n   ```bash\n   cursor bin/git-go  # or: code bin/git-go\n   ```\n\n2. **Deploy locally** - This installs git-go to ~/bin and runs tests:\n   ```bash\n   ./deploy.sh\n   ```\n\n3. **Test manually** - Try out your changes:\n   ```bash\n   git-go new --name test-repo\n   ```\n\n4. **Release** - When ready to publish a new version:\n   ```bash\n   ./release.sh\n   ```\n\n#### Key Files\n\n- `bin/git-go` - Main executable script (this is what you edit!)\n- `lib/colors.sh` - Color output functions\n- `lib/git-utils.sh` - Git utility functions\n- `tests/` - Test suite\n- `deploy.sh` - Local deployment script (runs tests automatically)\n- `release.sh` - Version release script\n\n## 📝 License\n\nMIT © [Your Name](https://github.com/yourusername)\n\n---\n\n\u003cdiv align=\"center\"\u003e\n\n**If you find Git-Go useful, please ⭐ this repository!**\n\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpowerappsdarren%2Fgit-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpowerappsdarren%2Fgit-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpowerappsdarren%2Fgit-go/lists"}