Warning
This is alpha quality.
This package provides some functionalty for Emacs for git-spice. It was originally a snippet in my dotfiles.
There's 2 core bits of functionality:
- A section in Magit. It shows your stacks. You can click on a stack to check it out.
- A transient menu for interacting wit git-spice.
Thank you to Abhinav Gupta for creating git-spice. and adding JSON output, making this package possible.
(use-package git-spice
:vc
(:url "https://github.com/jesse-c/git-spice.el")
:after magit
:config
(git-spice-setup-magit-section))# Install mise
# https://mise.jdx.dev/
# Install dependencies (Eldev will be installed by mise automatically)
mise install
# Run linting
mise run lint
# Byte-compile
mise run compileRun all tests (unit tests + integration tests):
mise run testRun only unit tests:
mise run test-unitRun only integration tests:
mise run test-integration