magit/magit@97a95f7007 -> magit/magit@4881835572
The pinned version of `magit` in `:tools magit` needs be the same
as that of `git-commit` in `:emacs vc`.
`straight.el` prepares the repo only once, and if `git-commit` is
processed first, its pinned version wins out and the more recent
pinning of `magit` is ignored.
As noted in #7363, processing order may be non-deterministic, so the
inconsistent pinning may not be apparent on every system.
Fix: #7363
Amend: #7277
Amend: 7c63b353d2
14 lines
573 B
EmacsLisp
14 lines
573 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; emacs/vc/packages.el
|
|
|
|
(package! vc :built-in t)
|
|
(package! vc-annotate :built-in t)
|
|
(package! smerge-mode :built-in t)
|
|
|
|
(package! browse-at-remote :pin "c020975a891438e278ad1855213d4f3d62c9fccb")
|
|
(package! git-commit :pin "48818355728c48d986d74dde8b1e9fba25f0fd53")
|
|
(package! git-timemachine
|
|
;; The original lives on codeberg.org; which has uptime issues.
|
|
:recipe (:host github :repo "emacsmirror/git-timemachine")
|
|
:pin "d8ffd0d7cc4ab3dd7de494c9ea36dfd99e2744fa")
|
|
(package! git-modes :pin "f0a0154bf48dd1c0c587596cf4cfd3c90f673a05")
|