aboutsummaryrefslogtreecommitdiff
path: root/lisp/magit-git.el
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2025-07-12 10:12:06 +0200
committerJonas Bernoulli <jonas@bernoul.li>2025-07-12 10:12:06 +0200
commit87ddd8f7c45fed4bf57547f29524a160d78fa473 (patch)
treee7286ba75b9f5ea129873a97b7f64ba7e72a1de4 /lisp/magit-git.el
parent6177b4d210eaa57f4a91e41c6d66a18e0b659254 (diff)
magit-prefer-remote-upstream: Remove "refs/pullreqs"
We usually do not want to deal with the these refs directly. Instead Forge should be used to checkout named branches. When there are many pull-requests, these refs drown out other refs.
Diffstat (limited to 'lisp/magit-git.el')
-rw-r--r--lisp/magit-git.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/magit-git.el b/lisp/magit-git.el
index 9b2b023..64e04c7 100644
--- a/lisp/magit-git.el
+++ b/lisp/magit-git.el
@@ -191,14 +191,13 @@ that change the upstream and many that create new branches."
(defcustom magit-list-refs-namespaces
'("refs/heads"
"refs/remotes"
- "refs/tags"
- "refs/pullreqs")
+ "refs/tags")
"List of ref namespaces considered when reading a ref.
This controls the order of refs returned by `magit-list-refs',
which is called by functions like `magit-list-branch-names' to
generate the collection of refs."
- :package-version '(magit . "3.1.0")
+ :package-version '(magit . "4.3.9")
:group 'magit-commands
:type '(repeat string))