{"id":28202817,"url":"https://github.com/aroonsekar/git-shortcuts","last_synced_at":"2025-06-13T14:30:56.252Z","repository":{"id":292954479,"uuid":"982481934","full_name":"aroonsekar/git-shortcuts","owner":"aroonsekar","description":"A Zsh-based natural language Git toolkit to save keystrokes and brainpower.","archived":false,"fork":false,"pushed_at":"2025-05-13T01:00:05.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-13T01:32:07.929Z","etag":null,"topics":["cli","cli-tools","dotfiles","git","productivity","zsh"],"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/aroonsekar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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-05-13T00:38:25.000Z","updated_at":"2025-05-13T01:00:09.000Z","dependencies_parsed_at":"2025-05-13T01:32:11.009Z","dependency_job_id":"5356d229-a593-4c97-87df-39ad4ae6ce70","html_url":"https://github.com/aroonsekar/git-shortcuts","commit_stats":null,"previous_names":["aroonsekar/git-shortcuts"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aroonsekar/git-shortcuts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aroonsekar%2Fgit-shortcuts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aroonsekar%2Fgit-shortcuts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aroonsekar%2Fgit-shortcuts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aroonsekar%2Fgit-shortcuts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aroonsekar","download_url":"https://codeload.github.com/aroonsekar/git-shortcuts/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aroonsekar%2Fgit-shortcuts/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259661728,"owners_count":22892042,"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","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":["cli","cli-tools","dotfiles","git","productivity","zsh"],"created_at":"2025-05-17T01:11:36.089Z","updated_at":"2025-06-13T14:30:56.223Z","avatar_url":"https://github.com/aroonsekar.png","language":"Shell","readme":"# 🚀 Git Shortcuts\n\nA simple, natural language Git toolkit to speed up your workflow.  \nUse plain English-style commands like `addncommit`, `readytopush`, or launch `gitmenu` to interact.\n\n---\n\n## ✨ Features\n\n- 20+ natural language Git commands\n- Interactive terminal menu with `gitmenu`\n- Human-readable help with `githelp`\n- Works on macOS, Linux, and WSL\n- Available for Windows PowerShell\n\n---\n\n## 🐧 Installation (Zsh – macOS/Linux/WSL)\n\n1. Clone this repo:\n\n```bash\ngit clone https://github.com/aroonsekar/git-shortcuts.git\n```\n\n2. Add this to your `~/.zshrc`:\n\n```bash\nsource ~/git-shortcuts/.git-shortcuts.zsh\n```\n\n3. Reload your shell:\n\n```bash\nsource ~/.zshrc\n```\n\n---\n\n\n## 🪟 Installation (PowerShell – Windows) - A small headache\n\n### ✅ 1. Clone or download this repo\n\nSave it somewhere safe, like:\n\n```\nC:\\Users\\yourname\\git-shortcuts\\git-shortcuts.ps1\n```\n\n### ✅ 2. Unblock the script\n\nPowerShell blocks scripts downloaded from the internet. You must unblock it first:\n\n**Option A (GUI):**\n\n- Right-click on `git-shortcuts.ps1` → **Properties**\n- Check the box **“Unblock”** at the bottom\n- Click **Apply** → **OK**\n\n**Option B (Command line):**\n\n```powershell\nUnblock-File \"C:\\Users\\yourname\\git-shortcuts\\git-shortcuts.ps1\"\n```\n\n### ✅ 3. Enable local script execution\n\nOpen PowerShell **as Administrator** and run:\n\n```powershell\nSet-ExecutionPolicy RemoteSigned -Scope CurrentUser\n```\n\nChoose **[Y]** when prompted.\n\n### ✅ 4. Load the shortcuts (temporary)\n\nTo load the shortcuts into your session:\n\n```powershell\n. \"C:\\Users\\yourname\\git-shortcuts\\git-shortcuts.ps1\"\n```\n\n### ✅ 5. (Optional) Auto-load on every new PowerShell session\n\nTo make shortcuts always available:\n\n```powershell\nnotepad $PROFILE\n```\n\nThen add this line at the bottom of the file:\n\n```powershell\n. \"C:\\Users\\yourname\\git-shortcuts\\git-shortcuts.ps1\"\n```\n\nSave and restart PowerShell.\n\n---\n## ⚡ Example Usage\n\n**Zsh:**\n```bash\naddncommit \"Update README\"\nreadytopush \"Fix merge conflict and push\"\nstashit \"WIP - new UI layout\"\ndeletemybranch feature/login\ngitmenu\ngithelp\n```\n\n**PowerShell:**\n```powershell\nAddAndCommit \"Update README\"\nReadyToPush \"Final bugfixes\"\nFixMerge\nShow-GitMenu\nGitHelp\n```\n\n---\n\n## 🧠 Commands Overview\n\n| Zsh Command       | PowerShell Equivalent | Description                                  |\n|-------------------|------------------------|----------------------------------------------|\n| `addncommit`      | `AddAndCommit`         | Add all changes and commit with message      |\n| `readytopush`     | `ReadyToPush`          | Commit, rebase, and push                     |\n| `newbranch`       | `NewBranch`            | Create and switch to a new branch            |\n| `whatsthestatus`  | `WhatIsTheStatus`      | Show current git status                      |\n| `whatdidido`      | `WhatDidIDo`           | Show last commit                             |\n| `deletemybranch`  | `DeleteMyBranch`       | Delete local and remote branch               |\n| `gitmenu`         | `Show-GitMenu`         | Interactive CLI menu                         |\n| `githelp`         | `GitHelp`              | Show help text                               |\n\n\u003e Zsh users also have command autocompletion enabled for these shortcuts.\n\n---\n\n## 👤 Author\n\nCreated with [aroonsekar](https://github.com/aroonsekar) \u0026 ChatGPT.\n\nIf you like it, ⭐️ star it — and feel free to fork, contribute, or suggest new commands!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faroonsekar%2Fgit-shortcuts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faroonsekar%2Fgit-shortcuts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faroonsekar%2Fgit-shortcuts/lists"}