Skip to content

Instantly share code, notes, and snippets.

@colinhacks
Last active October 25, 2024 03:54
Show Gist options
  • Save colinhacks/eec2cbc2f939c5bac61decbc1cb0db86 to your computer and use it in GitHub Desktop.
Save colinhacks/eec2cbc2f939c5bac61decbc1cb0db86 to your computer and use it in GitHub Desktop.
`howto` shell alias for recommending terminal commands
alias howto="gh copilot suggest -t shell"

1. Install gh CLI

Install the GitHub CLI per https://cli.github.com

On Mac:

brew install gh

2. Install gh-copilot extension

gh auth login
gh extension install github/gh-copilot

Full instructions: https://docs.github.com/en/copilot/managing-copilot/configure-personal-settings/installing-github-copilot-in-the-cli

3. Add alias to shell config file

On Mac the default is ZSH. Open your configuration file with:

open ~/.zshrc

If you're using Bash:

open ~/.bashrc

And add the following line anywhere, then save and close the file.

alias howto="gh copilot suggest -t shell"

Then open a new terminal/shell window and howto should be available.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment