{"id":29416250,"url":"https://github.com/wazeerc/git-aliases","last_synced_at":"2026-05-04T20:35:44.889Z","repository":{"id":303817294,"uuid":"1016512921","full_name":"wazeerc/git-aliases","owner":"wazeerc","description":":octocat: Git Aliases for Powershell","archived":false,"fork":false,"pushed_at":"2025-07-09T14:48:34.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-09T15:50:50.102Z","etag":null,"topics":["aliases","dev-tools","git","powershell","shortcuts","terminal"],"latest_commit_sha":null,"homepage":"","language":null,"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/wazeerc.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-07-09T06:04:24.000Z","updated_at":"2025-07-09T14:48:38.000Z","dependencies_parsed_at":"2025-07-12T22:45:37.372Z","dependency_job_id":null,"html_url":"https://github.com/wazeerc/git-aliases","commit_stats":null,"previous_names":["wazeerc/git-aliases"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wazeerc/git-aliases","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wazeerc%2Fgit-aliases","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wazeerc%2Fgit-aliases/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wazeerc%2Fgit-aliases/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wazeerc%2Fgit-aliases/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wazeerc","download_url":"https://codeload.github.com/wazeerc/git-aliases/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wazeerc%2Fgit-aliases/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32624295,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["aliases","dev-tools","git","powershell","shortcuts","terminal"],"created_at":"2025-07-11T19:02:23.937Z","updated_at":"2026-05-04T20:35:44.873Z","avatar_url":"https://github.com/wazeerc.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Git Aliases for PowerShell\n\nSimple git aliases for PowerShell inspired by Oh My Zsh, making your git workflow faster and more efficient.\n\n## Features\n\n- 🚀 **Fast git commands** - Short aliases for common git operations\n- 🔧 **Simple setup** - Just copy and paste into your PowerShell profile\n- 📝 **Oh My Zsh inspired** - Familiar aliases for Zsh users\n- 🪟 **Windows friendly** - Works seamlessly with PowerShell\n\n## Installation\n\n### Simple Copy \u0026 Paste Setup\n\n1. **Open your PowerShell profile for editing**:\n   ```powershell\n   notepad $PROFILE\n   ```\n\n   **💡 Helpful hints:**\n   - If the file doesn't exist, PowerShell will ask if you want to create it - click \"Yes\"\n   - You can also use VS Code: `code $PROFILE`\n   - To see where your profile is located: `echo $PROFILE`\n   - Common locations:\n     - Windows PowerShell 5.1: `Documents\\WindowsPowerShell\\Microsoft.PowerShell_profile.ps1`\n     - PowerShell 7+: `Documents\\PowerShell\\Microsoft.PowerShell_profile.ps1`\n\n2. **Copy the aliases**: Open [`git-aliases.md`](git-aliases.md) and copy all the PowerShell code from the \"PowerShell Code\" section\n\n3. **Paste into your profile**: Paste the copied code at the end of your PowerShell profile file\n\n4. **Save and reload**: Save the file and restart PowerShell or run:\n   ```powershell\n   . $PROFILE\n   ```\n\nThat's it! All git aliases are now available in your PowerShell sessions.\n\n## What You Get\n\n28 useful git aliases including:\n- **Basic commands**: `ga` (add), `gst` (status), `gcmsg` (commit with message)\n- **Branch operations**: `gb` (branch), `gcb` (checkout new branch), `gco` (checkout)\n- **Remote operations**: `ggl` (pull current branch), `ggp` (push current branch)\n- **Log viewing**: `glo` (oneline log), `gln 5` (last 5 commits)\n- **And many more!**\n\nSee [`git-aliases.md`](git-aliases.md) for the complete list with descriptions.\n\n## Usage Examples\n\n```powershell\n# Quick workflow\ngst              # Check status\nga .             # Add all files\ngcmsg \"Fix bug\"  # Commit with message\nggp              # Push to current branch\n\n# Branch management\ngcb new-feature  # Create and switch to new branch\ngco main         # Switch back to main\ngbd old-branch   # Delete branch\n\n# Viewing history\nglo              # See recent commits\ngln 5            # See last 5 commits\ngd               # See what changed\n```\n\n## Requirements\n\n- PowerShell 5.1 or higher\n- Git installed and available in PATH\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Submit a pull request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Credits\n\nInspired by the [Oh My Zsh git plugin](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/git/).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwazeerc%2Fgit-aliases","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwazeerc%2Fgit-aliases","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwazeerc%2Fgit-aliases/lists"}