branch: elpa/magit
commit 87ddd8f7c45fed4bf57547f29524a160d78fa473
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
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.
---
lisp/magit-git.el | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/lisp/magit-git.el b/lisp/magit-git.el
index 9b2b02389aa..64e04c76171 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))