{"id":14064480,"url":"https://github.com/michaeljolley/devtoolbox","last_synced_at":"2025-07-29T18:32:37.571Z","repository":{"id":43189561,"uuid":"186319296","full_name":"michaeljolley/devtoolbox","owner":"michaeljolley","description":"A PowerShell module that enables software developers to speed up their CLI workflow.","archived":false,"fork":false,"pushed_at":"2024-02-05T23:26:02.000Z","size":2491,"stargazers_count":44,"open_issues_count":2,"forks_count":12,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-11-30T06:49:35.588Z","etag":null,"topics":["alias","hacktoberfest","powershell","powershell-scripts"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","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/michaeljolley.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","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},"funding":{"github":["michaeljolley"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2019-05-13T00:28:27.000Z","updated_at":"2024-06-25T05:05:47.000Z","dependencies_parsed_at":"2024-02-05T22:50:35.028Z","dependency_job_id":"65b46d65-09fb-4bca-ab6b-398fbb64199d","html_url":"https://github.com/michaeljolley/devtoolbox","commit_stats":null,"previous_names":["build-with-me/devtoolbox","michaeljolley/devtoolbox"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeljolley%2Fdevtoolbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeljolley%2Fdevtoolbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeljolley%2Fdevtoolbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaeljolley%2Fdevtoolbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michaeljolley","download_url":"https://codeload.github.com/michaeljolley/devtoolbox/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228040672,"owners_count":17860211,"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":["alias","hacktoberfest","powershell","powershell-scripts"],"created_at":"2024-08-13T07:03:53.283Z","updated_at":"2024-12-04T03:30:54.231Z","avatar_url":"https://github.com/michaeljolley.png","language":"PowerShell","readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/1228996/71608160-8fe2d700-2b44-11ea-99fc-a1d5674f74ef.png\"/\u003e\n\u003c/p\u003e\n\n[![Downloads](https://img.shields.io/powershellgallery/dt/devtoolbox.svg)](https://www.powershellgallery.com/packages/devtoolbox)\n\n# What \u0026 Why\n\nFor more information as to how this repo came about, check out this [blog post](https://baldbeardedbuilder.com/blog/adding-command-aliases-to-power-shell/)\n\n---\n\n## Installation\n\nThe easiest way to install devtoolbox is via the [PowerShell Gallery](https://www.powershellgallery.com/packages/devtoolbox).\n\n```ps\nInstall-Module -Name devtoolbox\n```\n\n---\n\n## Parameters\n\nAll aliases accept parameters of the commands they call.\n\nFor example, the below are identical:\n\n```bash\ng cl https://github.com/michaeljolley/devtoolbox.git\n\ngit clone https://github.com/michaeljolley/devtoolbox.git\n```\n\n---\n\n## Commands\n\n### Docker\n\nAll aliases for Docker begin with `d`.\n\n| Command | Executes   |\n| ------- | -------------------------- |\n| d b   | docker build   |\n| d c   | docker container ps  |\n| d cr  | docker container rm  |\n| d cs  | docker container start   |\n| d cx  | docker container stop  |\n| d i   | docker image ls  |\n| d ir  | docker image rm  |\n| d k   | docker kill  |\n| d l   | docker logs  |\n| d li  | docker login   |\n| d lo  | docker logout  |\n| d r   | docker run   |\n| d t   | docker image tag   |\n| d p   | docker push  |\n| d ...   | docker ...(any parameters) |\n\n### Docker-Compose\n\nAll aliases for Docker Compose begin with `dc`.\n\n| Command | Executes   |\n| ------- | ------------------------------------------------ |\n| dc b  | docker-compose build   |\n| dc bu   | docker-compose build (params); docker-compose up |\n| dc d  | docker-compose down  |\n| dc i  | docker-compose images  |\n| dc u  | docker-compose up  |\n| dc ...  | docker-compose ... (any parameters)  |\n\n### Git\n\nAll aliases for Git begin with `g`.\n\n| Command | Executes   |\n| ------- | ------------------------ |\n| g a   | git add  |\n| g b   | git branch   |\n| g c   | git checkout   |\n| g cl  | git clone  |\n| g co  | git commit   |\n| g f   | git fetch  |\n| g i   | git init   |\n| g l   | git log  |\n| g ll  | git log --graph (pretty) |\n| g m   | git merge  |\n| g pl  | git pull   |\n| g ps  | git push   |\n| g r   | git rebase   |\n| g rs  | git reset  |\n| g s   | git status   |\n| g t   | git tag  |\n| g ...   | git ... (any parameters) |\n\n### Miscellaneous\n\n| Command | Executes |\n| --- | --- |\n| github  | Launches browser to GitHub repo if the directory is tracked by Git and its origin url is at GitHub  |\n| hosts   | If in Windows, opens the hosts file in an elevated editor. Choosing, in order, between VS Code, VS Code (insiders), Notepad.  |\n| rwp | Restores NPM, Nuget, and Libman packages starting at the root folder of a workspace.  |\n| Syntax  | Prints PowerShell Command Syntax vertically, replicating docs.microsoft.com layout  |\n| Sort-Reverse  | Reverses the order of an array. Accepts pipeline support e.g. `1,2,3,4,5 | Sort-Reverse`  |\n\n---\n\n## Contributing\n\nWant to contribute? Check out our [Code of Conduct](CODE_OF_CONDUCT.md) and [Contributing](CONTRIBUTING.md) docs. Contributions of any kind welcome!\n","funding_links":["https://github.com/sponsors/michaeljolley"],"categories":["PowerShell"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaeljolley%2Fdevtoolbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaeljolley%2Fdevtoolbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaeljolley%2Fdevtoolbox/lists"}