A highly customizable Git interface for Alfred, allowing you to create personalized commands and menus to streamline your workflow.
For detailed documentation on the commands, see docs.md.
repo list
- title: Repo 1
path: $repo_path1
- title: Repo 2
path: "/path/to/repo2"
config: /path/to/actions.yaml
NOTE
config
is an optional path to an actions.yaml that is only for that repo. The working directory for that path is the repo's directory.$REPO_PATH
Use the default settings
or make it your own
config
from Step 1Here’s a quick example of what a YAML config might look like:
- title: fetch
icon: down.small.png
command: |
git fetch -p
- title: create
icon: create.png
command: |
git checkout -b "[input_snake_case]"
For more information, see the full documentation: docs.md.