geeto
AI Git workflow automation — auto branch names, commit messages, releases, PRs, Trello integration
File Explorer
- bug-report.yml
- feature-request.yml
- auto-label-copilot-review.yml
- auto-label.yml
- commitlint.yml
- cross-platform-test.yml
- publish-binaries.yml
- quality-checks.yml
- security-scan.yml
- dependabot.yml
- FUNDING.yml
- PULL_REQUEST_TEMPLATE.md
- commit-msg
- pre-commit
- pre-push
- .graphify_analysis.json
- graph.json
- manifest.json
- demo.png
- branch-name-prompt.md
- commit-message-prompt.md
- issue-prompt-review.md
- issue-prompt.md
- issue-review.with-context.prompt.yml
- pr-prompt.md
- release-notes-prompt.md
- repo-description-prompt.md
- review-prompt.md
- build-deb.sh
- generate-prompts.ts
- install-local.sh
- typecheck-wrapper.js
- codex-sdk.ts
- codex.ts
- gemini-sdk.ts
- gemini.ts
- github.ts
- gitlab.ts
- groq-sdk.ts
- groq.ts
- opencode.ts
- openrouter-sdk.ts
- openrouter.ts
- platform.ts
- trello.ts
- input.ts
- menu.ts
- codex-sdk-setup.ts
- constants.ts
- gemini-setup.ts
- github-setup.ts
- gitlab-setup.ts
- groq-setup.ts
- openrouter-setup.ts
- setup.ts
- trello-setup.ts
- eslint-plugin-promise.d.ts
- index.ts
- modelcontextprotocol.d.ts
- ai-provider-helpers.ts
- ai-text.ts
- ai-workflow.ts
- branch-naming.ts
- colors.ts
- commit-helpers.ts
- config.ts
- display.ts
- dry-run.ts
- exec.ts
- git-ai-errors.ts
- git-ai.ts
- git-commands.ts
- git-errors.ts
- git.ts
- github-helpers.ts
- logging.ts
- platform.ts
- prompt-loader.ts
- prompts-embedded.ts
- scramble.ts
- spinner-wrapper.ts
- state.ts
- time.ts
- update-checker.ts
- abort.ts
- ai-provider.ts
- alias.ts
- amend.ts
- branch-helpers.ts
- branch-utils.ts
- branch.ts
- cherry-pick.ts
- cleanup.ts
- commit.ts
- compare.ts
- doctor.ts
- dry-run.ts
- fetch.ts
- history.ts
- issue.ts
- main-helpers.ts
- main-steps.ts
- main.ts
- pr.ts
- prune.ts
- pull.ts
- release-merge.ts
- release-notes.ts
- release-recover.ts
- release-sync.ts
- release-utils.ts
- release.ts
- repo-settings.ts
- revert.ts
- review-issue.ts
- review-pr.ts
- reword.ts
- settings.ts
- stash.ts
- stats.ts
- status.ts
- submodules.ts
- switch.ts
- trello-menu.ts
- undo.ts
- update.ts
- index.ts
- version.ts
- dry-run.test.ts
- install.sh
- uninstall.sh
- update.sh
- .commitlintrc.json
- .editorconfig
- .gitignore
- .graphifyignore
- .lintstagedrc
- .markdownlint.json
- .markdownlintignore
- .npmignore
- .prettierignore
- .prettierrc.cjs
- .release-it.json
- AGENTS.md
- bun.lock
- CHANGELOG.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- eslint.config.js
- LICENSE
- package.json
- README.md
- RELEASE.MD
- SECURITY.md
- tsconfig.eslint.json
- tsconfig.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
brew install
View Details ▼
brew install
Install a Homebrew formula or cask.
brew install {{formula|cask}}
Install a formula/cask:
brew install {{[-s|--build-from-source]}} {{formula}}
Build and install a formula from source (dependencies will still be installed from bottles):
brew install {{[-n|--dry-run]}} {{formula|cask}}
Download the manifest, print what would be installed but don't actually install anything:
brew tap
View Details ▼
brew tap
Tap a Homebrew formula repository. If no arguments are provided, list all installed Homebrew taps.
brew tap
List installed Homebrew taps:
brew tap {{github_username}}/{{github_repository_name}}
Tap a Git repository hosted on GitHub:
brew tap {{username}}/{{repository_name}} {{git_clone_url}}
Tap a Git repository hosted outside of GitHub:
brew uninstall
View Details ▼
brew uninstall
Uninstall a Homebrew formula/cask.
Use `brew autoremove` to remove unused dependencies afterwards.
brew {{[rm|uninstall]}} {{formula|cask}}
Uninstall a formula/cask:
brew {{[rm|uninstall]}} --zap {{cask}}
Uninstall a cask and remove all associated files:
brew
View Details ▼
brew
Homebrew - a package manager for macOS and Linux.
Some subcommands such as `install` have their own usage documentation.
brew install {{formula|cask}}
Install the latest stable version of a formula or cask:
brew list
List all installed formulae and casks:
brew upgrade {{formula|cask}}
Upgrade an installed formula or cask (if none is given, all installed formulae/casks are upgraded):
bun install
View Details ▼
bun install
Install JavaScript dependencies for a project from `package.json`.
bun {{[i|install]}}
Install all dependencies listed in `package.json`:
bun {{[i|install]}} {{package_name}}@{{version}}
Install a single package (this is an alias for `bun add`):
bun {{[i|install]}} {{[-g|--global]}} {{package_name}}
Install a package globally:
bun link
View Details ▼
bun link
Register a local package as linkable or link a registered package into a project.
See also: `bun unlink`.
bun link
Link the current package globally:
bun link {{package_name}}
Link a package locally to a project:
bun link --cwd {{path/to/package}}
Link a package in a specific directory:
bun run
View Details ▼
bun run
Execute a JavaScript/TypeScript file, or a script from `package.json`.
bun run {{script_name}}
Run a script defined in `package.json`:
bun run {{path/to/file.ts}}
Run a JavaScript or TypeScript file directly:
bun run --watch {{path/to/file.ts}}
Run a file in "watch" mode (restarts automatically when the file changes):
codex
View Details ▼
codex
Natural language code assistant for the terminal, powered by OpenAI.
Reads and edits files in your current directory to fulfill requests.
codex
Start an interactive Codex session in the current directory:
codex "{{prompt}}"
Run a single Codex command using a prompt:
codex --sandbox workspace-write "{{prompt}}"
Run a prompt allowing Codex to edit files in the workspace:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git pull
View Details ▼
git pull
Fetch branch from a remote repository and merge it to local repository.
git pull
Download changes from default remote repository and merge it:
git pull {{[-r|--rebase]}}
Download changes from default remote repository and use fast-forward:
git pull {{remote_name}}
Download changes from a specific remote repository:
git remote
View Details ▼
git remote
Manage set of tracked repositories ("remotes").
git remote {{[-v|--verbose]}}
List existing remotes with their names and URLs:
git remote show {{remote_name}}
Show information about a remote:
git remote add {{remote_name}} {{remote_url}}
Add a remote:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
dpkg
View Details ▼
dpkg
Debian package manager.
Some subcommands such as `deb` have their own usage documentation.
For equivalent commands in other package managers, see <https://wiki.archlinux.org/title/Pacman/Rosetta>.
sudo dpkg {{[-i|--install]}} {{path/to/file.deb}}
Install a package:
sudo dpkg {{[-r|--remove]}} {{package}}
Remove a package:
dpkg {{[-l|--list]}} {{pattern}}
List installed packages:
